mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-25 05:26:50 +00:00
improve Cargo.toml and modify README.md conosel web static url
This commit is contained in:
Generated
+34
-3
@@ -3035,7 +3035,7 @@ dependencies = [
|
|||||||
"madmin",
|
"madmin",
|
||||||
"md-5",
|
"md-5",
|
||||||
"netif",
|
"netif",
|
||||||
"nix",
|
"nix 0.29.0",
|
||||||
"num",
|
"num",
|
||||||
"num_cpus",
|
"num_cpus",
|
||||||
"path-absolutize",
|
"path-absolutize",
|
||||||
@@ -4698,6 +4698,24 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "libsystemd"
|
||||||
|
version = "0.7.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c592dc396b464005f78a5853555b9f240bc5378bf5221acc4e129910b2678869"
|
||||||
|
dependencies = [
|
||||||
|
"hmac 0.12.1",
|
||||||
|
"libc",
|
||||||
|
"log",
|
||||||
|
"nix 0.27.1",
|
||||||
|
"nom",
|
||||||
|
"once_cell",
|
||||||
|
"serde",
|
||||||
|
"sha2 0.10.8",
|
||||||
|
"thiserror 1.0.69",
|
||||||
|
"uuid",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libxdo"
|
name = "libxdo"
|
||||||
version = "0.6.0"
|
version = "0.6.0"
|
||||||
@@ -5113,6 +5131,18 @@ version = "1.0.6"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "nix"
|
||||||
|
version = "0.27.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "2eb04e9c688eff1c89d72b407f168cf79bb9e867a9d3323ed6c01519eb9cc053"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags 2.9.0",
|
||||||
|
"cfg-if",
|
||||||
|
"libc",
|
||||||
|
"memoffset",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "nix"
|
name = "nix"
|
||||||
version = "0.29.0"
|
version = "0.29.0"
|
||||||
@@ -7125,6 +7155,7 @@ dependencies = [
|
|||||||
"iam",
|
"iam",
|
||||||
"jsonwebtoken",
|
"jsonwebtoken",
|
||||||
"lazy_static",
|
"lazy_static",
|
||||||
|
"libsystemd",
|
||||||
"local-ip-address",
|
"local-ip-address",
|
||||||
"lock",
|
"lock",
|
||||||
"madmin",
|
"madmin",
|
||||||
@@ -9894,7 +9925,7 @@ dependencies = [
|
|||||||
"futures-sink",
|
"futures-sink",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"hex",
|
"hex",
|
||||||
"nix",
|
"nix 0.29.0",
|
||||||
"ordered-stream",
|
"ordered-stream",
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
"serde",
|
"serde",
|
||||||
@@ -9925,7 +9956,7 @@ dependencies = [
|
|||||||
"futures-core",
|
"futures-core",
|
||||||
"futures-lite",
|
"futures-lite",
|
||||||
"hex",
|
"hex",
|
||||||
"nix",
|
"nix 0.29.0",
|
||||||
"ordered-stream",
|
"ordered-stream",
|
||||||
"serde",
|
"serde",
|
||||||
"serde_repr",
|
"serde_repr",
|
||||||
|
|||||||
+10
-6
@@ -33,8 +33,12 @@ all = "warn"
|
|||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
madmin = { path = "./madmin" }
|
madmin = { path = "./madmin" }
|
||||||
|
atoi = "2.0.0"
|
||||||
async-recursion = "1.0.5"
|
async-recursion = "1.0.5"
|
||||||
async-trait = "0.1.87"
|
async-trait = "0.1.87"
|
||||||
|
axum = "0.8.3"
|
||||||
|
axum-extra = "0.10.1"
|
||||||
|
axum-server = { version = "0.7.2", features = ["tls-rustls"] }
|
||||||
backon = "1.3.0"
|
backon = "1.3.0"
|
||||||
bytes = "1.9.0"
|
bytes = "1.9.0"
|
||||||
bytesize = "1.3.0"
|
bytesize = "1.3.0"
|
||||||
@@ -64,7 +68,10 @@ humantime = "2.1.0"
|
|||||||
keyring = { version = "3.6.1", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
keyring = { version = "3.6.1", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
||||||
lock = { path = "./common/lock" }
|
lock = { path = "./common/lock" }
|
||||||
lazy_static = "1.5.0"
|
lazy_static = "1.5.0"
|
||||||
|
libsystemd = "0.7.0"
|
||||||
local-ip-address = "0.6.3"
|
local-ip-address = "0.6.3"
|
||||||
|
matchit = "0.8.4"
|
||||||
|
md-5 = "0.10.6"
|
||||||
mime = "0.3.17"
|
mime = "0.3.17"
|
||||||
netif = "0.1.6"
|
netif = "0.1.6"
|
||||||
once_cell = "1.21.1"
|
once_cell = "1.21.1"
|
||||||
@@ -101,8 +108,11 @@ s3s-policy = { git = "https://github.com/Nugine/s3s.git", rev = "ab139f72fe768fb
|
|||||||
shadow-rs = { version = "0.38.0", default-features = false }
|
shadow-rs = { version = "0.38.0", default-features = false }
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.217", features = ["derive"] }
|
||||||
serde_json = "1.0.138"
|
serde_json = "1.0.138"
|
||||||
|
serde_urlencoded = "0.7.1"
|
||||||
sha2 = "0.10.8"
|
sha2 = "0.10.8"
|
||||||
|
snafu = "0.8.5"
|
||||||
tempfile = "3.16.0"
|
tempfile = "3.16.0"
|
||||||
|
test-case = "3.3.1"
|
||||||
thiserror = "2.0.12"
|
thiserror = "2.0.12"
|
||||||
time = { version = "0.3.41", features = [
|
time = { version = "0.3.41", features = [
|
||||||
"std",
|
"std",
|
||||||
@@ -133,13 +143,7 @@ uuid = { version = "1.15.1", features = [
|
|||||||
"fast-rng",
|
"fast-rng",
|
||||||
"macro-diagnostics",
|
"macro-diagnostics",
|
||||||
] }
|
] }
|
||||||
axum = "0.8.3"
|
|
||||||
axum-extra = "0.10.1"
|
|
||||||
axum-server = { version = "0.7.2", features = ["tls-rustls"] }
|
|
||||||
md-5 = "0.10.6"
|
|
||||||
workers = { path = "./common/workers" }
|
workers = { path = "./common/workers" }
|
||||||
test-case = "3.3.1"
|
|
||||||
snafu = "0.8.5"
|
|
||||||
|
|
||||||
[profile.wasm-dev]
|
[profile.wasm-dev]
|
||||||
inherits = "dev"
|
inherits = "dev"
|
||||||
|
|||||||
@@ -24,7 +24,8 @@ Or use Docker:
|
|||||||
|
|
||||||
# How to add Console web
|
# How to add Console web
|
||||||
|
|
||||||
1. wget [http://dl.rustfs.com/console/console.latest.tar.gz](https://dl.rustfs.com/console/rustfs-console-latest.zip)
|
1.
|
||||||
|
wget [http://dl.rustfs.com/console/console.latest.tar.gz](https://dl.rustfs.com/artifacts/console/rustfs-console-latest.zip)
|
||||||
|
|
||||||
2. mkdir in this repos folder `./rustfs/static`
|
2. mkdir in this repos folder `./rustfs/static`
|
||||||
|
|
||||||
|
|||||||
+26
-34
@@ -16,12 +16,21 @@ workspace = true
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
madmin.workspace = true
|
madmin.workspace = true
|
||||||
|
api = { path = "../s3select/api" }
|
||||||
|
appauth = { version = "0.0.1", path = "../appauth" }
|
||||||
|
atoi = { workspace = true }
|
||||||
|
axum.workspace = true
|
||||||
|
axum-extra = { workspace = true }
|
||||||
|
axum-server = { workspace = true }
|
||||||
async-trait.workspace = true
|
async-trait.workspace = true
|
||||||
bytes.workspace = true
|
bytes.workspace = true
|
||||||
|
chrono = { workspace = true }
|
||||||
clap.workspace = true
|
clap.workspace = true
|
||||||
csv = "1.3.1"
|
csv = "1.3.1"
|
||||||
|
crypto = { path = "../crypto" }
|
||||||
datafusion = { workspace = true }
|
datafusion = { workspace = true }
|
||||||
common.workspace = true
|
common.workspace = true
|
||||||
|
const-str = { version = "0.6.1", features = ["std", "proc"] }
|
||||||
ecstore.workspace = true
|
ecstore.workspace = true
|
||||||
policy.workspace = true
|
policy.workspace = true
|
||||||
flatbuffers.workspace = true
|
flatbuffers.workspace = true
|
||||||
@@ -32,8 +41,14 @@ hyper.workspace = true
|
|||||||
hyper-util.workspace = true
|
hyper-util.workspace = true
|
||||||
http.workspace = true
|
http.workspace = true
|
||||||
http-body.workspace = true
|
http-body.workspace = true
|
||||||
|
iam = { path = "../iam" }
|
||||||
|
jsonwebtoken = "9.3.0"
|
||||||
|
libsystemd = { workspace = true }
|
||||||
lock.workspace = true
|
lock.workspace = true
|
||||||
|
local-ip-address = { workspace = true }
|
||||||
|
matchit = { workspace = true }
|
||||||
mime.workspace = true
|
mime.workspace = true
|
||||||
|
mime_guess = "2.0.5"
|
||||||
netif.workspace = true
|
netif.workspace = true
|
||||||
once_cell.workspace = true
|
once_cell.workspace = true
|
||||||
pin-project-lite.workspace = true
|
pin-project-lite.workspace = true
|
||||||
@@ -41,22 +56,22 @@ prost.workspace = true
|
|||||||
prost-types.workspace = true
|
prost-types.workspace = true
|
||||||
protos.workspace = true
|
protos.workspace = true
|
||||||
protobuf.workspace = true
|
protobuf.workspace = true
|
||||||
|
query = { path = "../s3select/query" }
|
||||||
rmp-serde.workspace = true
|
rmp-serde.workspace = true
|
||||||
|
rustfs-obs = { workspace = true }
|
||||||
rustls.workspace = true
|
rustls.workspace = true
|
||||||
rustls-pemfile.workspace = true
|
rustls-pemfile.workspace = true
|
||||||
rustls-pki-types.workspace = true
|
rustls-pki-types.workspace = true
|
||||||
|
rust-embed = { workspace = true, features = ["interpolate-folder-path"] }
|
||||||
s3s.workspace = true
|
s3s.workspace = true
|
||||||
serde.workspace = true
|
serde.workspace = true
|
||||||
serde_json.workspace = true
|
serde_json.workspace = true
|
||||||
|
serde_urlencoded = { workspace = true }
|
||||||
|
shadow-rs.workspace = true
|
||||||
tracing.workspace = true
|
tracing.workspace = true
|
||||||
time = { workspace = true, features = ["parsing", "formatting", "serde"] }
|
time = { workspace = true, features = ["parsing", "formatting", "serde"] }
|
||||||
tokio-util.workspace = true
|
tokio-util.workspace = true
|
||||||
tokio = { workspace = true, features = [
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "net", "signal"] }
|
||||||
"rt-multi-thread",
|
|
||||||
"macros",
|
|
||||||
"net",
|
|
||||||
"signal",
|
|
||||||
] }
|
|
||||||
tokio-rustls.workspace = true
|
tokio-rustls.workspace = true
|
||||||
lazy_static.workspace = true
|
lazy_static.workspace = true
|
||||||
tokio-stream.workspace = true
|
tokio-stream.workspace = true
|
||||||
@@ -67,28 +82,9 @@ tracing-core = { workspace = true }
|
|||||||
tracing-error.workspace = true
|
tracing-error.workspace = true
|
||||||
tracing-subscriber.workspace = true
|
tracing-subscriber.workspace = true
|
||||||
transform-stream.workspace = true
|
transform-stream.workspace = true
|
||||||
uuid = "1.15.1"
|
|
||||||
url.workspace = true
|
|
||||||
axum.workspace = true
|
|
||||||
axum-extra = { workspace = true }
|
|
||||||
axum-server = { workspace = true }
|
|
||||||
matchit = "0.8.4"
|
|
||||||
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" }
|
|
||||||
query = { path = "../s3select/query" }
|
|
||||||
api = { path = "../s3select/api" }
|
|
||||||
iam = { path = "../iam" }
|
|
||||||
jsonwebtoken = "9.3.0"
|
|
||||||
tower-http.workspace = true
|
tower-http.workspace = true
|
||||||
mime_guess = "2.0.5"
|
url.workspace = true
|
||||||
rust-embed = { workspace = true, features = ["interpolate-folder-path"] }
|
uuid = "1.15.1"
|
||||||
local-ip-address = { workspace = true }
|
|
||||||
chrono = { workspace = true }
|
|
||||||
rustfs-obs = { workspace = true }
|
|
||||||
appauth = { version = "0.0.1", path = "../appauth" }
|
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
prost-build.workspace = true
|
prost-build.workspace = true
|
||||||
@@ -101,13 +97,9 @@ futures-util.workspace = true
|
|||||||
ecstore = { path = "../ecstore" }
|
ecstore = { path = "../ecstore" }
|
||||||
s3s.workspace = true
|
s3s.workspace = true
|
||||||
clap = { workspace = true }
|
clap = { workspace = true }
|
||||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "time"] }
|
tracing-subscriber = { workspace = true, features = ["env-filter", "time"] }
|
||||||
hyper-util = { version = "0.1.10", features = [
|
hyper-util = { workspace = true, features = ["tokio", "server-auto", "server-graceful"] }
|
||||||
"tokio",
|
transform-stream = { workspace = true }
|
||||||
"server-auto",
|
|
||||||
"server-graceful",
|
|
||||||
] }
|
|
||||||
transform-stream = "0.3.1"
|
|
||||||
netif = "0.1.6"
|
netif = "0.1.6"
|
||||||
shadow-rs.workspace = true
|
shadow-rs.workspace = true
|
||||||
# pin-utils = "0.1.0"
|
# pin-utils = "0.1.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user