forked from lavina/lavina
27 lines
761 B
TOML
27 lines
761 B
TOML
[workspace]
|
|
members = [
|
|
"crates/*"
|
|
]
|
|
|
|
[package]
|
|
name = "lavina"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.68" # error utils
|
|
figment = { version = "0.10.8", features = ["env", "toml"] } # configuration files
|
|
hyper = { version = "1.0.0-rc.2", features = ["server", "http1"] } # http server
|
|
http-body-util = "0.1.0-rc.2"
|
|
serde = { version = "1.0.152", features = ["rc", "serde_derive"] }
|
|
tokio = { version = "1.24.1", features = ["full"] } # async runtime
|
|
tracing = "0.1.37" # logging & tracing api
|
|
tracing-subscriber = "0.3.16"
|
|
tokio-tungstenite = "0.18.0"
|
|
futures-util = "0.3.25"
|
|
prometheus = { version = "0.13.3", default_features = false }
|
|
|
|
[dev-dependencies]
|
|
regex = "1.7.1"
|
|
reqwest = { version = "0.11", default_features = false }
|