taskchampion-sync-server/Cargo.toml
Dustin J. Mitchell 47ce4c1e3b
Split the server into three crates (#56)
This will make it easier to build variations on the server, or embed it
into larger projects.
2024-11-17 15:12:42 -05:00

24 lines
567 B
TOML

[workspace]
resolver = "2"
members = [
"core",
"server",
"sqlite",
]
[workspace.dependencies]
uuid = { version = "^1.11.0", features = ["serde", "v4"] }
actix-web = "^4.9.0"
anyhow = "1.0"
thiserror = "2.0"
futures = "^0.3.25"
serde_json = "^1.0"
serde = { version = "^1.0.147", features = ["derive"] }
clap = { version = "^4.5.6", features = ["string"] }
log = "^0.4.17"
env_logger = "^0.11.5"
rusqlite = { version = "0.32", features = ["bundled"] }
chrono = { version = "^0.4.38", features = ["serde"] }
actix-rt = "2"
tempfile = "3"
pretty_assertions = "1"