rust/physfs-rs/src/lib.rs
changeset 14435 a1613788130d
equal deleted inserted replaced
14434:632dfc73cf83 14435:a1613788130d
       
     1 //! PhysFS bindings for Rust
       
     2 
       
     3 #![deny(missing_docs)]
       
     4 
       
     5 extern crate libc;
       
     6 
       
     7 pub use physfs::*;
       
     8 pub use physfs::file::*;
       
     9 
       
    10 /// PhysFS bindings
       
    11 mod physfs;
       
    12 /// Definitions for the PhysFS primitives
       
    13 mod primitives;