summary refs log tree commit diff
path: root/Cargo.toml
blob: 855f0bb954ca1d62f33372031631ea01b5c335d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "vavbot"
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.68"
async-tungstenite = { version = "*", features = ["tokio-runtime","tokio-native-tls"] }
futures-util = { version = "0.3.25", features = ["tokio-io"] }
reqwest = { version = "0.11.13", features = ["serde_json", "json"] }
serde = { version = "1.0.151", features = ["serde_derive"] }
serde_json = "1.0.91"
tokio = { version = "1.23.0", features = ["full"] }
tokio-macros = "1.8.2"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }