diff options
author | Till Höppner | 2016-02-18 18:53:30 +0100 |
---|---|---|
committer | Till Höppner | 2016-02-18 18:53:30 +0100 |
commit | aea35fa7e1a3261e5e7a3e8daa999bed3dcd193f (patch) | |
tree | 6f010c750dd390a5cbbb6c935603b14f800d6d7c /lib/Cargo.toml | |
parent | 7808afe883904650a012ce1ccf8ff596aa294c4b (diff) | |
download | includedir-aea35fa7e1a3261e5e7a3e8daa999bed3dcd193f.tar.gz includedir-aea35fa7e1a3261e5e7a3e8daa999bed3dcd193f.tar.xz includedir-aea35fa7e1a3261e5e7a3e8daa999bed3dcd193f.zip |
Restructure, add API, add compression
Diffstat (limited to 'lib/Cargo.toml')
-rw-r--r-- | lib/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/Cargo.toml b/lib/Cargo.toml new file mode 100644 index 0000000..aa82ad8 --- /dev/null +++ b/lib/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "includedir" +description = "Include a whole directory tree at compile time! - Runtime part" +keywords = ["include", "tree", "directory", "build", "static"] +version = "0.1.1" +authors = ["Till Höppner <till@hoeppner.ws>"] +license = "MIT" +homepage = "https://github.com/tilpner/includedir" +repository = "https://github.com/tilpner/includedir" + +[features] +default = ["flate2"] + +[dependencies] +phf = "0.7.12" + +flate2 = { version = "*", optional = true } |