[package]
edition = "2021"
rust-version = "1.75"
name = "shipwright-version-stamp"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI: stamp a semver tag into Cargo.toml, package.json, csproj, and pubspec.yaml before a Shipwright release."
documentation = "https://docs.rs/shipwright-version-stamp"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Nimblesite/Shipwright"
[[bin]]
name = "shipwright-version-stamp"
path = "src/main.rs"
[[test]]
name = "stamp"
path = "tests/stamp.rs"
[dependencies.serde]
version = "1"
features = [
"derive",
"derive",
]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
arithmetic_side_effects = "deny"
expect_used = "deny"
indexing_slicing = "deny"
missing_docs_in_private_items = "deny"
panic = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.rust]
dead_code = "deny"
elided_lifetimes_in_paths = "deny"
missing_debug_implementations = "deny"
missing_docs = "deny"
trivial_casts = "deny"
trivial_numeric_casts = "deny"
unsafe_code = "deny"
unused_assignments = "deny"
unused_imports = "deny"
unused_mut = "deny"
unused_results = "deny"
unused_variables = "deny"
[lints.rust.future_incompatible]
level = "deny"
priority = -1
[lints.rust.nonstandard_style]
level = "deny"
priority = -1
[lints.rust.rust_2018_idioms]
level = "deny"
priority = -1