mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-06 13:27:43 +00:00
bc513c2604
Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.30` | `4.5.31` | | [rand](https://github.com/rust-random/rand) | `0.8.5` | `0.9.0` | | [uuid](https://github.com/uuid-rs/uuid) | `1.14.0` | `1.15.1` | | [rust-embed](https://github.com/pyros2097/rust-embed) | `8.5.0` | `8.6.0` | | [strum](https://github.com/Peternator7/strum) | `0.26.3` | `0.27.1` | Updates `clap` from 4.5.30 to 4.5.31 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.30...v4.5.31) Updates `rand` from 0.8.5 to 0.9.0 - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.5...0.9.0) Updates `uuid` from 1.14.0 to 1.15.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/v1.14.0...v1.15.1) Updates `rust-embed` from 8.5.0 to 8.6.0 - [Changelog](https://github.com/pyrossh/rust-embed/blob/master/changelog.md) - [Commits](https://github.com/pyros2097/rust-embed/commits) Updates `strum` from 0.26.3 to 0.27.1 - [Release notes](https://github.com/Peternator7/strum/releases) - [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md) - [Commits](https://github.com/Peternator7/strum/compare/v0.26.3...v0.27.1) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rand dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: rust-embed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: strum dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
99 lines
2.6 KiB
TOML
99 lines
2.6 KiB
TOML
[package]
|
|
name = "rustfs"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[[bin]]
|
|
name = "rustfs"
|
|
path = "src/main.rs"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
madmin.workspace = true
|
|
log.workspace = true
|
|
async-trait.workspace = true
|
|
bytes.workspace = true
|
|
clap.workspace = true
|
|
common.workspace = true
|
|
ecstore.workspace = true
|
|
flatbuffers.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
h2 = "0.4.7"
|
|
hyper.workspace = true
|
|
hyper-util.workspace = true
|
|
http.workspace = true
|
|
http-body.workspace = true
|
|
lock.workspace = true
|
|
mime.workspace = true
|
|
netif.workspace = true
|
|
pin-project-lite.workspace = true
|
|
prost.workspace = true
|
|
prost-types.workspace = true
|
|
protos.workspace = true
|
|
protobuf.workspace = true
|
|
rmp-serde.workspace = true
|
|
s3s.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tracing.workspace = true
|
|
time = { workspace = true, features = ["parsing", "formatting", "serde"] }
|
|
tokio-util = { version = "0.7.13", features = ["io", "compat"] }
|
|
tokio = { workspace = true, features = [
|
|
"rt-multi-thread",
|
|
"macros",
|
|
"net",
|
|
"signal",
|
|
] }
|
|
lazy_static.workspace = true
|
|
tokio-stream.workspace = true
|
|
tonic = { version = "0.12.3", features = ["gzip"] }
|
|
tonic-reflection.workspace = true
|
|
tower.workspace = true
|
|
tracing-error.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
transform-stream.workspace = true
|
|
uuid = "1.15.1"
|
|
url.workspace = true
|
|
admin = { path = "../api/admin" }
|
|
axum.workspace = true
|
|
matchit = "0.8.6"
|
|
shadow-rs.workspace = true
|
|
const-str = { version = "0.6.1", features = ["std", "proc"] }
|
|
atoi = "2.0.0"
|
|
serde_urlencoded = "0.7.1"
|
|
crypto = { path = "../crypto" }
|
|
iam = { path = "../iam" }
|
|
jsonwebtoken = "9.3.0"
|
|
tower-http = { version = "0.6.2", features = ["cors"] }
|
|
mime_guess = "2.0.5"
|
|
rust-embed = { version = "8.6.0", features = ["interpolate-folder-path"] }
|
|
|
|
[build-dependencies]
|
|
prost-build.workspace = true
|
|
tonic-build.workspace = true
|
|
http.workspace = true
|
|
bytes.workspace = true
|
|
futures.workspace = true
|
|
futures-util.workspace = true
|
|
# uuid = { version = "1.8.0", features = ["v4", "fast-rng", "serde"] }
|
|
ecstore = { path = "../ecstore" }
|
|
s3s.workspace = true
|
|
clap = { version = "4.5.31", features = ["derive","env"] }
|
|
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "time"] }
|
|
hyper-util = { version = "0.1.10", features = [
|
|
"tokio",
|
|
"server-auto",
|
|
"server-graceful",
|
|
] }
|
|
transform-stream = "0.3.1"
|
|
netif = "0.1.6"
|
|
shadow-rs.workspace = true
|
|
# pin-utils = "0.1.0"
|