20 lines
470 B
TOML
20 lines
470 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"sync-core",
|
|
"sync-windows",
|
|
"sync-linux",
|
|
"sync-android",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "time", "fs", "io-util"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2"
|
|
anyhow = "1"
|
|
tracing = "0.1"
|
|
parking_lot = "0.12"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|