libgo/
lib.rs

1//! # libgo
2//!
3//! A basic Go library that implements the Go Text Protocol. It contains two sub-modules: `game` and
4//! `gtp`. `gtp` contans logic for implementing the Go Text Protocol and `game` contains core game
5//! logic.
6
7#![warn(
8    missing_docs,
9    missing_debug_implementations,
10    missing_copy_implementations,
11    trivial_casts,
12    trivial_numeric_casts,
13    unsafe_code,
14    unstable_features,
15    unused_import_braces,
16    unused_qualifications
17)]
18
19extern crate rand;
20
21pub mod game;
22pub mod gtp;