mirror of
https://github.com/rustfs/rustfs.git
synced 2026-01-17 01:30:33 +00:00
# Conflicts: # .github/workflows/build.yml # .github/workflows/ci.yml # Cargo.lock # Cargo.toml # appauth/src/token.rs # crates/config/src/config.rs # crates/event-notifier/examples/simple.rs # crates/event-notifier/src/global.rs # crates/event-notifier/src/lib.rs # crates/event-notifier/src/notifier.rs # crates/event-notifier/src/store.rs # crates/filemeta/src/filemeta.rs # crates/notify/examples/webhook.rs # crates/utils/Cargo.toml # ecstore/Cargo.toml # ecstore/src/cmd/bucket_replication.rs # ecstore/src/config/com.rs # ecstore/src/disk/error.rs # ecstore/src/disk/mod.rs # ecstore/src/set_disk.rs # ecstore/src/store_api.rs # ecstore/src/store_list_objects.rs # iam/Cargo.toml # iam/src/manager.rs # policy/Cargo.toml # rustfs/src/admin/rpc.rs # rustfs/src/main.rs # rustfs/src/storage/mod.rs
39 lines
1.0 KiB
TOML
39 lines
1.0 KiB
TOML
[package]
|
|
name = "iam"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
tokio.workspace = true
|
|
time = { workspace = true, features = ["serde-human-readable"] }
|
|
serde = { workspace = true, features = ["derive", "rc"] }
|
|
ecstore = { path = "../ecstore" }
|
|
policy.workspace = true
|
|
serde_json.workspace = true
|
|
async-trait.workspace = true
|
|
thiserror.workspace = true
|
|
strum = { workspace = true, features = ["derive"] }
|
|
arc-swap = { workspace = true }
|
|
crypto = { path = "../crypto" }
|
|
ipnetwork = { workspace = true, features = ["serde"] }
|
|
itertools = { workspace = true }
|
|
futures.workspace = true
|
|
rand.workspace = true
|
|
base64-simd = { workspace = true }
|
|
jsonwebtoken = { workspace = true }
|
|
tracing.workspace = true
|
|
madmin.workspace = true
|
|
lazy_static.workspace = true
|
|
regex = { workspace = true }
|
|
common.workspace = true
|
|
rustfs-utils = { workspace = true, features = ["path"] }
|
|
|
|
[dev-dependencies]
|
|
test-case.workspace = true
|