Skip to content

Commit da402c8

Browse files
authored
Merge branch 'main' into test-empty
2 parents 2783aa2 + ce554dd commit da402c8

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

build.ps1

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,10 +112,6 @@ if ($null -ne $packageType) {
112112
}
113113
}
114114

115-
if ($IsLinux -and (Test-Path /etc/mariner-release)) {
116-
tdnf install -y openssl-devel
117-
}
118-
119115
$BuildToolsPath = "${env:ProgramFiles(x86)}\Microsoft Visual Studio\2022\BuildTools\VC\Tools\MSVC"
120116

121117
& $rustup default stable

dsc/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ dsc_lib = { path = "../dsc_lib" }
2020
indicatif = { version = "0.17" }
2121
jsonschema = "0.18"
2222
path-absolutize = { version = "3.1.1" }
23+
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
2324
schemars = { version = "0.8.12" }
2425
serde = { version = "1.0", features = ["derive"] }
2526
serde_json = { version = "1.0", features = ["preserve_order"] }

dsc_lib/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,10 @@ base64 = "0.22"
88
chrono = { version = "0.4.26" }
99
derive_builder ="0.20"
1010
indicatif = { version = "0.17" }
11-
jsonschema = "0.17"
11+
jsonschema = "0.18"
1212
num-traits = "0.2"
1313
regex = "1.7"
14+
reqwest = { version = "0.12", features = ["rustls-tls"], default-features = false }
1415
schemars = { version = "0.8.12", features = ["preserve_order"] }
1516
serde = { version = "1.0", features = ["derive"] }
1617
serde_json = { version = "1.0", features = ["preserve_order"] }

0 commit comments

Comments
 (0)