[package]
edition = "2024"
rust-version = "1.88"
name = "openstack_cli"
version = "0.13.6"
authors = ["Artem Goncharov (gtema)"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "OpenStack client rewritten in Rust"
homepage = "https://github.com/gtema/openstack"
readme = "README.md"
categories = ["command-line-interface"]
license = "Apache-2.0"
repository = "https://github.com/gtema/openstack"
[features]
_test_admin = []
_test_net_auto-allocated-topology = []
_test_net_dhcp_agent_scheduler = []
_test_net_l3_agent_scheduler = []
_test_net_local_ips = []
_test_net_logging = []
_test_net_network-ip-availability = []
_test_net_network-segment-range = []
_test_net_vpn = []
block_storage = []
compute = []
container_infra = []
default = [
"openstack_sdk/async",
"block_storage",
"compute",
"container_infra",
"dns",
"identity",
"image",
"load_balancer",
"network",
"object_store",
"placement",
]
dns = []
identity = []
image = ["openstack_sdk/image"]
keystone_ng = ["openstack-cli-identity/keystone_ng"]
load_balancer = []
network = []
object_store = []
passkey = ["openstack-cli-identity/passkey"]
placement = []
[lib]
name = "openstack_cli"
path = "src/lib.rs"
bench = false
[[bin]]
name = "osc"
path = "src/bin/osc.rs"
test = false
bench = false
[[test]]
name = "functional"
path = "tests/main.rs"
test = false
[[test]]
name = "macros"
path = "tests/macros.rs"
[dependencies.clap]
version = "^4.6"
features = [
"cargo",
"color",
"derive",
"env",
"color",
"derive",
"env",
]
[dependencies.clap_complete]
version = "^4.6"
features = ["unstable-dynamic"]
[dependencies.color-eyre]
version = "^0.6"
features = [
"default",
"issue-url",
"track-caller",
]
[dependencies.dialoguer]
version = "^0.12.0"
features = ["fuzzy-select"]
[dependencies.eyre]
version = "^0.6"
[dependencies.openstack-cli-api]
version = "0.2.0"
[dependencies.openstack-cli-auth]
version = "0.2.0"
[dependencies.openstack-cli-block-storage]
version = "0.2.0"
[dependencies.openstack-cli-catalog]
version = "0.2.0"
[dependencies.openstack-cli-compute]
version = "0.2.0"
[dependencies.openstack-cli-container-infrastructure-management]
version = "0.2.0"
[dependencies.openstack-cli-core]
version = "0.13.6"
[dependencies.openstack-cli-dns]
version = "0.2.0"
[dependencies.openstack-cli-identity]
version = "0.2.0"
[dependencies.openstack-cli-image]
version = "0.2.0"
[dependencies.openstack-cli-load-balancer]
version = "0.2.0"
[dependencies.openstack-cli-network]
version = "0.2.0"
[dependencies.openstack-cli-object-store]
version = "0.2.0"
[dependencies.openstack-cli-placement]
version = "^0.2"
[dependencies.openstack_sdk]
version = "0.22.6"
features = ["async"]
[dependencies.strip-ansi-escapes]
version = "^0.2"
[dependencies.tokio]
version = "^1.52"
features = ["macros"]
default-features = false
[dependencies.tracing]
version = "^0.1"
[dependencies.tracing-subscriber]
version = "^0.3"
features = [
"env-filter",
"serde",
]
[dev-dependencies.assert_cmd]
version = "^2.2"
[dev-dependencies.futures]
version = "^0.3"
[dev-dependencies.http]
version = "^1.4"
[dev-dependencies.md5]
version = "^0.8.0"
[dev-dependencies.rand]
version = "^0.10"
[dev-dependencies.reqwest]
version = "^0.13"
default-features = false
[dev-dependencies.serde_json]
version = "^1.0"
[dev-dependencies.tempfile]
version = "^3.27"
[lints.clippy]
enum_glob_use = "deny"
expect_used = "deny"
module_inception = "allow"
result_large_err = "allow"
unwrap_used = "deny"