[package]
edition = "2024"
rust-version = "1.93"
name = "rabbitmq-versioning"
version = "0.20.0"
authors = ["Michael S. Klishin and Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RabbitMQ version parsing, comparison, and URL generation"
homepage = "https://github.com/michaelklishin/frm"
readme = "README.md"
keywords = [
"rabbitmq",
"version",
"parser",
"semver",
]
categories = [
"parsing",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/michaelklishin/frm"
[lib]
name = "rabbitmq_versioning"
path = "src/lib.rs"
[[test]]
name = "version_proptests"
path = "tests/version_proptests.rs"
[[test]]
name = "version_tests"
path = "tests/version_tests.rs"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.proptest]
version = "1.10"
[dev-dependencies.serde_json]
version = "1.0"
[lints.clippy]
uninlined_format_args = "allow"