32 lines
705 B
TOML
32 lines
705 B
TOML
[package]
|
|
name = "transbeam"
|
|
version = "0.1.0"
|
|
authors = ["xenofem <xenofem@xeno.science>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix = "0.13"
|
|
actix-files = "0.6.0"
|
|
actix-http = "3.0.4"
|
|
actix-web = "4.0.1"
|
|
actix-web-actors = "4.1.0"
|
|
bytes = "1.1.0"
|
|
crc32fast = "1.3.2"
|
|
env_logger = "0.9"
|
|
futures-core = "0.3"
|
|
log = "0.4"
|
|
mime = "0.3.16"
|
|
pin-project-lite = "0.2.9"
|
|
rand = "0.8.5"
|
|
sanitise-file-name = "1.0.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1"
|
|
time = "0.3.9"
|
|
tokio = { version = "1.17.0", features = ["full"] }
|
|
|
|
[dev-dependencies]
|
|
zip = "0.6.2" |