# 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 believe there's an error in this file please file an # issue against the rust-lang/cargo repository. If you're # editing this file be aware that the upstream Cargo.toml # will likely look very different (and much more reasonable) [package] edition = "2018" name = "weasel" version = "0.11.0" authors = ["Trisfald "] include = ["Cargo.toml", "LICENSE", "src/**/*", "examples/**/*"] description = "A customizable battle system for turn-based games." documentation = "https://docs.rs/weasel" readme = "README.md" keywords = ["game", "weasel", "turn-based"] categories = ["game-development"] license = "MIT" repository = "https://github.com/Trisfald/weasel" [package.metadata.docs.rs] all-features = true [[example]] name = "pirates" required-features = ["random", "serialization"] [[example]] name = "autosave" required-features = ["serialization"] [[example]] name = "user-event" path = "examples/user_event/main.rs" required-features = ["serialization"] [[example]] name = "space" [[example]] name = "initiative" required-features = ["random"] [[example]] name = "undo" [[example]] name = "passive" [[example]] name = "status" [[example]] name = "king" path = "examples/king_of_the_hill/main.rs" required-features = ["random", "serialization"] [[test]] name = "entropy-test" path = "tests/entropy_test.rs" required-features = ["random"] [dependencies.indexmap] version = "1.3" [dependencies.log] version = "0.4" [dependencies.num-traits] version = "0.2" [dependencies.rand] version = "0.7" optional = true [dependencies.rand_pcg] version = "0.2" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dev-dependencies.serde_json] version = "1.0" [features] default = [] random = ["rand", "rand_pcg"] serialization = ["serde"] [badges.maintenance] status = "actively-developed"