[package]
edition = "2024"
rust-version = "1.92.0"
name = "canic-testkit"
version = "0.9.6"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Canic — a canister orchestration and management toolkit for the Internet Computer"
homepage = "https://github.com/dragginzgame/canic"
documentation = "https://docs.rs/canic-testkit"
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_testkit"
path = "src/lib.rs"
[dependencies.candid]
version = "0.10"
default-features = false
[dependencies.canic]
version = "0.9.6"
[dependencies.derive_more]
version = "2.0"
features = ["full"]
default-features = false
[dependencies.pocket-ic]
version = "11.0"
[dependencies.serde]
version = "1.0"
default-features = false
[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