mirror of
https://github.com/uutils/coreutils
synced 2024-12-13 06:42:42 +00:00
build(deps): bump selinux from 0.2.7 to 0.3.0
Bumps [selinux](https://github.com/koutheir/selinux) from 0.2.7 to 0.3.0. - [Release notes](https://github.com/koutheir/selinux/releases) - [Changelog](https://github.com/koutheir/selinux/blob/master/CHANGELOG.md) - [Commits](https://github.com/koutheir/selinux/commits) --- updated-dependencies: - dependency-name: selinux dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
a857002def
commit
39d9fa31f6
9 changed files with 10 additions and 10 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1722,9 +1722,9 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|||
|
||||
[[package]]
|
||||
name = "selinux"
|
||||
version = "0.2.7"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "0c4534fb886814d0015bcc290979263692213627bdf8ed4091746bb1c77acb0d"
|
||||
checksum = "d4da3e204948ec2cb244cb35c933b75ceac57a043c619d4f4690c031440e7913"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"libc",
|
||||
|
|
|
@ -265,7 +265,7 @@ clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
|||
clap_complete = "3.1"
|
||||
once_cell = "1.13.1"
|
||||
phf = "0.10.1"
|
||||
selinux = { version="0.2", optional = true }
|
||||
selinux = { version="0.3", optional = true }
|
||||
textwrap = { version="0.15", features=["terminal_size"] }
|
||||
uucore = { version=">=0.0.15", package="uucore", path="src/uucore" }
|
||||
zip = { version = "0.6.0", optional=true, default_features=false, features=["deflate"] }
|
||||
|
|
|
@ -16,7 +16,7 @@ path = "src/chcon.rs"
|
|||
[dependencies]
|
||||
clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
||||
uucore = { version = ">=0.0.9", package="uucore", path="../../uucore", features=["entries", "fs", "perms"] }
|
||||
selinux = { version = "0.2" }
|
||||
selinux = { version = "0.3" }
|
||||
fts-sys = { version = "0.2" }
|
||||
thiserror = { version = "1.0" }
|
||||
libc = { version = "0.2" }
|
||||
|
|
|
@ -23,7 +23,7 @@ clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
|||
filetime = "0.2"
|
||||
libc = "0.2.132"
|
||||
quick-error = "2.0.1"
|
||||
selinux = { version="0.2", optional=true }
|
||||
selinux = { version="0.3", optional=true }
|
||||
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["entries", "fs", "perms", "mode"] }
|
||||
walkdir = "2.2"
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ path = "src/dir.rs"
|
|||
[dependencies]
|
||||
clap = { version = "3.2", features = ["wrap_help", "cargo", "env"] }
|
||||
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["entries", "fs"] }
|
||||
selinux = { version = "0.2", optional = true }
|
||||
selinux = { version = "0.3", optional = true }
|
||||
uu_ls = { version = ">=0.0.15", path="../ls"}
|
||||
|
||||
[[bin]]
|
||||
|
|
|
@ -17,7 +17,7 @@ path = "src/id.rs"
|
|||
[dependencies]
|
||||
clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
||||
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["entries", "process"] }
|
||||
selinux = { version="0.2", optional = true }
|
||||
selinux = { version="0.3", optional = true }
|
||||
|
||||
[[bin]]
|
||||
name = "id"
|
||||
|
|
|
@ -26,7 +26,7 @@ lscolors = { version = "0.12.0", features = ["ansi_term"] }
|
|||
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features = ["entries", "fs"] }
|
||||
once_cell = "1.13.1"
|
||||
atty = "0.2"
|
||||
selinux = { version="0.2", optional = true }
|
||||
selinux = { version="0.3", optional = true }
|
||||
|
||||
[[bin]]
|
||||
name = "ls"
|
||||
|
|
|
@ -16,7 +16,7 @@ path = "src/runcon.rs"
|
|||
[dependencies]
|
||||
clap = { version = "3.2", features = ["wrap_help", "cargo"] }
|
||||
uucore = { version = ">=0.0.9", package="uucore", path="../../uucore", features=["entries", "fs", "perms"] }
|
||||
selinux = { version = "0.2" }
|
||||
selinux = { version = "0.3" }
|
||||
thiserror = { version = "1.0" }
|
||||
libc = { version = "0.2" }
|
||||
|
||||
|
|
|
@ -17,7 +17,7 @@ path = "src/vdir.rs"
|
|||
[dependencies]
|
||||
clap = { version = "3.2", features = ["wrap_help", "cargo", "env"] }
|
||||
uucore = { version=">=0.0.15", package="uucore", path="../../uucore", features=["entries", "fs"] }
|
||||
selinux = { version="0.2", optional = true }
|
||||
selinux = { version="0.3", optional = true }
|
||||
uu_ls = { version = ">=0.0.15", path="../ls"}
|
||||
|
||||
[[bin]]
|
||||
|
|
Loading…
Reference in a new issue