1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! # libgo
//!
//! A basic Go library that implements the Go Text Protocol. It contains two sub-modules: `game` and
//! `gtp`. `gtp` contans logic for implementing the Go Text Protocol and `game` contains core game
//! logic.

#![warn(
    missing_docs,
    missing_debug_implementations, missing_copy_implementations,
    trivial_casts, trivial_numeric_casts,
    unsafe_code,
    unstable_features,
    unused_import_braces, unused_qualifications
)]

extern crate rand;

pub mod game;
pub mod gtp;