mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-11 09:41:37 +00:00
Bump tokio from 1.28.0 to 1.29.0 in /src/agent (#3240)
* Bump tokio from 1.28.0 to 1.29.0 in /src/agent Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.28.0 to 1.29.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.28.0...tokio-1.29.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update dependencies list for ARM64 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: George Pollard <gpollard@microsoft.com>
This commit is contained in:
parent
9d9df7c6cb
commit
f4774c2f44
23
src/agent/Cargo.lock
generated
23
src/agent/Cargo.lock
generated
@ -690,7 +690,7 @@ dependencies = [
|
|||||||
"bitflags",
|
"bitflags",
|
||||||
"crossterm_winapi",
|
"crossterm_winapi",
|
||||||
"libc",
|
"libc",
|
||||||
"mio 0.8.5",
|
"mio 0.8.8",
|
||||||
"parking_lot 0.12.1",
|
"parking_lot 0.12.1",
|
||||||
"signal-hook",
|
"signal-hook",
|
||||||
"signal-hook-mio",
|
"signal-hook-mio",
|
||||||
@ -1805,9 +1805,9 @@ checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libc"
|
name = "libc"
|
||||||
version = "0.2.141"
|
version = "0.2.147"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
|
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "libclusterfuzz"
|
name = "libclusterfuzz"
|
||||||
@ -2000,14 +2000,14 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "mio"
|
name = "mio"
|
||||||
version = "0.8.5"
|
version = "0.8.8"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
|
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"log",
|
"log",
|
||||||
"wasi 0.11.0+wasi-snapshot-preview1",
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
||||||
"windows-sys 0.42.0",
|
"windows-sys 0.48.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -2125,7 +2125,7 @@ dependencies = [
|
|||||||
"inotify",
|
"inotify",
|
||||||
"kqueue",
|
"kqueue",
|
||||||
"libc",
|
"libc",
|
||||||
"mio 0.8.5",
|
"mio 0.8.8",
|
||||||
"walkdir",
|
"walkdir",
|
||||||
"windows-sys 0.42.0",
|
"windows-sys 0.42.0",
|
||||||
]
|
]
|
||||||
@ -3194,7 +3194,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
|
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"mio 0.8.5",
|
"mio 0.8.8",
|
||||||
"signal-hook",
|
"signal-hook",
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -3619,14 +3619,15 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "tokio"
|
name = "tokio"
|
||||||
version = "1.28.0"
|
version = "1.29.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c3c786bf8134e5a3a166db9b29ab8f48134739014a3eca7bc6bfa95d673b136f"
|
checksum = "374442f06ee49c3a28a8fc9f01a2596fed7559c6b99b31279c3261778e77d84f"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"autocfg",
|
"autocfg",
|
||||||
|
"backtrace",
|
||||||
"bytes",
|
"bytes",
|
||||||
"libc",
|
"libc",
|
||||||
"mio 0.8.5",
|
"mio 0.8.8",
|
||||||
"num_cpus",
|
"num_cpus",
|
||||||
"parking_lot 0.12.1",
|
"parking_lot 0.12.1",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
|
@ -22,7 +22,7 @@ reqwest = { version = "0.11", features = [
|
|||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
storage-queue = { path = "../storage-queue" }
|
storage-queue = { path = "../storage-queue" }
|
||||||
tokio = { version = "1.28", features = ["full"] }
|
tokio = { version = "1.29", features = ["full"] }
|
||||||
url = { version = "2.4", features = ["serde"] }
|
url = { version = "2.4", features = ["serde"] }
|
||||||
uuid = { version = "1.4", features = ["serde", "v4"] }
|
uuid = { version = "1.4", features = ["serde", "v4"] }
|
||||||
clap = { version = "4", features = ["derive", "cargo"] }
|
clap = { version = "4", features = ["derive", "cargo"] }
|
||||||
|
@ -45,7 +45,7 @@ stacktrace-parser = { path = "../stacktrace-parser" }
|
|||||||
storage-queue = { path = "../storage-queue" }
|
storage-queue = { path = "../storage-queue" }
|
||||||
tempfile = "3.6.0"
|
tempfile = "3.6.0"
|
||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
tokio = { version = "1.28", features = ["full"] }
|
tokio = { version = "1.29", features = ["full"] }
|
||||||
tokio-util = { version = "0.7", features = ["full"] }
|
tokio-util = { version = "0.7", features = ["full"] }
|
||||||
tokio-stream = "0.1"
|
tokio-stream = "0.1"
|
||||||
tui = { package = "ratatui", version = "0.21.0", default-features = false, features = ['crossterm']}
|
tui = { package = "ratatui", version = "0.21.0", default-features = false, features = ['crossterm']}
|
||||||
|
@ -15,5 +15,5 @@ chrono = { version = "0.4", default-features = false, features = [
|
|||||||
lazy_static = "1.4"
|
lazy_static = "1.4"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
tokio = { version = "1.28", features = ["full"] }
|
tokio = { version = "1.29", features = ["full"] }
|
||||||
uuid = { version = "1.4", features = ["serde", "v4"] }
|
uuid = { version = "1.4", features = ["serde", "v4"] }
|
||||||
|
@ -31,7 +31,7 @@ serde = "1.0"
|
|||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
serde_derive = "1.0"
|
serde_derive = "1.0"
|
||||||
tokio = { version = "1.28", features = ["full"] }
|
tokio = { version = "1.29", features = ["full"] }
|
||||||
tokio-stream = { version = "0.1", features = ["fs", "time", "tokio-util"] }
|
tokio-stream = { version = "0.1", features = ["fs", "time", "tokio-util"] }
|
||||||
tokio-util = { version = "0.7", features = ["full"] }
|
tokio-util = { version = "0.7", features = ["full"] }
|
||||||
uuid = { version = "1.4", features = ["serde", "v4"] }
|
uuid = { version = "1.4", features = ["serde", "v4"] }
|
||||||
|
@ -19,5 +19,5 @@ reqwest = { version = "0.11", features = [
|
|||||||
thiserror = "1.0"
|
thiserror = "1.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "1.28", features = ["macros"] }
|
tokio = { version = "1.29", features = ["macros"] }
|
||||||
wiremock = "0.5"
|
wiremock = "0.5"
|
||||||
|
@ -26,6 +26,6 @@ serde = { version = "1.0", features = ["derive"] }
|
|||||||
serde_derive = "1.0"
|
serde_derive = "1.0"
|
||||||
serde_json = "1.0"
|
serde_json = "1.0"
|
||||||
bincode = "1.3"
|
bincode = "1.3"
|
||||||
tokio = { version = "1.28", features = ["full"] }
|
tokio = { version = "1.29", features = ["full"] }
|
||||||
queue-file = "1.4"
|
queue-file = "1.4"
|
||||||
uuid = { version = "1.4", features = ["serde", "v4"] }
|
uuid = { version = "1.4", features = ["serde", "v4"] }
|
||||||
|
@ -105,6 +105,7 @@ linux-vdso.so.1" \
|
|||||||
libc.so.6
|
libc.so.6
|
||||||
libdl.so.2
|
libdl.so.2
|
||||||
libgcc_s.so.1
|
libgcc_s.so.1
|
||||||
|
libm.so.6
|
||||||
libpthread.so.0
|
libpthread.so.0
|
||||||
linux-vdso.so.1" \
|
linux-vdso.so.1" \
|
||||||
\
|
\
|
||||||
|
Loading…
x
Reference in New Issue
Block a user