luz/Cargo.toml

27 lines
841 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"
2023-07-04 21:27:15 +01:00
# TODO: remove unneeded features
2024-11-29 02:11:02 +00:00
rsasl = { version = "2.0.1", default_features = false, features = ["provider_base64", "plain", "config_builder", "scram-sha-1"] }
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"
2024-11-23 22:39:44 +00:00
peanuts = { version = "0.1.0", path = "../peanuts" }
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"]}