mirror of
https://github.com/getnora-io/nora.git
synced 2026-04-12 09:10:32 +00:00
Bumps [quick-xml](https://github.com/tafia/quick-xml) from 0.31.0 to 0.39.2. - [Release notes](https://github.com/tafia/quick-xml/releases) - [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md) - [Commits](https://github.com/tafia/quick-xml/compare/v0.31.0...v0.39.2) --- updated-dependencies: - dependency-name: quick-xml dependency-version: 0.39.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
29 lines
677 B
TOML
29 lines
677 B
TOML
[package]
|
|
name = "nora-storage"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
repository.workspace = true
|
|
homepage.workspace = true
|
|
description = "S3-compatible storage server for NORA"
|
|
|
|
[[bin]]
|
|
name = "nora-storage"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio.workspace = true
|
|
axum.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
toml = "1.0"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
sha2 = "0.10"
|
|
base64 = "0.22"
|
|
httpdate = "1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
quick-xml = { version = "0.39", features = ["serialize"] }
|