Skip to content

Commit

Permalink
Update FCP, TCP, and Oak dependencies.
Browse files Browse the repository at this point in the history
Change-Id: I290d9ab2bd5777d6c6a93b04723d69e07a3a3342
Fixed: 373676500
  • Loading branch information
bmclarnon committed Oct 17, 2024
1 parent e7e5e34 commit e8e4dea
Show file tree
Hide file tree
Showing 13 changed files with 2,289 additions and 128 deletions.
51 changes: 48 additions & 3 deletions Cargo_no_std.bazel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,12 @@ version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"

[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"

[[package]]
name = "bitflags"
version = "2.6.0"
Expand Down Expand Up @@ -517,7 +523,7 @@ dependencies = [
"arrayvec",
"atomic_refcell",
"base64 0.22.1",
"bitflags",
"bitflags 2.6.0",
"bitmask",
"bitvec",
"byteorder",
Expand Down Expand Up @@ -553,6 +559,7 @@ dependencies = [
"rand_chacha",
"rand_core",
"rangemap",
"regex-lite",
"rlsf",
"rsa",
"self_cell",
Expand All @@ -566,6 +573,7 @@ dependencies = [
"static_assertions",
"strum",
"time",
"uart_16550",
"virtio-drivers",
"wasmi",
"x509-cert",
Expand Down Expand Up @@ -1216,6 +1224,21 @@ version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f60fcc7d6849342eff22c4350c8b9a989ee8ceabc4b481253e8946b9fe83d684"

[[package]]
name = "raw-cpuid"
version = "10.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
dependencies = [
"bitflags 1.3.2",
]

[[package]]
name = "regex-lite"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"

[[package]]
name = "rfc6979"
version = "0.4.0"
Expand Down Expand Up @@ -1583,6 +1606,17 @@ version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"

[[package]]
name = "uart_16550"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4922792855b1bce30997fbaa5418597902c278a92d20dfe348e6f062c3bd861d"
dependencies = [
"bitflags 2.6.0",
"rustversion",
"x86",
]

[[package]]
name = "unicode-ident"
version = "1.0.12"
Expand Down Expand Up @@ -1617,7 +1651,7 @@ version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa40e09453618c7a927c08c5a990497a2954da7c2aaa6c65e0d4f0fc975f6114"
dependencies = [
"bitflags",
"bitflags 2.6.0",
"log",
"zerocopy",
]
Expand Down Expand Up @@ -1704,14 +1738,25 @@ dependencies = [
"spki",
]

[[package]]
name = "x86"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2781db97787217ad2a2845c396a5efe286f87467a5810836db6d74926e94a385"
dependencies = [
"bit_field",
"bitflags 1.3.2",
"raw-cpuid",
]

[[package]]
name = "x86_64"
version = "0.14.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96cb6fd45bfeab6a5055c5bffdb08768bd0c069f1d946debe585bbb380a7c062"
dependencies = [
"bit_field",
"bitflags",
"bitflags 2.6.0",
"rustversion",
"volatile",
]
Expand Down
Loading

0 comments on commit e8e4dea

Please sign in to comment.