euphoxide/Cargo.toml
Joscha c1a970ae3c Re-add tokio-tungstenite tls feature
I'm not sure how to best leave this up to the user. Probably by cloning
those features? I'll have to have a look at what tokio-tungstenite does.
2023-01-21 01:25:03 +01:00

23 lines
666 B
TOML

[package]
name = "euphoxide"
version = "0.2.0"
edition = "2021"
[features]
bot = []
[dependencies]
futures-util = { version = "0.3.25", default-features = false, features = ["sink"] }
serde = { version = "1.0.149", features = ["derive"] }
serde_json = "1.0.89"
time = { version = "0.3.17", features = ["serde"] }
tokio = { version = "1.23.0", features = ["time", "sync", "macros", "rt"] }
tokio-stream = "0.1.11"
tokio-tungstenite = { version = "0.18.0", features = ["rustls-tls-native-roots"] }
[dev-dependencies] # For example bot
tokio = { version = "1.23.0", features = ["rt-multi-thread"] }
[[example]]
name = "testbot_instance"
required-features = ["bot"]