[package]
edition = "2024"
rust-version = "1.91.0"
name = "canic-installer"
version = "0.30.21"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Published installer and release-set tooling for Canic downstream workspaces"
homepage = "https://github.com/dragginzgame/canic"
documentation = "https://docs.rs/canic-installer"
readme = "README.md"
keywords = [
"internet-computer",
"canister",
"dfinity",
"icp",
"management",
]
categories = ["wasm"]
license = "MIT"
repository = "https://github.com/dragginzgame/canic"
resolver = "2"
[lib]
name = "canic_installer"
path = "src/lib.rs"
[[bin]]
name = "canic-build-canister-artifact"
path = "src/bin/build_canister_artifact.rs"
[[bin]]
name = "canic-build-wasm-store-artifact"
path = "src/bin/build_wasm_store_artifact.rs"
[[bin]]
name = "canic-emit-root-release-set-manifest"
path = "src/bin/emit_root_release_set_manifest.rs"
[[bin]]
name = "canic-install-root"
path = "src/bin/install_root.rs"
[[bin]]
name = "canic-list-install-targets"
path = "src/bin/list_install_targets.rs"
[[bin]]
name = "canic-stage-root-release-set"
path = "src/bin/stage_root_release_set.rs"
[dependencies.canic]
version = "0.30.21"
[dependencies.canic-core]
version = "0.30.21"
[dependencies.flate2]
version = "1.1"
features = ["rust_backend"]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
default-features = false
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10.9"
[dependencies.toml]
version = "1.0"
[lints.clippy]
doc_markdown = "allow"
empty_line_after_doc_comments = "allow"
enum_variant_names = "allow"
missing_const_for_fn = "warn"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_inception = "allow"
module_name_repetitions = "allow"
must_use_candidate = "warn"
needless_pass_by_value = "allow"
option_if_let_else = "allow"
redundant_clone = "warn"
semicolon_if_nothing_returned = "warn"
significant_drop_tightening = "allow"
struct_field_names = "allow"
uninlined_format_args = "warn"
use_self = "warn"
used_underscore_binding = "allow"
wildcard_imports = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1