[package]
edition = "2024"
name = "anodized"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An ecosystem for correct Rust based on lightweight specification annotations"
readme = "README.md"
keywords = [
"correctness",
"design-by-contract",
"fuzzing",
"testing",
"verification",
]
categories = [
"development-tools",
"development-tools::procedural-macro-helpers",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/mkovaxx/anodized"
resolver = "2"
[features]
runtime-check-and-panic = []
runtime-check-and-print = []
runtime-no-check = []
[lib]
name = "anodized"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "async_function"
path = "tests/async_function.rs"
[[test]]
name = "basic_enum"
path = "tests/basic_enum.rs"
[[test]]
name = "basic_function"
path = "tests/basic_function.rs"
[[test]]
name = "basic_traits"
path = "tests/basic_traits.rs"
[[test]]
name = "block_expressions"
path = "tests/block_expressions.rs"
[[test]]
name = "captures_feature"
path = "tests/captures_feature.rs"
[[test]]
name = "compile_fail"
path = "tests/compile_fail.rs"
[[test]]
name = "default_output_pattern"
path = "tests/default_output_pattern.rs"
[[test]]
name = "execution_order"
path = "tests/execution_order.rs"
[[test]]
name = "explicit_binding_in_postcondition"
path = "tests/explicit_binding_in_postcondition.rs"
[[test]]
name = "method_call_invariant"
path = "tests/method_call_invariant.rs"
[[test]]
name = "method_with_invariant"
path = "tests/method_with_invariant.rs"
[[test]]
name = "multiple_conditions"
path = "tests/multiple_conditions.rs"
[[test]]
name = "rename_return_value"
path = "tests/rename_return_value.rs"
[dependencies.anodized-core]
version = "0.4.0"
[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dependencies.quote]
version = "1.0"
[dependencies.syn]
version = "2.0"
features = [
"extra-traits",
"full",
"visit",
]
[dev-dependencies.pollster]
version = "0.4"
[dev-dependencies.trybuild]
version = "1.0"