[package]
edition = "2024"
rust-version = "1.93"
name = "frm-bin"
version = "0.20.0"
authors = ["Michael S. Klishin and Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Frakking RabbitMQ version Manager"
homepage = "https://github.com/michaelklishin/frm"
readme = "README.md"
keywords = [
"rabbitmq",
"version-manager",
"cli",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/michaelklishin/frm"
[lib]
name = "frm"
path = "src/lib.rs"
[[bin]]
name = "frm"
path = "src/main.rs"
[[test]]
name = "bg_tests"
path = "tests/bg_tests.rs"
[[test]]
name = "check_signature_tests"
path = "tests/check_signature_tests.rs"
[[test]]
name = "cli_tests"
path = "tests/cli_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "cp_etc_file_proptests"
path = "tests/cp_etc_file_proptests.rs"
[[test]]
name = "cp_etc_file_tests"
path = "tests/cp_etc_file_tests.rs"
[[test]]
name = "download_tests"
path = "tests/download_tests.rs"
[[test]]
name = "end_to_end_integration_tests"
path = "tests/end_to_end_integration_tests.rs"
[[test]]
name = "errors_tests"
path = "tests/errors_tests.rs"
[[test]]
name = "paths_proptests"
path = "tests/paths_proptests.rs"
[[test]]
name = "paths_tests"
path = "tests/paths_tests.rs"
[[test]]
name = "releases_tests"
path = "tests/releases_tests.rs"
[[test]]
name = "shell_completions_tests"
path = "tests/shell_completions_tests.rs"
[[test]]
name = "shell_tests"
path = "tests/shell_tests.rs"
[[test]]
name = "status_proptests"
path = "tests/status_proptests.rs"
[[test]]
name = "status_tests"
path = "tests/status_tests.rs"
[[test]]
name = "tanzu_cli_tests"
path = "tests/tanzu_cli_tests.rs"
[[test]]
name = "tanzu_proptests"
path = "tests/tanzu_proptests.rs"
[[test]]
name = "tanzu_tests"
path = "tests/tanzu_tests.rs"
[[test]]
name = "timestamps_tests"
path = "tests/timestamps_tests.rs"
[[test]]
name = "version_option_proptests"
path = "tests/version_option_proptests.rs"
[[test]]
name = "version_option_tests"
path = "tests/version_option_tests.rs"
[[test]]
name = "version_proptests"
path = "tests/version_proptests.rs"
[[test]]
name = "version_tests"
path = "tests/version_tests.rs"
[dependencies.bel7-cli]
version = "0.8"
features = ["full"]
[dependencies.chrono]
version = "0.4"
[dependencies.chrono-english]
version = "0.1"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "6.0"
[dependencies.flate2]
version = "1.1"
[dependencies.futures-util]
version = "0.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.rabbitmq-conf]
version = "0.20"
[dependencies.rabbitmq-versioning]
version = "0.20"
[dependencies.reqwest]
version = "0.13"
features = [
"stream",
"json",
"rustls",
"charset",
"query",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tabled]
version = "0.20"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.toml]
version = "1.0"
[dependencies.xz2]
version = "0.1"
[dev-dependencies.assert_cmd]
version = "2.1"
[dev-dependencies.predicates]
version = "3.1"
[dev-dependencies.proptest]
version = "1.10"
[dev-dependencies.tempfile]
version = "3.25"
[lints.clippy]
uninlined_format_args = "allow"