- Implement missing /ui/buckets/{bucket}/objects/search route used by the
Objects tab filter; previously returned 404 and showed 'Search failed'.
- Filter __checksum_*__ and __size__ sentinels from the object metadata
panel so users no longer see internal keys in the UI.
- Include a body field in bucket-delete flash message so the toast shows
distinct title and body.
- Replace Tera boolean 'or' operator with if/else fallback in
replication_wizard.html, sites.html, iam.html.
63 lines
1.7 KiB
TOML
63 lines
1.7 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/myfsio-common",
|
|
"crates/myfsio-auth",
|
|
"crates/myfsio-crypto",
|
|
"crates/myfsio-storage",
|
|
"crates/myfsio-xml",
|
|
"crates/myfsio-server",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = { version = "0.8" }
|
|
tower = { version = "0.5" }
|
|
tower-http = { version = "0.6", features = ["cors", "trace", "fs", "compression-gzip", "timeout", "set-header"] }
|
|
hyper = { version = "1" }
|
|
bytes = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
quick-xml = { version = "0.37", features = ["serialize"] }
|
|
hmac = "0.12"
|
|
sha2 = "0.10"
|
|
md-5 = "0.10"
|
|
hex = "0.4"
|
|
aes = "0.8"
|
|
aes-gcm = "0.10"
|
|
cbc = { version = "0.1", features = ["alloc"] }
|
|
hkdf = "0.12"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
parking_lot = "0.12"
|
|
lru = "0.14"
|
|
percent-encoding = "2"
|
|
regex = "1"
|
|
unicode-normalization = "0.1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
thiserror = "2"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
base64 = "0.22"
|
|
tokio-util = { version = "0.7", features = ["io", "io-util"] }
|
|
tokio-stream = "0.1"
|
|
futures = "0.3"
|
|
dashmap = "6"
|
|
crc32fast = "1"
|
|
duckdb = { version = "1", features = ["bundled"] }
|
|
reqwest = { version = "0.12", default-features = false, features = ["stream", "rustls-tls", "json"] }
|
|
aws-sdk-s3 = { version = "1", features = ["behavior-version-latest", "rt-tokio"] }
|
|
aws-config = { version = "1", features = ["behavior-version-latest"] }
|
|
aws-credential-types = "1"
|
|
aws-smithy-runtime-api = "1"
|
|
aws-smithy-types = "1"
|
|
async-trait = "0.1"
|
|
tera = "1"
|
|
cookie = "0.18"
|
|
subtle = "2"
|
|
clap = { version = "4", features = ["derive"] }
|
|
dotenvy = "0.15"
|