-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
24 lines (22 loc) · 941 Bytes
/
Cargo.toml
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 = "simplefileshare"
version = "0.1.0"
edition = "2021"
authors = ["Hugefiver", "Anthony Hoo"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.20", features = ["macros", "multipart", "ws", "headers", "http2"] }
chrono = "0.4.31"
clap = { version = "4.4.10", features = ["derive"] }
futures-util = "0.3.29"
lazy_static = "1.4.0"
num = "0.4.1"
rand = "0.8.5"
regex = "1.10.2"
serde = { version = "1.0.193", features = ["derive", "serde_derive"] }
serde_json = "1.0.108"
sqlx = { version = "0.6.2", features = ["sqlite", "uuid", "macros", "chrono", "offline", "runtime-tokio-rustls", "any"] }
tokio = { version = "1.34.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["io"] }
tower = { version = "0.4.13", features = ["tokio", "tokio-stream"] }
xxhash-rust = { version = "0.8.7", features = ["const_xxh3", "xxh3"] }