41 lines
885 B
TOML
41 lines
885 B
TOML
[package]
|
|
name = "oxicloud"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dotenvy = "0.15.7"
|
|
log = "0.4.20"
|
|
env_logger = "0.10.1"
|
|
thiserror = "1.0.51"
|
|
|
|
tokio = { version = "1.35.1", features = ["full"] }
|
|
axum = { version = "0.7.2", features = [ "macros" ] }
|
|
axum-oidc = "0.2.1"
|
|
|
|
serde = { version = "1.0.193", features = [ "derive" ] }
|
|
serde-xml-rs = "0.6.0"
|
|
serde_json = "1.0.108"
|
|
|
|
webdav-handler = { git="https://github.com/pfzetto/webdav-handler-rs" }
|
|
|
|
tower = "0.4.13"
|
|
tower-http = { version = "0.5.0", features = [ "trace" ] }
|
|
tower-sessions = "0.7.0"
|
|
|
|
sqlx = { version="0.7.3", features=["runtime-tokio", "mysql", "time"] }
|
|
|
|
sha3 = "0.10.8"
|
|
md5 = "0.7.0"
|
|
rand = "0.8.5"
|
|
base64 = "0.21.5"
|
|
|
|
bytes = "1.5.0"
|
|
futures = "0.3.29"
|
|
|
|
xmltree = "0.10.3"
|
|
xml = "0.8.10"
|
|
|
|
time = "0.3.31"
|