-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
58 lines (54 loc) · 1.83 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "ouisync-cli"
description = "Secure P2P file sharing (command-line interface)"
default-run = "ouisync"
publish = false
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[[bin]]
name = "ouisync"
path = "src/main.rs"
[dependencies]
async-trait = { workspace = true }
bytes = "1.4.0"
camino = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true }
dirs = "4.0.0"
futures-util = { workspace = true }
hyper = { version = "0.14.27", features = ["server", "http1", "http2"] }
hyper-rustls = { version = "0.24.1", default-features = false, features = ["acceptor"] }
interprocess = { version = "1.2.1", features = ["tokio_support"] }
maxminddb = "0.23.0"
metrics = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
ouisync-bridge = { path = "../bridge" }
ouisync-lib = { package = "ouisync", path = "../lib" }
ouisync-vfs = { path = "../vfs" }
rand = { workspace = true }
rustls = { workspace = true }
scoped_task = { path = "../scoped_task" }
serde = { workspace = true }
state_monitor = { path = "../state_monitor" }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["signal", "io-std"] }
tokio-stream = { workspace = true }
tokio-util = { workspace = true, features = ["codec", "compat"] }
tracing = { workspace = true }
walkdir = "2.3.3"
[dev-dependencies]
anyhow = "1.0.57"
assert_matches = { workspace = true }
backoff = "0.4.0"
hex = "0.4.3"
once_cell = { workspace = true }
rcgen = { workspace = true, features = ["pem"] }
tempfile = { workspace = true }
tokio = { workspace = true, features = ["test-util"] }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
[target.'cfg(any(target_os = "linux", target_os = "osx"))'.dev-dependencies]
libc = "0.2.126"