mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-27 16:48:58 +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>
81 lines
2.0 KiB
TOML
81 lines
2.0 KiB
TOML
[package]
|
|
name = "ecstore"
|
|
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
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait.workspace = true
|
|
backon.workspace = true
|
|
blake2 = "0.10.6"
|
|
bytes.workspace = true
|
|
common.workspace = true
|
|
chrono.workspace = true
|
|
reader.workspace = true
|
|
glob = "0.3.2"
|
|
thiserror.workspace = true
|
|
flatbuffers.workspace = true
|
|
futures.workspace = true
|
|
tracing.workspace = true
|
|
serde.workspace = true
|
|
time.workspace = true
|
|
bytesize.workspace = true
|
|
serde_json.workspace = true
|
|
tracing-error.workspace = true
|
|
s3s.workspace = true
|
|
http.workspace = true
|
|
highway = "1.3.0"
|
|
url.workspace = true
|
|
uuid = { version = "1.15.1", features = ["v4", "fast-rng", "serde"] }
|
|
reed-solomon-erasure = { version = "6.0.0", features = ["simd-accel"] }
|
|
transform-stream = "0.3.1"
|
|
lazy_static.workspace = true
|
|
lock.workspace = true
|
|
regex = "1.11.1"
|
|
netif = "0.1.6"
|
|
nix = { version = "0.29.0", features = ["fs"] }
|
|
path-absolutize = "3.1.1"
|
|
protos.workspace = true
|
|
rmp.workspace = true
|
|
rmp-serde.workspace = true
|
|
tokio-util = { version = "0.7.13", features = ["io", "compat"] }
|
|
crc32fast = "1.4.2"
|
|
siphasher = "1.0.1"
|
|
base64-simd = "0.8.0"
|
|
sha2 = { version = "0.11.0-pre.4" }
|
|
hex-simd = "0.8.0"
|
|
path-clean = "1.0.1"
|
|
tempfile.workspace = true
|
|
tokio = { workspace = true, features = ["io-util", "sync", "signal"] }
|
|
tokio-stream = "0.1.17"
|
|
tonic.workspace = true
|
|
tower.workspace = true
|
|
byteorder = "1.5.0"
|
|
xxhash-rust = { version = "0.8.15", features = ["xxh64"] }
|
|
num = "0.4.3"
|
|
num_cpus = "1.16"
|
|
s3s-policy.workspace = true
|
|
rand.workspace = true
|
|
pin-project-lite.workspace = true
|
|
md-5.workspace = true
|
|
madmin.workspace = true
|
|
workers.workspace = true
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
|
|
nix = { version = "0.29.0", features = ["fs"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = "0.3.9"
|
|
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
|