Skip to content

Commit bc40dcd

Browse files
committed
bump vex-sdk version and allow vex-sdk to be a stdlib dep
1 parent a86a069 commit bc40dcd

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

library/Cargo.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is automatically @generated by Cargo.
22
# It is not intended for manual editing.
3-
version = 3
3+
version = 4
44

55
[[package]]
66
name = "addr2line"
@@ -418,9 +418,9 @@ dependencies = [
418418

419419
[[package]]
420420
name = "vex-sdk"
421-
version = "0.21.0"
421+
version = "0.22.0"
422422
source = "registry+https://github.com/rust-lang/crates.io-index"
423-
checksum = "79ec210898aed247c0fb1ae4834b4648669050ae8275423a1ce5cc3d6f07649a"
423+
checksum = "40b1777b4e4a60f9fed09417dafdc4a6a3393a67df1bd02c3b589770d906cff3"
424424
dependencies = [
425425
"compiler_builtins",
426426
"rustc-std-workspace-core",

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ r-efi = { version = "4.5.0", features = ['rustc-dep-of-std'] }
9191
r-efi-alloc = { version = "1.0.0", features = ['rustc-dep-of-std'] }
9292

9393
[target.'cfg(target_os = "vexos")'.dependencies]
94-
vex-sdk = { version = "0.21.0", features = ['rustc-dep-of-std'] }
94+
vex-sdk = { version = "0.22.0", features = ['rustc-dep-of-std'] }
9595

9696
[features]
9797
backtrace = [

src/tools/tidy/src/deps.rs

+1
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ const PERMITTED_STDLIB_DEPENDENCIES: &[&str] = &[
495495
"shlex",
496496
"unicode-width",
497497
"unwinding",
498+
"vex-sdk",
498499
"wasi",
499500
"windows-sys",
500501
"windows-targets",

0 commit comments

Comments
 (0)