[package] name = "ansible-inventory-cloud-cli" version = "0.1.0" authors = ["vkill "] edition = "2021" description = "Ansible Inventory Cloud Cli" license = "Apache-2.0 OR MIT" repository = "https://github.com/bk-rs/ansible-rs" homepage = "https://github.com/bk-rs/ansible-rs" documentation = "https://docs.rs/ansible-inventory-cloud-cli" keywords = [] categories = [] readme = "README.md" [[bin]] name = "ansible-inventory-cloud-cli" path = "src/bin/cloud.rs" [[bin]] name = "ansible-inventory-http-cli" path = "src/bin/http.rs" required-features = ["with_http"] [package.metadata.docs.rs] all-features = true [features] default = ["with_http"] with_http = ["isahc"] [dependencies] ansible-inventory = { version = "0.1", path = "../ansible-inventory" } clap = { version = "4", features = ["derive"] } serde_json = { version = "1", default_features = false, features = ["std"] } url = { version = "2", default_features = false, features = ["serde"] } tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread"] } isahc = { version = "1", default_features = false, features = ["http2"], optional = true } [package.metadata.cargo-all-features] skip_optional_dependencies = true