Skip to content

Commit 0c52a7a

Browse files
committed
the merge requested pulled multiple other crate versions backwards
this fixes it, hopefully.
1 parent c04cc0e commit 0c52a7a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kernel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Core kernel for Xous, including task switching and memory managem
44
license = "MIT OR Apache-2.0"
55
edition = "2018"
66
name = "xous-kernel"
7-
version = "0.9.18"
7+
version = "0.9.19"
88
resolver = "2"
99

1010
# Dependency versions enforced by Cargo.lock.

xtask/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
122122
"[email protected]", // ticktimer registers with susres to coordinate time continuity across sleeps
123123
"[email protected]", // "well known" service: thread scheduling
124124
].to_vec();
125-
let xous_kernel_remote = "[email protected].18";
125+
let xous_kernel_remote = "[email protected].19";
126126

127127
// ---- extract position independent args ----
128128
let lkey = get_flag("--lkey")?;

xtask/src/verifier.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub fn check_project_consistency() -> Result<(), DynError> {
1111
let check_pkgs = [
1212
// this set updates with kernel API changes
1313
14-
14+
1515
1616
1717

0 commit comments

Comments
 (0)