fileserver/backend/Cargo.toml

44 lines
1.2 KiB
TOML
Raw Normal View History

2022-10-10 21:07:40 +00:00
[package]
name = "backend_rust"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rusqlite = { version = "0.28.0", features = ["bundled"] }
diesel = { version = "2.0.1", features = ["sqlite", "r2d2", "returning_clauses_for_sqlite_3_35"] }
diesel_migrations = "2.0.0"
r2d2_sqlite = "0.21.0"
tiny_http = "0.12.0"
rayon-core = "1.9.3"
parking_lot = "0.12.1"
ctrlc = { version = "3.2.3", features = ["termination"] }
2022-10-10 21:07:40 +00:00
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1.0.86"
2022-10-10 21:07:40 +00:00
serde_repr = "0.1.9"
serde_urlencoded = "0.7.1"
2022-10-10 21:07:40 +00:00
once_cell = "1.15.0"
2022-10-10 21:07:40 +00:00
jsonwebtoken = "8.1.1"
thiserror = "1.0.37"
chrono = "0.4.22"
rust-argon2 = "1.0.0"
lettre = "0.10.1"
ureq = { version = "2.5.0", features = ["json"] }
totp-rs = { version = "3.0.1", features = ["qr"] }
ring = { version = "0.16.20", default-features = false }
mime_guess = "2.0.4"
zip = { version = "0.6.2", default-features = false }
2022-10-10 21:07:40 +00:00
base64 = "0.13.0"
image = "0.24.4"
stretto = "0.7.1"
rustracing = "0.6.0"
rustracing_jaeger = "0.8.1"
prometheus = { version = "0.13.2", features = ["process"] }
prometheus-static-metric = "0.5.1"