Skip to content

Commit

Permalink
deps: Updated Rust crates
Browse files Browse the repository at this point in the history
This doesn't update chacha20 to 0.9.0, as that caused dependency
issues that might be fixed more easily by updating how we import
and build crates.

Signed-off-by: SlyMarbo <the.sly.marbo@googlemail.com>
  • Loading branch information
SlyMarbo committed Mar 5, 2022
1 parent c2b212a commit 1687abb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions bazel/deps/rust.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -99,11 +99,11 @@ RUST_CRATES = [
),
crate.spec(
name = "libc",
semver = "=0.2.117",
semver = "=0.2.119",
),
crate.spec(
name = "linked_list_allocator",
semver = "=0.9.0",
semver = "=0.9.1",
),
crate.spec(
name = "llvm-tools",
Expand All @@ -119,7 +119,7 @@ RUST_CRATES = [
),
crate.spec(
name = "pic8259",
semver = "=0.10.1",
semver = "=0.10.2",
),
crate.spec(
name = "raw-cpuid",
Expand All @@ -131,12 +131,12 @@ RUST_CRATES = [
),
crate.spec(
name = "serde",
semver = "=1.0.116",
semver = "=1.0.136",
features = ["alloc"],
),
crate.spec(
name = "sha2",
semver = "=0.10.1",
semver = "=0.10.2",
features = ["force-soft"],
),
crate.spec(
Expand All @@ -145,11 +145,11 @@ RUST_CRATES = [
),
crate.spec(
name = "thiserror",
semver = "=1.0.16",
semver = "=1.0.30",
),
crate.spec(
name = "toml",
semver = "=0.5.6",
semver = "=0.5.8",
),
crate.spec(
name = "usize_conversions",
Expand All @@ -161,11 +161,11 @@ RUST_CRATES = [
),
crate.spec(
name = "x86_64",
semver = "=0.14.7",
semver = "=0.14.8",
),
crate.spec(
name = "xmas-elf",
semver = "=0.6.2",
semver = "=0.8.0",
),
crate.spec(
name = "zero",
Expand Down
2 changes: 1 addition & 1 deletion bazel/third_party/smoltcp.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ rust_library(
deps = [
"@crates__bitflags__1_3_2//:bitflags",
"@crates__byteorder__1_4_3//:byteorder",
"@crates__libc__0_2_117//:libc",
"@crates__libc__0_2_119//:libc",
"@crates__managed__0_8_0//:managed",
"@rand_core",
],
Expand Down
2 changes: 1 addition & 1 deletion bazel/third_party/uart_16550.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ rust_library(
name = "uart_16550",
deps = [
"@crates__bitflags__1_3_2//:bitflags",
"@crates__x86_64__0_14_7//:x86_64",
"@crates__x86_64__0_14_8//:x86_64",
],
srcs = glob(["**/*.rs"]),
crate_root = "src/lib.rs",
Expand Down

0 comments on commit 1687abb

Please sign in to comment.