2023-01-19 14:25:52 +00:00
|
|
|
[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
|
2023-01-19 17:18:41 +00:00
|
|
|
hyper = { version = "1.0.0-rc.2", features = ["server", "http1"] } # http server
|
|
|
|
http-body-util = "0.1.0-rc.2"
|
2023-01-19 14:25:52 +00:00
|
|
|
serde = { version = "1.0.152", features = ["rc", "serde_derive"] }
|
2023-02-15 17:10:54 +00:00
|
|
|
serde_json = "1.0.93"
|
2023-01-19 14:25:52 +00:00
|
|
|
tokio = { version = "1.24.1", features = ["full"] } # async runtime
|
|
|
|
tracing = "0.1.37" # logging & tracing api
|
|
|
|
tracing-subscriber = "0.3.16"
|
2023-01-25 12:50:14 +00:00
|
|
|
tokio-tungstenite = "0.18.0"
|
|
|
|
futures-util = "0.3.25"
|
2023-02-11 08:49:02 +00:00
|
|
|
prometheus = { version = "0.13.3", default-features = false }
|
2023-02-03 22:43:59 +00:00
|
|
|
regex = "1.7.1"
|
2023-02-07 15:21:00 +00:00
|
|
|
nom = "7.1.3"
|
2023-02-17 21:27:58 +00:00
|
|
|
tokio-rustls = "0.23.4"
|
|
|
|
rustls-pemfile = "1.0.2"
|
|
|
|
quick-xml = { version = "0.27.1", features = ["async-tokio"] }
|
2023-01-31 17:32:35 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-02-07 15:21:00 +00:00
|
|
|
assert_matches = "1.5.0"
|
2023-01-31 17:32:35 +00:00
|
|
|
regex = "1.7.1"
|
2023-02-11 08:49:02 +00:00
|
|
|
reqwest = { version = "0.11", default-features = false }
|
2023-03-05 21:04:28 +00:00
|
|
|
|
|
|
|
[patch.crates-io]
|
|
|
|
quick-xml = { git = "https://github.com/vilunov/quick-xml.git", branch = "async-writer" }
|