[package]
edition = "2024"
name = "tari_engine"
version = "0.26.0"
authors = ["The Tari Development Community"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tari template runtime engine"
readme = "README.md"
license = "BSD-3-Clause"
repository = "https://github.com/tari-project/tari-ootle"
resolver = "2"
[lib]
name = "tari_engine"
path = "src/lib.rs"
[[test]]
name = "access_rules"
path = "tests/access_rules.rs"
[[test]]
name = "account"
path = "tests/account.rs"
[[test]]
name = "address_allocation"
path = "tests/address_allocation.rs"
[[test]]
name = "airdrop"
path = "tests/airdrop.rs"
[[test]]
name = "asserts"
path = "tests/asserts.rs"
[[test]]
name = "burn"
path = "tests/burn.rs"
[[test]]
name = "caller_context"
path = "tests/caller_context.rs"
[[test]]
name = "confidential"
path = "tests/confidential.rs"
[[test]]
name = "cross_template"
path = "tests/cross_template.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "fees"
path = "tests/fees.rs"
[[test]]
name = "freeze"
path = "tests/freeze.rs"
[[test]]
name = "fungible"
path = "tests/fungible.rs"
[[test]]
name = "guessing_game"
path = "tests/guessing_game.rs"
[[test]]
name = "limits"
path = "tests/limits.rs"
[[test]]
name = "no_concurrency"
path = "tests/no_concurrency.rs"
[[test]]
name = "no_std"
path = "tests/no_std.rs"
[[test]]
name = "publish_template"
path = "tests/publish_template.rs"
[[test]]
name = "recall"
path = "tests/recall.rs"
[[test]]
name = "reentrancy"
path = "tests/reentrancy.rs"
[[test]]
name = "resource"
path = "tests/resource.rs"
[[test]]
name = "shenanigans"
path = "tests/shenanigans.rs"
[[test]]
name = "signature"
path = "tests/signature.rs"
[[test]]
name = "stealth"
path = "tests/stealth.rs"
[[test]]
name = "tariswap"
path = "tests/tariswap.rs"
[[test]]
name = "template_upgrade"
path = "tests/template_upgrade.rs"
[[test]]
name = "test"
path = "tests/test.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.blake2]
version = "0.10.6"
[dependencies.indexmap]
version = "2.11.4"
[dependencies.log]
version = "0.4.20"
features = ["std"]
[dependencies.ootle_byte_type]
version = "0.3"
[dependencies.rand]
version = "0.8.5"
[dependencies.serde]
version = "1.0"
default-features = true
[dependencies.tari_bor]
version = "0.13"
features = ["std"]
default-features = true
[dependencies.tari_crypto]
version = "0.22"
features = [
"serde",
"borsh",
]
[dependencies.tari_engine_types]
version = "0.26"
[dependencies.tari_ootle_common_types]
version = "0.26"
[dependencies.tari_ootle_transaction]
version = "0.26"
[dependencies.tari_template_abi]
version = "0.16"
features = [
"std",
"func-hasher",
]
default-features = false
[dependencies.tari_template_builtin]
version = "0.26"
[dependencies.tari_template_lib]
version = "0.21"
[dependencies.tari_utilities]
version = "0.8"
[dependencies.thiserror]
version = "2.0.17"
[dependencies.wasmer]
version = "7.0.1"
features = ["cranelift"]
[dependencies.wasmer-middlewares]
version = "7.0.1"
[dev-dependencies.criterion]
version = "0.8.1"
features = ["html_reports"]
[dev-dependencies.tari_ootle_transaction]
version = "0.26"
[dev-dependencies.tari_template_builtin]
version = "0.26"
features = ["templates"]
[dev-dependencies.tari_transaction_manifest]
version = "0.26"