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:
parent
4e9e18444c
commit
35a30b0486
1 changed files with 1 additions and 1 deletions
|
|
@ -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"]
|
||||
|
|
|
|||
Loading…
Reference in a new issue