You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
707 B
22 lines
707 B
[package]
|
|
name = "e4mc-client"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.70"
|
|
async-trait = "0.1.68"
|
|
async-tungstenite = { version = "0.20.0", features = ["tokio-runtime", "tokio-rustls-native-certs"] }
|
|
clap = { version = "4.2.1", features = ["derive"] }
|
|
env_logger = "0.10.0"
|
|
futures = "0.3.28"
|
|
futures-util = { version = "0.3.28", features = ["io"] }
|
|
lazy_static = "1.4.0"
|
|
log = "0.4.17"
|
|
serde = { version = "1.0.159", features = ["derive"] }
|
|
serde_json = "1.0.95"
|
|
thiserror = "1.0.40"
|
|
tokio = { version = "1.27.0", features = ["rt-multi-thread", "sync", "macros", "net", "io-util"] }
|