-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump xous-rs crate to absorb Send derives on Messages
this is necessary for the smoltcp port
- Loading branch information
Showing
69 changed files
with
292 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,15 +3,15 @@ authors = ["Sean Cross <[email protected]>"] | |
description = "Log server API" | ||
edition = "2018" | ||
name = "xous-api-log" | ||
version = "0.1.47" | ||
version = "0.1.48" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/betrusted-io/xous-core/" | ||
homepage = "https://betrusted.io/xous-book/" | ||
|
||
# Dependency versions enforced by Cargo.lock. | ||
[dependencies] | ||
xous = "0.9.51" | ||
xous-ipc = "0.9.51" | ||
xous = "0.9.52" | ||
xous-ipc = "0.9.52" | ||
log = "0.4.14" | ||
num-derive = {version = "0.3.3", default-features = false} | ||
num-traits = {version = "0.2.14", default-features = false} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,16 +3,16 @@ authors = ["bunnie <[email protected]>"] | |
description = "Xous microkernel OS inter-process name resolution server" | ||
edition = "2018" | ||
name = "xous-api-names" | ||
version = "0.9.49" | ||
version = "0.9.50" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/betrusted-io/xous-core/" | ||
homepage = "https://betrusted.io/" | ||
|
||
# Dependency versions enforced by Cargo.lock. | ||
[dependencies] | ||
log-server = {package = "xous-api-log", version = "0.1.47"} | ||
xous = "0.9.51" | ||
xous-ipc = "0.9.51" | ||
log-server = {package = "xous-api-log", version = "0.1.48"} | ||
xous = "0.9.52" | ||
xous-ipc = "0.9.52" | ||
num-derive = {version = "0.3.3", default-features = false} | ||
num-traits = {version = "0.2.14", default-features = false} | ||
log = "0.4.14" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "xous-api-susres" | ||
version = "0.9.47" | ||
version = "0.9.48" | ||
authors = ["bunnie <[email protected]>"] | ||
edition = "2018" | ||
description = "Manager of suspend/resume operations" | ||
|
@@ -10,10 +10,10 @@ homepage = "https://betrusted.io/xous-book/" | |
|
||
# Dependency versions enforced by Cargo.lock. | ||
[dependencies] | ||
xous = "0.9.51" | ||
xous-ipc = "0.9.51" | ||
log-server = { package = "xous-api-log", version = "0.1.47" } | ||
xous-names = { package = "xous-api-names", version = "0.9.49" } | ||
xous = "0.9.52" | ||
xous-ipc = "0.9.52" | ||
log-server = { package = "xous-api-log", version = "0.1.48" } | ||
xous-names = { package = "xous-api-names", version = "0.9.50" } | ||
log = "0.4.14" | ||
num-derive = {version = "0.3.3", default-features = false} | ||
num-traits = {version = "0.2.14", default-features = false} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,18 @@ authors = ["bunnie <[email protected]>", "Sean Cross <[email protected]>"] | |
description = "Provide high-resolution, non-rollover system time" | ||
edition = "2018" | ||
name = "xous-api-ticktimer" | ||
version = "0.9.47" | ||
version = "0.9.48" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/betrusted-io/xous-core/" | ||
homepage = "https://betrusted.io/xous-book/" | ||
|
||
# Dependency versions enforced by Cargo.lock. | ||
[dependencies] | ||
xous = "0.9.51" | ||
xous-ipc = "0.9.51" | ||
log-server = {package = "xous-api-log", version = "0.1.47"} | ||
susres = {package = "xous-api-susres", version = "0.9.47"} | ||
xous-names = {package = "xous-api-names", version = "0.9.49"} | ||
xous = "0.9.52" | ||
xous-ipc = "0.9.52" | ||
log-server = {package = "xous-api-log", version = "0.1.48"} | ||
susres = {package = "xous-api-susres", version = "0.9.48"} | ||
xous-names = {package = "xous-api-names", version = "0.9.50"} | ||
log = "0.4.14" | ||
rkyv = {version = "0.4.3", default-features = false, features = ["const_generics"]} | ||
num-derive = {version = "0.3.3", default-features = false} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.