[package]
edition = "2021"
name = "manabrew-engine"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Magic: The Gathering rules engine — a Rust port of Forge"
readme = false
license = "AGPL-3.0-or-later"
[lib]
name = "manabrew_engine"
path = "src/lib.rs"
[[test]]
name = "cancel_counterspell"
path = "tests/cancel_counterspell.rs"
[[test]]
name = "cards"
path = "tests/cards.rs"
[[test]]
name = "cleansing_wildfire_regression"
path = "tests/cleansing_wildfire_regression.rs"
[[test]]
name = "common_test_agent"
path = "tests/common_test_agent.rs"
[[test]]
name = "control_magic_aura"
path = "tests/control_magic_aura.rs"
[[test]]
name = "counter_and_control"
path = "tests/counter_and_control.rs"
[[test]]
name = "first_game"
path = "tests/first_game.rs"
[[test]]
name = "shock_counterspell_bug"
path = "tests/shock_counterspell_bug.rs"
[[test]]
name = "token_effects"
path = "tests/token_effects.rs"
[[test]]
name = "trigger_demo"
path = "tests/trigger_demo.rs"
[[test]]
name = "ui_counter_integration"
path = "tests/ui_counter_integration.rs"
[[test]]
name = "zone_change_effects"
path = "tests/zone_change_effects.rs"
[dependencies.dyn-clone]
version = "1"
[dependencies.forge-card-script]
version = "0.1.0"
[dependencies.forge-carddb]
version = "0.2.0"
[dependencies.forge-foundation]
version = "0.2.0"
[dependencies.indexmap]
version = "2"
[dependencies.manabrew-engine-macros]
version = "0.2.0"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.smallvec]
version = "1"
[dependencies.strum]
version = "0.28"
[dependencies.strum_macros]
version = "0.28.0"
[dependencies.typetag]
version = "0.2"
[dependencies.winnow]
version = "0.7"
[dev-dependencies]