LazyBoy2/Cargo.toml

21 lines
713 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"
chrono = { version = "0.4", default-features = false, features = ["clock", "std", "serde"] }
futures-util = "0.3"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "stream"] }
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"] }
uuid = { version = "1", features = ["v4", "serde"] }