diff options
author | 2024-12-04 18:18:37 +0000 | |
---|---|---|
committer | 2024-12-04 18:18:37 +0000 | |
commit | 1b91ff690488b65b552c90bd5392b9a300c8c981 (patch) | |
tree | 9c290f69b26eba0393d7bbc05ba29c28ea74a26e /jabber/Cargo.toml | |
parent | 03764f8cedb3f0a55a61be0f0a59faaa6357a83a (diff) | |
download | luz-1b91ff690488b65b552c90bd5392b9a300c8c981.tar.gz luz-1b91ff690488b65b552c90bd5392b9a300c8c981.tar.bz2 luz-1b91ff690488b65b552c90bd5392b9a300c8c981.zip |
use cargo workspace
Diffstat (limited to 'jabber/Cargo.toml')
-rw-r--r-- | jabber/Cargo.toml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/jabber/Cargo.toml b/jabber/Cargo.toml new file mode 100644 index 0000000..4753e59 --- /dev/null +++ b/jabber/Cargo.toml @@ -0,0 +1,29 @@ +[package] +name = "jabber" +authors = ["cel <cel@bunny.garden>"] +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +async-recursion = "1.0.4" +async-trait = "0.1.68" +lazy_static = "1.4.0" +nanoid = "0.4.0" +# TODO: remove unneeded features +rsasl = { version = "2.0.1", path = "../../rsasl", default_features = false, features = ["provider_base64", "plain", "config_builder", "scram-sha-1"] } +tokio = { version = "1.28", features = ["full"] } +tokio-native-tls = "0.3.1" +tracing = "0.1.40" +trust-dns-resolver = "0.22.0" +try_map = "0.3.1" +stanza = { version = "0.1.0", path = "../stanza" } +peanuts = { version = "0.1.0", path = "../../peanuts" } +jid = { version = "0.1.0", path = "../jid" } +futures = "0.3.31" + +[dev-dependencies] +test-log = { version = "0.2", features = ["trace"] } +env_logger = "*" +tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]} |