transbeam/Cargo.toml

44 lines
1003 B
TOML
Raw Normal View History

2022-04-26 23:54:29 -04:00
[package]
name = "transbeam"
2024-03-27 16:56:02 -04:00
version = "0.4.1"
2022-04-26 23:54:29 -04:00
authors = ["xenofem <xenofem@xeno.science>"]
edition = "2021"
license = "MIT"
[dependencies]
actix = "0.13"
actix-files = "0.6.0"
actix-http = "3.0.4"
2022-11-10 12:41:09 -05:00
actix-session = { version = "0.7.1", features = ["cookie-session"] }
2022-04-26 23:54:29 -04:00
actix-web = "4.0.1"
actix-web-actors = "4.1.0"
2022-11-10 12:41:09 -05:00
argon2 = "0.4.1"
askama = "0.11.1"
askama_actix = "0.13"
2022-11-10 12:41:09 -05:00
base64 = "0.13"
2022-04-26 23:54:29 -04:00
bytes = "1.1.0"
bytesize = "1.1.0"
2022-04-26 23:54:29 -04:00
crc32fast = "1.3.2"
2024-03-27 15:33:34 -04:00
dotenvy = "0.15"
env_logger = "0.11.3"
futures-core = "0.3"
inotify = "0.10"
jsondb = "0.4.0"
2024-03-27 16:53:02 -04:00
libc = "0.2"
2022-04-26 23:54:29 -04:00
log = "0.4"
mime = "0.3.16"
2022-05-01 03:28:25 -04:00
mnemonic = "1.0.1"
2022-11-10 12:41:09 -05:00
password-hash = { version = "0.4.2", features = ["alloc"] }
pin-project-lite = "0.2.9"
2022-04-26 23:54:29 -04:00
rand = "0.8.5"
sanitise-file-name = "1.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "2", features = ["time_0_3"] }
2022-04-26 23:54:29 -04:00
thiserror = "1"
time = "0.3.9"
tokio = { version = "1.17.0", features = ["full"] }
unicode-normalization = "0.1.19"
2022-04-26 23:54:29 -04:00
[dev-dependencies]
zip = "0.6.2"