forked from uutils/uucore
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (42 loc) · 1.28 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "uucore"
version = "0.0.1"
authors = ["uutils developers"]
description = "Common cross-platform code used by various uutils projects"
homepage = "https://github.com/uutils/uucore"
repository = "https://github.com/uutils/uucore"
readme = "README.md"
keywords = ["cross-platform", "uutils", "coreutils"]
categories = ["os"]
license = "MIT"
[badges]
travis-ci = { repository = "uutils/uucore" }
appveyor = { repository = "uutils/uucore" }
[dependencies]
getopts = "0.2.18"
failure = { version = "0.1.1", optional = true, default-features = false }
time = { version = "0.1.40", optional = true }
data-encoding = { version = "^2.1", optional = true }
libc = { version = "0.2.62", optional = true }
wild = "2.0.1"
nix = { version = "0.13", optional = true }
lazy_static = { version = "1.3", optional = true }
platform-info = { version = "0.0.1", optional = true }
[target.'cfg(target_os = "redox")'.dependencies]
termion = "1.5"
[features]
fs = ["libc"]
utf8 = []
encoding = ["data-encoding", "failure"]
parse_time = []
mode = ["libc"]
utmpx = ["time", "libc"]
process = ["libc"]
signals = []
entries = ["libc"]
zero-copy = ["nix", "libc", "lazy_static", "platform-info"]
wide = []
default = []
[patch.crates-io.libc]
git = "https://github.com/sunriseos/libc.git"
branch = "sunrise-0.2.62"