[package]
edition = "2024"
rust-version = "1.97"
name = "keel-core-api"
version = "0.2.0"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Keel core API contract types (contracts-v1). Single source of truth: contracts/core_api.rs."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/MisterTK/keel"
[lib]
name = "keel_core_api"
path = "src/lib.rs"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dev-dependencies.serde_path_to_error]
version = "0.1.20"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1