summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: b72713c959e4993f2da81543321156ab418eda09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "xssbook"
version = "0.0.1"
edition = "2021"

[dependencies]
tokio = { version = "1.25.0", features = ["full"] }
axum = { version = "0.6.12", features = ["headers", "query", "ws"] }
tower-http = { version = "0.3.5", features = ["fs"] }
tower-cookies = "0.8.0"
tower = "0.4.13"
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
bytes = "1.4"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["std"] }
rusqlite = { version = "0.28.0", features = ["bundled"] }
rand = "0.8.5"
time = "0.3.17"
lazy_static = "1.4"
image = "0.24.5"