changeset 14435 | a1613788130d |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/rust/physfs-rs/src/lib.rs Thu Dec 13 23:44:46 2018 +0100 @@ -0,0 +1,13 @@ +//! PhysFS bindings for Rust + +#![deny(missing_docs)] + +extern crate libc; + +pub use physfs::*; +pub use physfs::file::*; + +/// PhysFS bindings +mod physfs; +/// Definitions for the PhysFS primitives +mod primitives;