[package]
edition = "2024"
name = "amiss-bootstrap"
version = "0.9.1"
build = false
exclude = [
"/tests",
"/benches",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Trusted CI wrapper that validates and launches a verified Amiss engine"
readme = "README.md"
license = "FSL-1.1-ALv2"
repository = "https://github.com/HardMax71/amiss"
[lib]
name = "amiss_bootstrap"
path = "src/lib.rs"
[[bin]]
name = "amiss-bootstrap"
path = "src/main.rs"
[[bin]]
name = "amiss-manifest"
path = "src/bin/amiss-manifest.rs"
[dependencies.amiss-git]
version = "0.9.1"
[dependencies.amiss-wire]
version = "0.9.1"
[dependencies.tempfile]
version = "3"
[dev-dependencies.tempfile]
version = "3"
[lints.clippy]
allow_attributes = "deny"
allow_attributes_without_reason = "deny"
arithmetic_side_effects = "warn"
as_conversions = "deny"
cast_possible_truncation = "deny"
cast_possible_wrap = "deny"
cast_precision_loss = "deny"
cast_sign_loss = "deny"
dbg_macro = "deny"
disallowed_methods = "deny"
disallowed_types = "deny"
exit = "deny"
expect_used = "deny"
indexing_slicing = "deny"
iter_over_hash_type = "warn"
map_err_ignore = "warn"
mem_forget = "deny"
missing_errors_doc = "deny"
missing_panics_doc = "deny"
mod_module_files = "warn"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
string_slice = "deny"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
wildcard_enum_match_arm = "deny"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
elided_lifetimes_in_paths = "warn"
trivial_numeric_casts = "warn"
unnameable_types = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"