HomeDisk/server/Cargo.toml

20 lines
581 B
TOML

[package]
name = "homedisk-server"
version = "0.0.0"
edition = "2021"
[dependencies]
axum = { version = "0.5.9", features = ["multipart"] }
axum-auth = "0.2.0"
base64 = "0.13.0"
byte-unit = "4.0.14"
futures = "0.3.21"
hyper = { version = "0.14.19", features = ["full"] }
log = "0.4.17"
crypto-utils = { version = "0.3.0", features = ["jwt"] }
serde = { version = "1.0.137", features = ["derive"] }
thiserror = "1.0.31"
tower-http = { version = "0.3.4", features = ["full"] }
homedisk-database = { path = "../database" }
homedisk-types = { path = "../types", features = ["axum"] }