ssowat-rs/Cargo.toml

31 lines
911 B
TOML
Raw Normal View History

2023-08-18 10:59:50 +02:00
[package]
name = "yunohome"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = "0.3"
tower = "0.4"
tokio = { version = "1", features = [ "full" ] }
hyper = { version = "0.14", features = [ "full" ] }
2023-08-22 17:00:55 +02:00
axum = { version = "0.6", features = [ "headers", "http2", "macros", "tracing", "json" ] }
2023-08-18 10:59:50 +02:00
clap = { version = "4.3", features = [ "derive" ] }
snafu = "0.7"
log = "0.4"
env_logger = "0.10"
#cookie = "0.17"
#fastrand = "2"
ring = "0.16"
hex = "0.4"
chrono = { version = "0.4", features = [ "serde" ] }
2023-08-22 17:00:55 +02:00
yunohost-api = { path = "yunohost-api", features = [ "axum" ] }
2023-08-18 10:59:50 +02:00
axum_typed_multipart = "0.8"
async-trait = "0.1"
2023-08-22 15:18:04 +02:00
serde = { version = "1", features = [ "derive" ] }
#file-owner = { version = "0.1" }
file-owner = { git = "https://github.com/selfhoster1312/file-owner" }
2023-08-26 14:39:11 +02:00
tower-cookies = "0.9"
url = "2.4"