rust/physfs-rs/src/lib.rs
author unC0Rr
Tue, 28 Jan 2025 10:37:46 +0100
changeset 16072 a4cbc6926439
parent 14435 a1613788130d
permissions -rw-r--r--
- Adopt newest version of rand crate - Rework fill_bytes() method to use full generated values

//! 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;