gvfs 0.1.2

A Rust crate providing a configurable virtual file system for game assets, a la PhysFS
Documentation
1
2
3
4
5
6
7
use skeptic;
use std::path::PathBuf;

fn main() {
    let mdbook_files: Vec<PathBuf> = vec!["README.md".into()];
    skeptic::generate_doc_tests(&mdbook_files);
}