Change documentation link
[tutil.git] / Cargo.toml
blob49b8d21369b4b36c99899b159b2984df7af78b3c
1 [package]
2 name = "tutil"
3 version = "0.1.1"
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 = "*", 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"]