gpcas_base 0.3.0

Common definitions and utilities for GPCAS
Documentation
// Filename: lib.rs
// Version:	 0.1
// Date:	 19-06-2021 (DD-MM-YYYY)
// Library:  gpcas_base
//
// Copyright (c) 2021 Kai Rese
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this program. If not, see
// <https://www.gnu.org/licenses/>.

//! This is the base crate of the General Purpose Core Architecture Simulator, or GPCAS for short.
//!
//! The crate provides dependencies that are used by practically any other GPCAS crate, as well as
//! general utilities.
#[warn(missing_docs)]
pub mod file;
pub mod instruction_type;