[go: up one dir, main page]

fuse 0.3.1

Rust library for filesystems in userspace (FUSE)
Documentation
1
2
3
4
5
6
7
8
9
10
11
extern crate pkg_config;

#[cfg(not(target_os = "macos"))]
static LIBFUSE_NAME: &str = "fuse";

#[cfg(target_os = "macos")]
static LIBFUSE_NAME: &str = "osxfuse";

fn main () {
    pkg_config::Config::new().atleast_version("2.6.0").probe(LIBFUSE_NAME).unwrap();
}