diff options
author | Till Höppner | 2016-02-18 19:08:29 +0100 |
---|---|---|
committer | Till Höppner | 2016-02-18 19:08:29 +0100 |
commit | cf5c804fb38df114c75b37878d5703d67402ef89 (patch) | |
tree | 0211e5378d874ddf8bd1f486420514c7016e37e7 /example | |
parent | aea35fa7e1a3261e5e7a3e8daa999bed3dcd193f (diff) | |
download | includedir-cf5c804fb38df114c75b37878d5703d67402ef89.tar.gz includedir-cf5c804fb38df114c75b37878d5703d67402ef89.tar.xz includedir-cf5c804fb38df114c75b37878d5703d67402ef89.zip |
Make flate2 dependency optional
Diffstat (limited to 'example')
-rw-r--r-- | example/Cargo.toml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/example/Cargo.toml b/example/Cargo.toml index 678f8fb..a3cd724 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -9,9 +9,8 @@ publish = false [dependencies] phf = "0.7.12" # includedir = "0.1.1" -includedir = { path = "../lib" } +includedir = { default-features = true, path = "../lib" } [build-dependencies] -# includedir = "0.1.1" -includedir = { path = "../lib" } +# includedir_codegen = "0.1.1" includedir_codegen = { path = "../codegen" } |