[package] name = "readable-perms" description = "More usable UNIX file permissions interface" keywords = ["unix", "fs", "permissions", "file", "chmod"] version = "0.1.3" authors = ["Avril "] edition = "2018" license = "GPL-3.0-or-later" readme = "README.md" repository = "https://git.flanchan.moe/flanchan/readable-perms" homepage = "https://git.flanchan.moe/flanchan/readable-perms" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["chmod"] # Enable setting Permissions to `std::fs::File` and `impl AsRef` directly chmod = ["libc"] # Ignore this, it is for regenerating the lookup table used on stable (needed due to lack of matching in `const fn`). # It is already included in this repo. # If you really want to rebuild it, `cargo test` will output it to `src/stable/mod.rs` lol. speedup_hack_stable = [] [dependencies] bitflags = "1.2" libc = {version = "0.2", optional=true} [build-dependencies] rustc_version = "0.2"