pleco 0.1.2

A blazingly-fast chess engine and Chess AI.
Documentation
# 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]
name = "pleco"
version = "0.1.2"
authors = ["Stephen Fleischman <stephenf@cs.washington.edu>"]
include = ["src/*", "tests/*.rs", "Cargo.toml", ".gitignore", "README.md", "benches/*.rs"]
description = "A blazingly-fast chess engine and Chess AI."
homepage = "https://github.com/sfleischman105/Pleco"
documentation = "https://docs.rs/pleco/"
readme = "README.md"
keywords = ["chess", "engine", "game", "gaming"]
categories = ["games", "game-engines"]
license = "MIT"
repository = "https://github.com/sfleischman105/Pleco"
[profile.doc]
opt-level = 0
lto = false
codegen-units = 1
debug = 2
debug-assertions = true
rpath = false
panic = "unwind"

[profile.bench]
opt-level = 3
lto = false
codegen-units = 1
debug = false
debug-assertions = false
rpath = false

[profile.dev]
opt-level = 3
debug = true

[profile.release]
opt-level = 3
debug = true

[lib]
name = "pleco"
path = "src/lib.rs"
doctest = true
bench = true

[[test]]
name = "default"
path = "tests/test.rs"

[[bench]]
name = "integration_benches"
path = "benches/bench.rs"
[dependencies.clippy]
version = "0.0.21"
optional = true

[dependencies.rand]
version = "0.3"

[dependencies.owning_ref]
version = "0.2"

[dependencies.bitflags]
version = "0.9"

[dependencies.rayon]
version = "0.8.2"

[dependencies.lazy_static]
version = "0.2"

[dependencies.num_cpus]
version = "1.0"

[dependencies.parking_lot]
version = "0.3"

[features]
dev = ["clippy"]
default = []