LazyBoy2/Cargo.toml

24 lines
989 B
TOML
Raw Normal View History

[workspace]
resolver = "2"
members = ["crates/grokboy-core", "crates/grokboy"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
authors = ["Daniel Wang"]
[workspace.dependencies]
anyhow = "1"
2026-09-14 09:08:35 +00:00
axum = { version = "0.7", default-features = false, features = ["http1", "json", "tokio", "query", "ws"] }
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "serde"] }
futures-util = "0.3"
2026-09-15 03:20:42 +00:00
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream", "gzip", "brotli"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
2026-09-13 16:38:32 +00:00
tokio = { version = "1", features = ["rt-multi-thread", "macros", "io-std", "io-util", "sync", "process", "time", "fs", "signal", "net"] }
2026-09-14 09:08:35 +00:00
tokio-tungstenite = { version = "0.24", default-features = false, features = ["connect"] }
tower-http = { version = "0.5", features = ["cors", "fs"] }
uuid = { version = "1", features = ["v4", "serde"] }