summary refs log tree commit diff
path: root/Cargo.toml
blob: 2cb25b313f3b07bf341f05634fec660680b77a78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[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.*"
async-trait = ">=0.1.60"
async-tungstenite = { version = "*", features = ["tokio-runtime","tokio-native-tls"] }
futures-util = { version = "0.3.*", features = ["tokio-io"] }
reqwest = { version = "0.11.*", features = ["serde_json", "json"] }
serde = { version = "1.0.*", features = ["serde_derive"] }
serde_json = "1.0.*"
sqlite = "0.30.*"
tokio = { version = "1.28.*", features = ["full"] }
tokio-macros = "1.8.*"
tracing = "0.1.*"
tracing-subscriber = { version = "0.3.*", features = ["env-filter"] }