[package] name = "fox-and-hounds" version = "0.6.0" # remember to update html_root_url in lib.rs authors = ["printfn "] edition = "2018" description = "Implementation of Fox & Hounds in pure Rust" license = "MIT OR Apache-2.0" repository = "https://github.com/printfn/FoxAndHoundsRust" readme = "README.md" keywords = ["games"] categories = ["games", "command-line-utilities"] exclude = ["cargo"] [profile.release] debug = true # enable debug symbols, neglibible performance impact opt-level = 3 lto = true [lib] name = "fox_and_hounds" path = "src/lib.rs" [[bin]] name = "fox-and-hounds" path = "src/main.rs"