-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (38 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
41 lines (38 loc) · 1.01 KB
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
[workspace]
resolver = "2"
members = [
"crates/ssync",
"crates/ssync-core",
"crates/ssync-crypto",
"crates/ssync-net",
"crates/ssync-adapters",
]
[workspace.package]
version = "0.20.1"
edition = "2024"
license = "MIT"
repository = "https://github.com/fosskar/ssync"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.dependencies]
anyhow = "1"
age = "0.11"
secrecy = "0.10"
iroh = "1.0.1"
iroh-blobs = { version = "0.103", features = ["fs-store"] }
iroh-docs = { version = "0.101", features = ["fs-store"] }
iroh-gossip = { version = "0.101", features = ["net"] }
iroh-mdns-address-lookup = "0.4"
tokio = { version = "1", features = ["full"] }
bytes = "1"
futures-lite = "2"
notify = "8"
parking_lot = "0.12"
serde = { version = "1", features = ["derive"] }
toml = "0.9"
clap = { version = "4", features = ["derive"] }
dirs = "6"
ssync-core = { path = "crates/ssync-core" }
ssync-crypto = { path = "crates/ssync-crypto" }
ssync-net = { path = "crates/ssync-net" }
ssync-adapters = { path = "crates/ssync-adapters" }