forked from equalitie/ouisync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
56 lines (52 loc) · 1.63 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
[workspace]
members = [
"bridge",
"cli",
"ffi",
"lib",
"net",
"rand",
"scoped_task",
"tracing_fmt",
"utils/bindgen",
"utils/btdht",
"utils/stress-test",
"vfs"
]
resolver = "2"
[workspace.package]
version = "0.5.2"
authors = ["Adam Cigánek <[email protected]>", "Peter Jankuliak <[email protected]>"]
repository = "https://github.com/equalitie/ouisync"
license = "MPL-2.0"
edition = "2021"
rust-version = "1.65.0"
[workspace.dependencies]
async-trait = "0.1.73"
btdht = { git = "https://github.com/equalitie/btdht.git", rev = "4b8dc478e3e5f011a45b8f50c424519019f7b70d" }
bytes = "1.4.0"
camino = "1.0.9"
clap = { version = "4.1.8", features = ["derive"] }
futures-util = { version = "0.3.27", default-features = false }
num_enum = { version = "0.5.11", default-features = false }
once_cell = "1.12.0"
rand = { package = "ouisync-rand", path = "rand" }
rcgen = { version = "0.10.0", default-features = false }
rmp-serde = "1.1.0"
rustls = { version = "0.21.0", default-features = false }
tokio-rustls = "0.24.1"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_bytes = "0.11.8"
thiserror = "1.0.31"
tokio = { version = "1.28.2", default-features = false }
tokio-stream = { version = "0.1.9", default-features = false }
tokio-util = "0.7.4"
tracing = { version = "0.1.37" }
tracing-subscriber = { version = "0.3.17" }
turmoil = { git = "https://github.com/tokio-rs/turmoil" }
[profile.bench]
# Enable debug info so we can profile the benches
debug = 1
[patch.crates-io]
# Updates the flume dependency to fix a race condition.
sqlx = { git = "https://github.com/madadam/sqlx.git", branch = "bump-flume" }