Files
Oxicloud/Cargo.toml
T

66 lines
1.7 KiB
TOML
Raw Normal View History

2025-03-17 21:28:08 +01:00
[package]
name = "oxicloud"
version = "0.1.0"
edition = "2021"
2025-03-26 18:33:22 +01:00
2025-03-17 21:28:08 +01:00
[dependencies]
2025-03-28 12:38:48 +01:00
axum = { version = "0.8.1", features = ["multipart", "http1", "tokio", "macros"] }
2025-03-17 21:28:08 +01:00
tokio = { version = "1.44.1", features = ["full"] }
2025-03-19 00:44:27 +01:00
tokio-util = { version = "0.7.14", features = ["io", "codec"] }
2025-03-27 23:41:56 +01:00
tokio-stream = { version = "0.1.17", features = ["fs"] }
bytes = "1.10.1"
tempfile = "3.19.1"
2025-03-17 21:28:08 +01:00
tower = "0.5.2"
2025-03-20 09:22:31 +01:00
tower-http = { version = "0.6.2", features = ["fs", "compression-gzip", "trace", "cors", "add-extension", "request-id"] }
2025-03-27 23:41:56 +01:00
flate2 = "1.1.0"
2025-04-02 01:22:05 +02:00
zip = "2.5.0"
2025-03-17 21:28:08 +01:00
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
2025-03-27 23:41:56 +01:00
chrono = { version = "0.4.40", features = ["serde"] }
http-body = "0.4.6"
2025-03-17 21:28:08 +01:00
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
futures = "0.3.31"
2025-03-27 23:41:56 +01:00
async-stream = "0.3.6"
2025-03-17 21:28:08 +01:00
mime_guess = "2.0.5"
uuid = { version = "1.16.0", features = ["v4", "serde"] }
async-trait = "0.1.88"
thiserror = "2.0.12"
2025-03-27 23:41:56 +01:00
reqwest = { version = "0.12.15", features = ["json", "multipart"] }
2025-03-19 00:44:27 +01:00
mockall = { version = "0.12.1", optional = true }
rand = "0.8.5"
2025-03-27 23:41:56 +01:00
pin-project-lite = "0.2.16"
sqlx = { version = "0.7.4", features = ["postgres", "runtime-tokio", "tls-rustls", "chrono", "uuid", "json"] }
anyhow = "1.0.97"
jsonwebtoken = "9.3.1"
2025-03-20 09:22:31 +01:00
argon2 = "0.5.3"
rand_core = { version = "0.6.4", features = ["std"] }
2025-03-27 23:41:56 +01:00
time = "0.3.41"
2025-03-23 22:44:18 +01:00
axum-server = "0.6.0"
2025-03-27 23:41:56 +01:00
hyper = { version = "1.6.0", features = ["full"] }
2025-04-04 21:31:41 +02:00
url = "2.5.0"
quick-xml = "0.30.0"
http-body-util = "0.1.3"
2025-03-19 00:44:27 +01:00
[features]
default = []
test_utils = ["mockall"]
2025-03-26 11:04:07 +01:00
[profile.release]
2025-03-26 18:33:22 +01:00
lto = "fat"
2025-03-26 11:04:07 +01:00
codegen-units = 1
opt-level = 3
panic = "abort"
strip = true
2025-03-26 18:33:22 +01:00
[profile.dev]
opt-level = 1
debug = true
[profile.bench]
lto = "fat"
codegen-units = 1
opt-level = 3