summary refs log tree commit diff
path: root/Cargo.toml
blob: d683e3cd3f9c4fd12dd40d0d596efbf4a8a16a67 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[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.*"
serde_with = { version = "3.5.1", features = ["json"] }
sqlite = "0.30.*"
tokio = { version = "1.28.*", features = ["full"] }
tokio-macros = "1.8.*"
tracing = "0.1.*"
tracing-subscriber = { version = "0.3.*", features = ["env-filter"] }