mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-30 20:47:46 +00:00
Restrict some crates to specific OS
This commit is contained in:
parent
5d7e7ed4c0
commit
2a4422997d
2 changed files with 8 additions and 3 deletions
|
@ -366,7 +366,6 @@ conv = "0.3"
|
||||||
filetime = "0.2"
|
filetime = "0.2"
|
||||||
glob = "0.3.0"
|
glob = "0.3.0"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
nix = "0.20.0"
|
|
||||||
pretty_assertions = "0.7.2"
|
pretty_assertions = "0.7.2"
|
||||||
rand = "0.7"
|
rand = "0.7"
|
||||||
regex = "1.0"
|
regex = "1.0"
|
||||||
|
@ -378,8 +377,12 @@ uucore = { version=">=0.0.9", package="uucore", path="src/uucore", features=["en
|
||||||
walkdir = "2.2"
|
walkdir = "2.2"
|
||||||
atty = "0.2"
|
atty = "0.2"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dev-dependencies]
|
[target.'cfg(target_os = "linux")'.dev-dependencies]
|
||||||
rlimit = "0.4.0"
|
rlimit = "0.4.0"
|
||||||
|
|
||||||
|
[target.'cfg(unix)'.dev-dependencies]
|
||||||
|
nix = "0.20.0"
|
||||||
|
|
||||||
rust-users = { version="0.10", package="users" }
|
rust-users = { version="0.10", package="users" }
|
||||||
unix_socket = "0.5.0"
|
unix_socket = "0.5.0"
|
||||||
|
|
||||||
|
|
|
@ -24,13 +24,15 @@ wild = "2.0"
|
||||||
# * optional
|
# * optional
|
||||||
thiserror = { version="1.0", optional=true }
|
thiserror = { version="1.0", optional=true }
|
||||||
time = { version="<= 0.1.43", optional=true }
|
time = { version="<= 0.1.43", optional=true }
|
||||||
walkdir = { version="2.3.2", optional=true }
|
|
||||||
# * "problem" dependencies (pinned)
|
# * "problem" dependencies (pinned)
|
||||||
data-encoding = { version="2.1", optional=true }
|
data-encoding = { version="2.1", optional=true }
|
||||||
data-encoding-macro = { version="0.1.12", optional=true }
|
data-encoding-macro = { version="0.1.12", optional=true }
|
||||||
z85 = { version="3.0.3", optional=true }
|
z85 = { version="3.0.3", optional=true }
|
||||||
libc = { version="0.2.15", optional=true }
|
libc = { version="0.2.15", optional=true }
|
||||||
once_cell = "1.8.0"
|
once_cell = "1.8.0"
|
||||||
|
|
||||||
|
[target.'cfg(unix)'.dependencies]
|
||||||
|
walkdir = { version="2.3.2", optional=true }
|
||||||
nix = { version="0.20", optional=true }
|
nix = { version="0.20", optional=true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue