21 lines
728 B
TOML
21 lines
728 B
TOML
[package]
|
|
name = "centralex"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.24.2", features = ["macros", "rt-multi-thread", "net", "io-util", "sync", "time"] }
|
|
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
|
bytemuck = { version = "1.13.0", features = ["derive"] }
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.91"
|
|
hyper = { version = "0.14.24", optional = true, features = ["full"] } # TODO: reduce
|
|
chrono = { version = "0.4.23", optional = true } # TODO: reduce
|
|
|
|
[features]
|
|
default = ["debug_server", "chrono"]
|
|
chrono = ["dep:chrono"]
|
|
debug_server = ["dep:hyper"]
|