Remove unneeded import
[tutil.git] / Cargo.toml
blob00189326cfd343934fbc16699ebff106e694787a
1 [package]
2 name = "tutil"
3 version = "0.2.0"
4 license = "MPL-2.0"
5 authors = ["Severen Redwood <severen@shrike.me>"]
7 readme = "README.md"
8 homepage = "https://github.com/SShrike/tutil"
9 description = "A toolbox for developing command line applications."
10 documentation = "https://beta.docs.rs/tutil"
12 [dependencies]
13 clippy = { version = "~0.0", optional = true }
15 [target."cfg(unix)".dependencies]
16 libc = "^0.2"
18 [target."cfg(windows)".dependencies]
19 winapi = "^0.2"
20 kernel32-sys = "^0.2"
22 [features]
23 default=[]
24 lints=["clippy"]