[package]
edition = "2021"
rust-version = "1.95"
name = "wacc"
version = "2.0.0"
authors = ["Dave Grantham <dwg@linuxprogrammer.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Web Assembly Cryptographic Constructs VM implementation"
readme = "README.md"
keywords = [
"wasm",
"cryptographic",
"vm",
"provenance",
"scripting",
]
categories = [
"cryptography",
"wasm",
]
license = "Apache-2.0"
repository = "https://github.com/cryptidtech/wacc.git"
[lib]
name = "wacc"
path = "src/lib.rs"
[[test]]
name = "branch"
path = "tests/branch.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "forklock"
path = "tests/forklock.rs"
[[test]]
name = "lock"
path = "tests/lock.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[[test]]
name = "preimage"
path = "tests/preimage.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "pubkeysig"
path = "tests/pubkeysig.rs"
[[test]]
name = "security"
path = "tests/security.rs"
[[test]]
name = "unlock"
path = "tests/unlock.rs"
[dependencies.blake3]
version = "1.8.1"
features = ["traits-preview"]
[dependencies.log]
version = "0.4"
[dependencies.multi-cid]
version = "0.2"
[dependencies.multi-codec]
version = "1.2"
[dependencies.multi-hash]
version = "1.1"
[dependencies.multi-key]
version = "1.1"
[dependencies.multi-sig]
version = "1.2"
[dependencies.multi-trait]
version = "1.0"
[dependencies.multi-util]
version = "1.1"
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.wasmtime]
version = "47.0"
features = [
"cranelift",
"parallel-compilation",
"runtime",
"std",
"wat",
]
default-features = false
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.proptest]
version = "1.11"
[dev-dependencies.test-log]
version = "0.2"
features = [
"trace",
"color",
]
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.multiple_crate_versions]
level = "allow"
priority = 1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1