bfile/filed/Cargo.toml

39 lines
895 B
TOML
Raw Permalink Normal View History

2023-09-29 12:15:07 +02:00
[package]
name = "filed"
2023-10-29 10:45:42 +01:00
version = "0.2.0"
2023-09-29 12:15:07 +02:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
argon2 = "0.5.2"
2023-09-29 15:25:20 +02:00
askama = "0.12.0"
base64 = "0.21.4"
2023-09-30 11:26:47 +02:00
bytes = "1.5.0"
2023-10-01 06:17:58 +02:00
chrono = { version = "0.4.31", features = ["serde"] }
2023-09-29 12:15:07 +02:00
dotenvy = "0.15.7"
femme = "2.2.1"
2023-09-30 11:26:47 +02:00
futures-util = "0.3.28"
2023-10-01 06:17:58 +02:00
hex = "0.4.3"
2023-09-29 12:15:07 +02:00
log = "0.4.20"
2023-10-01 06:17:58 +02:00
num = { version = "0.4.1", features = ["serde"] }
rand = "0.8.5"
2023-10-13 01:44:55 +02:00
redis = { version = "0.23.3", features = ["tokio", "tokio-comp"] }
2023-10-01 06:17:58 +02:00
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
sha2 = "0.10.8"
2023-10-09 14:46:32 +02:00
static_dir = "0.2.0"
2023-09-29 12:15:07 +02:00
tokio = { version = "1.32.0", features = ["rt", "macros", "rt-multi-thread"] }
2023-10-20 17:12:16 +02:00
toml = "0.8.2"
2023-10-10 13:56:28 +02:00
urlencoding = "2.1.3"
2023-09-29 12:15:07 +02:00
warp = "0.3.6"
2023-10-26 10:30:35 +02:00
warp-real-ip = "0.2.0"
[profile.release]
opt-level = 'z'
lto = true
2023-10-13 16:10:47 +02:00
[build-dependencies]
css-minify = "0.3.1"
2023-10-14 05:19:09 +02:00
minify-js = "0.5.6"