[package] name = "crabchess" version = "0.1.15" edition = "2021" license = "MIT" description = "A simple Chess API" exclude = ["test_data/*", "progress.md", "profile.json"] readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] thiserror = "1.0.57" anyhow = "1.0.81" nom = "7.1.3" ufmt = { version = "0.2.0", features = ["std"] } compact_str = "0.7.1" smallvec = "1.13.2" mimalloc = "0.1.39" fxhash = "0.2.1" textwrap = { version = "0.16.1", default-features = false } termcolor = { version = "1.4.1", optional = true } rayon = "1.9.0" fastrand = "2.0.2" [dev-dependencies] parking_lot = "0.12.1" rayon = "1.9.0" serde = { version = "1.0.197", features = ["derive"] } serde_json = "1.0.114" [profile.release] codegen-units = 1 lto = "fat" [features] default = ["termcolor"]