[[bin]]
name = "poke-engine"
path = "src/main.rs"
[dependencies.clap]
features = ["derive"]
version = "4.5.4"
[dependencies.lazy_static]
version = "1.4.0"
[dependencies.rand]
version = "0.8.4"
[features]
damage_dealt = []
default = []
gen4 = []
gen5 = []
gen6 = []
gen7 = []
gen8 = []
gen9 = []
last_used_move = []
remove_low_chance_instructions = []
[lib]
crate-type = ["lib"]
name = "poke_engine"
path = "src/lib.rs"
[package]
authors = ["pmariglia <pmariglia@github.com>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = "A Pokemon battle engine that can be used to search through the state space of a Pokemon battle."
edition = "2018"
license-file = "LICENSE"
name = "poke-engine"
readme = "README.md"
version = "0.0.8"
[profile.release]
debug = 1
[[test]]
name = "test_battle_mechanics"
path = "tests/test_battle_mechanics.rs"
[[test]]
name = "test_damage_dealt"
path = "tests/test_damage_dealt.rs"
[[test]]
name = "test_last_used_move"
path = "tests/test_last_used_move.rs"