tokio-xmpp: fix running examples with native-tls

The dev-dependencies of tokio-xmpp accidentally pulled in the rustls
feature by default, causing attempts to run it with native-tls to
fail.
This commit is contained in:
Jonas Schäfer 2025-05-10 10:17:42 +02:00
commit 35a30b0486

View file

@ -40,7 +40,7 @@ ktls = { version = "6", optional = true }
env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] }
# this is needed for echo-component example
tokio = { version = "1", features = ["signal", "test-util"] }
tokio-xmpp = { path = ".", features = ["insecure-tcp"]}
tokio-xmpp = { path = ".", default-features = false, features = ["insecure-tcp"]}
[features]
default = ["starttls-rust", "rustls-native-certs", "tls-rust-aws_lc_rs"]