Merge pull request #5262 from uutils/renovate/redox_syscall-0.x

chore(deps): update rust crate redox_syscall to 0.4
This commit is contained in:
Daniel Hofstetter 2023-09-08 09:57:35 +02:00 committed by GitHub
commit 7a26f94399
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 5 deletions

17
Cargo.lock generated
View file

@ -843,7 +843,7 @@ checksum = "d4029edd3e734da6fe05b6cd7bd2960760a616bd2ddd0d59a0124746d6272af0"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"libc", "libc",
"redox_syscall", "redox_syscall 0.3.5",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
@ -1510,7 +1510,7 @@ checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"libc", "libc",
"redox_syscall", "redox_syscall 0.3.5",
"smallvec", "smallvec",
"windows-targets 0.48.0", "windows-targets 0.48.0",
] ]
@ -1743,6 +1743,15 @@ dependencies = [
"bitflags 1.3.2", "bitflags 1.3.2",
] ]
[[package]]
name = "redox_syscall"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded0bce2d41cc3c57aefa284708ced249a64acb01745dbbe72bd78610bfd644c"
dependencies = [
"bitflags 1.3.2",
]
[[package]] [[package]]
name = "reference-counted-singleton" name = "reference-counted-singleton"
version = "0.1.2" version = "0.1.2"
@ -2115,7 +2124,7 @@ checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"fastrand", "fastrand",
"redox_syscall", "redox_syscall 0.3.5",
"rustix 0.38.8", "rustix 0.38.8",
"windows-sys 0.48.0", "windows-sys 0.48.0",
] ]
@ -3085,7 +3094,7 @@ version = "0.0.21"
dependencies = [ dependencies = [
"clap", "clap",
"libc", "libc",
"redox_syscall", "redox_syscall 0.4.0",
"uucore", "uucore",
] ]

View file

@ -309,7 +309,7 @@ quick-error = "2.0.1"
rand = { version = "0.8", features = ["small_rng"] } rand = { version = "0.8", features = ["small_rng"] }
rand_core = "0.6" rand_core = "0.6"
rayon = "1.7" rayon = "1.7"
redox_syscall = "0.3" redox_syscall = "0.4"
regex = "1.9.5" regex = "1.9.5"
rstest = "0.18.2" rstest = "0.18.2"
rust-ini = "0.19.0" rust-ini = "0.19.0"