# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2018" name = "poke-engine" version = "0.0.16" authors = ["pmariglia "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Pokemon battle engine that can be used to search through the state space of a Pokemon battle." readme = "README.md" license-file = "LICENSE" [profile.release] debug = 1 [lib] name = "poke_engine" crate-type = ["lib"] path = "src/lib.rs" [[bin]] name = "poke-engine" path = "src/main.rs" [[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" [dependencies.clap] version = "4.5.4" features = ["derive"] [dependencies.lazy_static] version = "1.4.0" [dependencies.rand] version = "0.8.4" [features] default = [] gen4 = [] gen5 = [] gen6 = [] gen7 = [] gen8 = [] gen9 = [] remove_low_chance_instructions = [] terastallization = ["gen9"]