Skip to content

Commit 1ae176d

Browse files
author
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
remove unncessary static_vcruntime crate use
1 parent 17f2ead commit 1ae176d

File tree

9 files changed

+0
-25
lines changed

9 files changed

+0
-25
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,6 @@ which = { version = "8.0" }
208208
# build-only dependencies
209209
# dsc-lib, dsc-lib-registry, sshdconfig, tree-sitter-dscexpression, tree-sitter-ssh-server-config
210210
cc = { version = "1.2" }
211-
# registry, dsc-lib-registry
212-
static_vcruntime = { version = "2.0" }
213211

214212
# test-only dependencies
215213
# dsc-lib-jsonschema

archive/ntreg/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,3 @@ thiserror = "1.0"
2929

3030
[target.'cfg(onecore)'.dependencies]
3131
pal = { path = "../pal" }
32-
33-
[build-dependencies]
34-
static_vcruntime = "2.0"

archive/ntreg/build.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@ fn main() {
77
println!("cargo:rerun-if-changed=build.rs");
88
println!("cargo:rustc-link-lib=onecore_apiset");
99
println!("cargo:rustc-link-lib=onecoreuap_apiset");
10-
static_vcruntime::metabuild();
1110
}
1211

1312
#[cfg(not(onecore))]
1413
fn main() {
1514
println!("cargo:rerun-if-changed=build.rs");
16-
static_vcruntime::metabuild();
1715
}

archive/registry/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,3 @@ serde_json = { version = "1.0", features = ["preserve_order"] }
2424

2525
[target.'cfg(onecore)'.dependencies]
2626
pal = { path = "../pal" }
27-
28-
[build-dependencies]
29-
static_vcruntime = "2.0"

archive/registry/build.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@ fn main() {
77
println!("cargo:rerun-if-changed=build.rs");
88
println!("cargo:rustc-link-lib=onecore_apiset");
99
println!("cargo:rustc-link-lib=onecoreuap_apiset");
10-
static_vcruntime::metabuild();
1110
}
1211

1312
#[cfg(not(onecore))]
1413
fn main() {
1514
// Prevent this build script from rerunning unnecessarily.
1615
println!("cargo:rerun-if-changed=build.rs");
17-
static_vcruntime::metabuild();
1816
}

lib/dsc-lib-registry/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,4 @@ tracing-subscriber = { workspace = true }
2424
utfx = { workspace = true }
2525

2626
[build-dependencies]
27-
static_vcruntime = { workspace = true }
2827
cc = { workspace = true }

resources/registry/Cargo.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,3 @@ tracing-subscriber = { workspace = true }
2727
utfx = { workspace = true }
2828
# workspace crate dependencies
2929
dsc-lib-registry = { workspace = true }
30-
31-
[build-dependencies]
32-
static_vcruntime = { workspace = true }

resources/registry/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@
44
fn main() {
55
// Prevent this build script from rerunning unnecessarily.
66
println!("cargo:rerun-if-changed=build.rs");
7-
static_vcruntime::metabuild();
87
}

0 commit comments

Comments
 (0)