Move tempdir to dev-dependencies
This commit is contained in:
parent
413fcff0e8
commit
03c2ded21b
2 changed files with 4 additions and 3 deletions
|
@ -4,8 +4,9 @@ version = "0.1.0"
|
||||||
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
authors = ["Matthias Beyer <mail@beyermatthias.de>"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|
||||||
fs2 = "0.2.2"
|
fs2 = "0.2.2"
|
||||||
toml = "0.1.25"
|
toml = "0.1.25"
|
||||||
tempdir = "0.3.4"
|
|
||||||
semver = "0.2"
|
semver = "0.2"
|
||||||
|
|
||||||
|
[dev-dependencies]
|
||||||
|
tempdir = "0.3.4"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
extern crate fs2;
|
extern crate fs2;
|
||||||
extern crate toml;
|
extern crate toml;
|
||||||
extern crate tempdir;
|
#[cfg(test)] extern crate tempdir;
|
||||||
extern crate semver;
|
extern crate semver;
|
||||||
|
|
||||||
pub mod storeid;
|
pub mod storeid;
|
||||||
|
|
Loading…
Reference in a new issue