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"
|
|
|
|
|
2022-10-13 18:30:31 +00:00
|
|
|
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"] }
|
2022-10-13 18:30:31 +00:00
|
|
|
serde_json = "1.0.86"
|
2022-10-10 21:07:40 +00:00
|
|
|
serde_repr = "0.1.9"
|
2022-10-13 18:30:31 +00:00
|
|
|
serde_urlencoded = "0.7.1"
|
2022-10-10 21:07:40 +00:00
|
|
|
|
2022-10-13 18:30:31 +00:00
|
|
|
once_cell = "1.15.0"
|
2022-10-10 21:07:40 +00:00
|
|
|
|
2022-10-19 17:53:19 +00:00
|
|
|
breakpad-handler = "0.1.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"
|
2022-10-13 18:30:31 +00:00
|
|
|
zip = { version = "0.6.2", default-features = false }
|
2022-10-10 21:07:40 +00:00
|
|
|
base64 = "0.13.0"
|
|
|
|
image = "0.24.4"
|
2022-10-13 23:59:29 +00:00
|
|
|
fast_image_resize = "1.0.0"
|
2022-10-10 21:07:40 +00:00
|
|
|
stretto = "0.7.1"
|
2022-10-13 18:30:31 +00:00
|
|
|
|
|
|
|
rustracing = "0.6.0"
|
|
|
|
rustracing_jaeger = "0.8.1"
|
|
|
|
prometheus = { version = "0.13.2", features = ["process"] }
|
|
|
|
prometheus-static-metric = "0.5.1"
|