konig/
lib.rs

1//! This crate provides traits and concrete implementations
2//! for chess, both the standard game and some related variants.
3
4// lints
5#![warn(missing_docs)]
6// features
7#![feature(associated_type_bounds)]
8#![feature(impl_trait_in_assoc_type)]
9#![feature(slice_flatten)]
10
11pub mod core;
12pub mod io;
13pub mod standard;