diff options
Diffstat (limited to 'jabber/Cargo.toml')
-rw-r--r-- | jabber/Cargo.toml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/jabber/Cargo.toml b/jabber/Cargo.toml index 68dddd9..d070838 100644 --- a/jabber/Cargo.toml +++ b/jabber/Cargo.toml @@ -12,7 +12,12 @@ 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"] } +rsasl = { version = "2.0.1", 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" @@ -29,4 +34,7 @@ pin-project = "1.1.7" [dev-dependencies] test-log = { version = "0.2", features = ["trace"] } env_logger = "*" -tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]} +tracing-subscriber = { version = "0.3", default-features = false, features = [ + "env-filter", + "fmt", +] } |