[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"] } serde_json = "1.0.93" 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 } regex = "1.7.1" nom = "7.1.3" tokio-rustls = "0.23.4" rustls-pemfile = "1.0.2" quick-xml = { version = "0.27.1", features = ["async-tokio"] } [dev-dependencies] assert_matches = "1.5.0" regex = "1.7.1" reqwest = { version = "0.11", default-features = false }