luz/Cargo.toml

29 lines
911 B
TOML
Raw Normal View History

2023-06-13 00:46:59 +01:00
[package]
2023-11-23 16:44:06 +00:00
name = "luz"
2023-06-13 00:46:59 +01:00
authors = ["cel <cel@blos.sm>"]
version = "0.0.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-07-11 21:28:42 +01:00
async-recursion = "1.0.4"
2023-06-19 19:23:54 +01:00
async-trait = "0.1.68"
2023-10-21 01:28:54 +01:00
lazy_static = "1.4.0"
2023-08-02 00:56:38 +01:00
nanoid = "0.4.0"
quick-xml = { git = "https://github.com/tafia/quick-xml.git", features = ["async-tokio", "serialize"] }
2023-07-04 21:27:15 +01:00
# TODO: remove unneeded features
2023-07-12 21:11:20 +01:00
rsasl = { version = "2", default_features = true, features = ["provider_base64", "plain", "config_builder"] }
serde = "1.0.180"
2023-10-28 21:06:42 +01:00
serde_with = "3.4.0"
2023-06-16 14:49:20 +01:00
tokio = { version = "1.28", features = ["full"] }
2023-06-19 19:23:54 +01:00
tokio-native-tls = "0.3.1"
tracing = "0.1.40"
2023-06-16 14:49:20 +01:00
trust-dns-resolver = "0.22.0"
try_map = "0.3.1"
2023-10-21 02:38:19 +01:00
[dev-dependencies]
test-log = { version = "0.2", features = ["trace"] }
env_logger = "*"
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}