[package]
edition = "2021"
rust-version = "1.80"
name = "cargo-codesign"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cross-platform binary signing CLI for Rust projects"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sassman/cargo-codesign-rs"
[lib]
name = "cargo_codesign"
path = "src/lib.rs"
[[bin]]
name = "cargo-codesign"
path = "src/main.rs"
[[test]]
name = "ci_generation"
path = "tests/ci_generation.rs"
[[test]]
name = "config_parsing"
path = "tests/config_parsing.rs"
[[test]]
name = "config_resolution"
path = "tests/config_resolution.rs"
[[test]]
name = "discovery"
path = "tests/discovery.rs"
[[test]]
name = "init_generate"
path = "tests/init_generate.rs"
[[test]]
name = "keygen"
path = "tests/keygen.rs"
[[test]]
name = "manifest_parsing"
path = "tests/manifest_parsing.rs"
[[test]]
name = "subprocess"
path = "tests/subprocess.rs"
[[test]]
name = "update_signing"
path = "tests/update_signing.rs"
[[test]]
name = "verify_update"
path = "tests/verify_update.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dialoguer]
version = "0.12"
[dependencies.dotenvy]
version = "0.15"
[dependencies.ed25519-dalek]
version = "2"
features = ["rand_core"]
[dependencies.plist]
version = "1"
[dependencies.rand_core]
version = "0.6"
features = ["getrandom"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1"
[dev-dependencies]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "forbid"