Skip to content

Commit 86f895d

Browse files
Merge pull request #271 from microsoft/main
Fork Sync: Update from parent repository
2 parents 492ff4e + f62fe0c commit 86f895d

File tree

10 files changed

+38
-53
lines changed

10 files changed

+38
-53
lines changed

src/agent/Cargo.lock

Lines changed: 16 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/agent/onefuzz-agent/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ serde_json = "1.0"
2424
storage-queue = { path = "../storage-queue" }
2525
tokio = { version = "1.24", features = ["full"] }
2626
url = { version = "2.3", features = ["serde"] }
27-
uuid = { version = "0.8", features = ["serde", "v4"] }
27+
uuid = { version = "1.3", features = ["serde", "v4"] }
2828
clap = { version = "4", features = ["derive", "cargo"] }
2929
reqwest-retry = { path = "../reqwest-retry" }
3030
onefuzz-telemetry = { path = "../onefuzz-telemetry" }
3131
backtrace = "0.3"
3232
ipc-channel = { git = "https://github.com/servo/ipc-channel", rev = "7f432aa" }
33-
dynamic-library = {path = "../dynamic-library" }
33+
dynamic-library = { path = "../dynamic-library" }
3434

3535

3636
[target.'cfg(target_family = "unix")'.dependencies]

src/agent/onefuzz-task/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ tokio-util = { version = "0.7", features = ["full"] }
5050
tokio-stream = "0.1"
5151
tui = { version = "0.19", default-features = false, features = ['crossterm'] }
5252
url = { version = "2.3", features = ["serde"] }
53-
uuid = { version = "0.8", features = ["serde", "v4"] }
53+
uuid = { version = "1.3", features = ["serde", "v4"] }
5454
chrono = { version = "0.4", default-features = false, features = [
5555
"clock",
5656
"std",

src/agent/onefuzz-telemetry/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ license = "MIT"
88
[dependencies]
99
anyhow = "1.0"
1010
appinsights = { version = "0.2.3" }
11-
chrono = { version = "0.4", default-features = false, features = ["clock", "std"] }
11+
chrono = { version = "0.4", default-features = false, features = [
12+
"clock",
13+
"std",
14+
] }
1215
lazy_static = "1.4"
1316
log = "0.4"
1417
serde = { version = "1.0", features = ["derive"] }
1518
tokio = { version = "1.24", features = ["full"] }
16-
uuid = { version = "0.8", features = ["serde", "v4"] }
19+
uuid = { version = "1.3", features = ["serde", "v4"] }

src/agent/onefuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ serde_derive = "1.0"
3434
tokio = { version = "1.24", features = ["full"] }
3535
tokio-stream = { version = "0.1", features = ["fs", "time", "tokio-util"] }
3636
tokio-util = { version = "0.7", features = ["full"] }
37-
uuid = { version = "0.8", features = ["serde", "v4"] }
37+
uuid = { version = "1.3", features = ["serde", "v4"] }
3838
urlparse = "0.7"
3939
url-escape = "0.1.0"
4040
storage-queue = { path = "../storage-queue" }

src/agent/onefuzz/src/auth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ impl ClientCredentials {
137137
let response = reqwest::Client::new()
138138
.post(url)
139139
.form(&[
140-
("client_id", self.client_id.to_hyphenated().to_string()),
140+
("client_id", self.client_id.hyphenated().to_string()),
141141
("client_secret", self.client_secret.expose_ref().to_string()),
142142
("grant_type", "client_credentials".into()),
143143
("tenant", authority),

src/agent/onefuzz/src/expand.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,12 +331,12 @@ impl<'a> Expand<'a> {
331331
}
332332

333333
pub fn task_id(self, arg: &Uuid) -> Self {
334-
let value = arg.to_hyphenated().to_string();
334+
let value = arg.hyphenated().to_string();
335335
self.set_value(PlaceHolder::TaskId, ExpandedValue::Scalar(value))
336336
}
337337

338338
pub fn job_id(self, arg: &Uuid) -> Self {
339-
let value = arg.to_hyphenated().to_string();
339+
let value = arg.hyphenated().to_string();
340340
self.set_value(PlaceHolder::JobId, ExpandedValue::Scalar(value))
341341
}
342342

src/agent/storage-queue/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ serde_json = "1.0"
2828
bincode = "1.3"
2929
tokio = { version = "1.24", features = ["full"] }
3030
queue-file = "1.4"
31-
uuid = { version = "0.8", features = ["serde", "v4"] }
31+
uuid = { version = "1.3", features = ["serde", "v4"] }

src/proxy-manager/Cargo.lock

Lines changed: 8 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/proxy-manager/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ tokio = { version = "1.27", features = [
2929
url = { version = "2.3", features = ["serde"] }
3030
reqwest-retry = { path = "../agent/reqwest-retry" }
3131
onefuzz-telemetry = { path = "../agent/onefuzz-telemetry" }
32-
uuid = "0.8"
32+
uuid = { version = "1.3", features = ["serde"] }
3333
log = "0.4"
3434
tempfile = "3.4.0"

0 commit comments

Comments
 (0)