24 lines
810 B
TOML
24 lines
810 B
TOML
[workspace]
|
|
members = ["cruciverb-core", "cruciverb-cli", "cruciverb-server"]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
license = "CC0-1.0"
|
|
|
|
[workspace.dependencies]
|
|
cruciverb-core = { path = "cruciverb-core" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "2.0"
|
|
rand = "0.9"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
axum = { version = "0.8", features = ["macros", "ws", "multipart"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tower-http = { version = "0.6", features = ["cors", "fs", "timeout"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
rusqlite = { version = "0.33", features = ["bundled"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
reqwest = { version = "0.12", features = ["blocking"] }
|