[package]
edition = "2024"
rust-version = "1.92"
name = "rustfs-cli"
version = "0.1.30"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust S3 CLI client for S3-compatible object storage"
homepage = "https://github.com/rustfs/cli"
readme = "README.md"
keywords = [
"s3",
"cli",
"storage",
"aws",
"object-storage",
]
categories = [
"command-line-utilities",
"filesystem",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustfs/cli"
[features]
default = []
golden = []
integration = []
[lib]
name = "rustfs_cli"
path = "src/lib.rs"
[[bin]]
name = "rc"
path = "src/main.rs"
[[test]]
name = "admin_access_key"
path = "tests/admin_access_key.rs"
[[test]]
name = "admin_access_key_bulk"
path = "tests/admin_access_key_bulk.rs"
[[test]]
name = "admin_bucket_metadata"
path = "tests/admin_bucket_metadata.rs"
[[test]]
name = "admin_capabilities"
path = "tests/admin_capabilities.rs"
[[test]]
name = "admin_config"
path = "tests/admin_config.rs"
[[test]]
name = "admin_decommission"
path = "tests/admin_decommission.rs"
[[test]]
name = "admin_diagnostics"
path = "tests/admin_diagnostics.rs"
[[test]]
name = "admin_expand"
path = "tests/admin_expand.rs"
[[test]]
name = "admin_ilm"
path = "tests/admin_ilm.rs"
[[test]]
name = "admin_info"
path = "tests/admin_info.rs"
[[test]]
name = "admin_kms"
path = "tests/admin_kms.rs"
[[test]]
name = "admin_kms_config"
path = "tests/admin_kms_config.rs"
[[test]]
name = "admin_kms_roundtrip"
path = "tests/admin_kms_roundtrip.rs"
[[test]]
name = "admin_metrics"
path = "tests/admin_metrics.rs"
[[test]]
name = "admin_oidc"
path = "tests/admin_oidc.rs"
[[test]]
name = "admin_policy_detach"
path = "tests/admin_policy_detach.rs"
[[test]]
name = "admin_policy_entities"
path = "tests/admin_policy_entities.rs"
[[test]]
name = "admin_pool"
path = "tests/admin_pool.rs"
[[test]]
name = "admin_rebalance"
path = "tests/admin_rebalance.rs"
[[test]]
name = "admin_replicate"
path = "tests/admin_replicate.rs"
[[test]]
name = "admin_scanner"
path = "tests/admin_scanner.rs"
[[test]]
name = "admin_service"
path = "tests/admin_service.rs"
[[test]]
name = "admin_service_account"
path = "tests/admin_service_account.rs"
[[test]]
name = "admin_storage_info"
path = "tests/admin_storage_info.rs"
[[test]]
name = "alias_config_error"
path = "tests/alias_config_error.rs"
[[test]]
name = "alias_portability"
path = "tests/alias_portability.rs"
[[test]]
name = "dockerfile_contract"
path = "tests/dockerfile_contract.rs"
[[test]]
name = "env_alias"
path = "tests/env_alias.rs"
[[test]]
name = "error_contract"
path = "tests/error_contract.rs"
[[test]]
name = "get_put_aliases"
path = "tests/get_put_aliases.rs"
[[test]]
name = "golden"
path = "tests/golden.rs"
[[test]]
name = "help_contract"
path = "tests/help_contract.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "ls_versions_error"
path = "tests/ls_versions_error.rs"
[[test]]
name = "mirror_planner"
path = "tests/mirror_planner.rs"
[[test]]
name = "multipart_incomplete"
path = "tests/multipart_incomplete.rs"
[[test]]
name = "object_lock"
path = "tests/object_lock.rs"
[[test]]
name = "output_schema_v3"
path = "tests/output_schema_v3.rs"
[[test]]
name = "recursive_remote_copy"
path = "tests/recursive_remote_copy.rs"
[[test]]
name = "replication_diff"
path = "tests/replication_diff.rs"
[[test]]
name = "replication_operations"
path = "tests/replication_operations.rs"
[[test]]
name = "rm_purge"
path = "tests/rm_purge.rs"
[[test]]
name = "sse_customer"
path = "tests/sse_customer.rs"
[[test]]
name = "transfer_planner"
path = "tests/transfer_planner.rs"
[[test]]
name = "undo_command"
path = "tests/undo_command.rs"
[[test]]
name = "versioned_objects"
path = "tests/versioned_objects.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4.5"
[dependencies.comfy-table]
version = "7.2"
[dependencies.console]
version = "0.16"
[dependencies.futures]
version = "0.3"
[dependencies.glob]
version = "0.3"
[dependencies.humansize]
version = "2.1"
[dependencies.humantime]
version = "2.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.jiff]
version = "0.2"
features = ["serde"]
[dependencies.mime_guess]
version = "2.0"
[dependencies.quick-xml]
version = "0.41"
features = ["serialize"]
[dependencies.rc-core]
version = "0.1.30"
[dependencies.rc-s3]
version = "0.1.30"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.shlex]
version = "1.3"
[dependencies.tempfile]
version = "3.24"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2.5"
[dependencies.urlencoding]
version = "2.1"
[dependencies.zeroize]
version = "1.8"
[dependencies.zip]
version = "8.6"
features = ["deflate"]
default-features = false
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.insta]
version = "1.46"
features = ["json"]
[dev-dependencies.jsonschema]
version = "0.48"
default-features = false
[dev-dependencies.tempfile]
version = "3.24"