[package]
edition = "2021"
rust-version = "1.81.0"
name = "cargo-attribution"
version = "0.8.13"
authors = ["AmeKnite"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cargo subcommand to give credit to your dependencies"
documentation = "https://docs.rs/cargo-attribution"
readme = "README.md"
keywords = [
"cli",
"attribution",
"credits",
"license",
]
categories = ["command-line-utilities"]
license = "MPL-2.0"
repository = "https://github.com/ameknite/cargo-attribution"
[lib]
name = "cargo_attribution"
path = "src/lib.rs"
[[bin]]
name = "cargo-attribution"
path = "src/main.rs"
[dependencies.adler]
version = "1.0.2"
[dependencies.bytes]
version = "1.10.1"
[dependencies.cargo_metadata]
version = "0.19.2"
[dependencies.clap]
version = "4.5.35"
features = ["derive"]
[dependencies.color-eyre]
version = "0.6.3"
default-features = false
[dependencies.memchr]
version = "2.7.4"
[dependencies.regex]
version = "1.11.1"
[dependencies.reqwest]
version = "0.12.15"
features = ["rustls-tls"]
default-features = false
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.spdx]
version = "0.10.8"
[dependencies.taplo]
version = "0.13.2"
[dependencies.tokio]
version = "1.44.2"
features = ["full"]
[dependencies.toml]
version = "0.8.20"
[dependencies.toml_edit]
version = "0.22.24"
[lints.clippy]
allow_attributes = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
multiple_unsafe_ops_per_block = "warn"
must_use_candidate = "allow"
undocumented_unsafe_blocks = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing-abi = "warn"
missing_docs = "allow"
unsafe_code = "warn"
unsafe_op_in_unsafe_fn = "warn"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true