euphoxide/Cargo.toml
Joscha 1495095fa8 Copy euph-api-related parts from cove
Also includes the required dependencies and some minor changes to the
module structure, as well as all the clippy and rustc warnings.
2022-08-18 00:46:16 +02:00

19 lines
493 B
TOML

[package]
name = "euphoxide"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.62" # TODO Remove
futures = "0.3.23"
log = "0.4.17" # TODO Remove
rand = "0.8.5"
serde = { version = "1.0.143", features = ["derive"] }
serde_json = "1.0.83"
thiserror = "1.0.32"
time = { version = "0.3.13", features = ["serde"] }
tokio = { version = "1.20.1", features = ["time", "sync", "macros", "rt"] }
[dependencies.tokio-tungstenite]
version = "0.17.2"
features = ["rustls-tls-native-roots"]