Skip to content

Commit

Permalink
Update TCP and Oak versions.
Browse files Browse the repository at this point in the history
Fixed: 371270919
Change-Id: I1a3a7ecf42827d321533d60a2f51cbf3b98f8de7
  • Loading branch information
bmclarnon committed Oct 4, 2024
1 parent c39a1fc commit bc05d27
Show file tree
Hide file tree
Showing 7 changed files with 1,533 additions and 41 deletions.
12 changes: 12 additions & 0 deletions Cargo.bazel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,16 @@ version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711"

[[package]]
name = "assert-json-diff"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
dependencies = [
"serde",
"serde_json",
]

[[package]]
name = "assert_cmd"
version = "2.0.15"
Expand Down Expand Up @@ -1139,6 +1149,7 @@ dependencies = [
"aml",
"anyhow",
"arrayvec",
"assert-json-diff",
"assert_cmd",
"assertables",
"async-recursion",
Expand All @@ -1163,6 +1174,7 @@ dependencies = [
"criterion",
"criterion-macro",
"curve25519-dalek",
"derive_builder",
"ecdsa",
"elf",
"env_logger",
Expand Down
85 changes: 85 additions & 0 deletions Cargo_no_std.bazel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,41 @@ dependencies = [
"syn 2.0.71",
]

[[package]]
name = "darling"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
dependencies = [
"darling_core",
"darling_macro",
]

[[package]]
name = "darling_core"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn 2.0.71",
]

[[package]]
name = "darling_macro"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
dependencies = [
"darling_core",
"quote",
"syn 2.0.71",
]

[[package]]
name = "dary_heap"
version = "0.3.6"
Expand Down Expand Up @@ -425,6 +460,37 @@ dependencies = [
"serde",
]

[[package]]
name = "derive_builder"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd33f37ee6a119146a1781d3356a7c26028f83d779b2e04ecd45fdc75c76877b"
dependencies = [
"derive_builder_macro",
]

[[package]]
name = "derive_builder_core"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7431fa049613920234f22c47fdc33e6cf3ee83067091ea4277a3f8c4587aae38"
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn 2.0.71",
]

[[package]]
name = "derive_builder_macro"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4abae7035bf79b9877b779505d8cf3749285b80c43941eda66604841889451dc"
dependencies = [
"derive_builder_core",
"syn 2.0.71",
]

[[package]]
name = "digest"
version = "0.10.7"
Expand Down Expand Up @@ -460,6 +526,7 @@ dependencies = [
"core2",
"coset",
"curve25519-dalek",
"derive_builder",
"ecdsa",
"elf",
"getrandom",
Expand Down Expand Up @@ -586,6 +653,12 @@ version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3ea1ec5f8307826a5b71094dd91fc04d4ae75d5709b20ad351c7fb4815c86ec"

[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"

[[package]]
name = "fragile"
version = "2.0.0"
Expand Down Expand Up @@ -723,6 +796,12 @@ dependencies = [
"zeroize",
]

[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"

[[package]]
name = "indexmap-nostd"
version = "0.4.0"
Expand Down Expand Up @@ -1380,6 +1459,12 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"

[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"

[[package]]
name = "strum"
version = "0.26.3"
Expand Down
115 changes: 115 additions & 0 deletions Cargo_no_std_no_avx.bazel.lock
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,18 @@ dependencies = [
"subtle",
]

[[package]]
name = "ahash"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
dependencies = [
"cfg-if",
"once_cell",
"version_check",
"zerocopy",
]

[[package]]
name = "aml"
version = "0.16.4"
Expand Down Expand Up @@ -316,6 +328,41 @@ dependencies = [
"syn 2.0.75",
]

[[package]]
name = "darling"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
dependencies = [
"darling_core",
"darling_macro",
]

[[package]]
name = "darling_core"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn 2.0.75",
]

[[package]]
name = "darling_macro"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
dependencies = [
"darling_core",
"quote",
"syn 2.0.75",
]

[[package]]
name = "der"
version = "0.7.9"
Expand All @@ -327,6 +374,37 @@ dependencies = [
"zeroize",
]

[[package]]
name = "derive_builder"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd33f37ee6a119146a1781d3356a7c26028f83d779b2e04ecd45fdc75c76877b"
dependencies = [
"derive_builder_macro",
]

[[package]]
name = "derive_builder_core"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7431fa049613920234f22c47fdc33e6cf3ee83067091ea4277a3f8c4587aae38"
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn 2.0.75",
]

[[package]]
name = "derive_builder_macro"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4abae7035bf79b9877b779505d8cf3749285b80c43941eda66604841889451dc"
dependencies = [
"derive_builder_core",
"syn 2.0.75",
]

[[package]]
name = "digest"
version = "0.10.7"
Expand Down Expand Up @@ -356,6 +434,7 @@ dependencies = [
"ciborium",
"coset",
"curve25519-dalek",
"derive_builder",
"ecdsa",
"elf",
"getrandom",
Expand Down Expand Up @@ -465,6 +544,12 @@ version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"

[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"

[[package]]
name = "fragile"
version = "2.0.0"
Expand Down Expand Up @@ -546,6 +631,9 @@ name = "hashbrown"
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
dependencies = [
"ahash",
]

[[package]]
name = "heck"
Expand Down Expand Up @@ -598,6 +686,12 @@ dependencies = [
"zeroize",
]

[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"

[[package]]
name = "indexmap-nostd"
version = "0.4.0"
Expand Down Expand Up @@ -709,6 +803,15 @@ dependencies = [
"autocfg",
]

[[package]]
name = "once_cell"
version = "1.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "82881c4be219ab5faaf2ad5e5e5ecdff8c66bd7402ca3160975c93b24961afd1"
dependencies = [
"portable-atomic",
]

[[package]]
name = "opaque-debug"
version = "0.3.1"
Expand Down Expand Up @@ -787,6 +890,12 @@ dependencies = [
"universal-hash",
]

[[package]]
name = "portable-atomic"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc9c68a3f6da06753e9335d63e27f6b9754dd1920d941135b7ea8224f141adb2"

[[package]]
name = "ppv-lite86"
version = "0.2.20"
Expand Down Expand Up @@ -1080,6 +1189,12 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"

[[package]]
name = "strsim"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"

[[package]]
name = "strum"
version = "0.26.3"
Expand Down
12 changes: 6 additions & 6 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -129,9 +129,9 @@ http_archive(

http_archive(
name = "trusted_computations_platform",
sha256 = "f28ce904eb88a30a9feceabf71a3ba2d0c3d1ed5f667e3f0a7acb3aa179c6269",
strip_prefix = "trusted-computations-platform-40857072db87720f01800491f575133cea1699ae",
url = "https://github.com/google-parfait/trusted-computations-platform/archive/40857072db87720f01800491f575133cea1699ae.tar.gz",
sha256 = "69b836d59c44d788386ff866d243bca6bfb73abe928aaed936fd8567ac248590",
strip_prefix = "trusted-computations-platform-e021906a0fa0331e06c16785395e67bdf4f1585f",
url = "https://github.com/google-parfait/trusted-computations-platform/archive/e021906a0fa0331e06c16785395e67bdf4f1585f.tar.gz",
)

http_archive(
Expand All @@ -151,9 +151,9 @@ git_repository(

http_archive(
name = "oak",
sha256 = "946dcec0c5e40a12e2d7519582e0ed0959952b6f4c60ebda9da2127ff7ab0681",
strip_prefix = "oak-ef579fe162b1a511a69237845135e80728f5d000",
url = "https://github.com/project-oak/oak/archive/ef579fe162b1a511a69237845135e80728f5d000.tar.gz",
sha256 = "386036ae2518bcbd1f4f6887f2294dff4ca85dce51ad032676c5e38a06520cc8",
strip_prefix = "oak-079cc18b68f34c1fcdf67ae6c6f6b95dce3b1129",
url = "https://github.com/project-oak/oak/archive/079cc18b68f34c1fcdf67ae6c6f6b95dce3b1129.tar.gz",
)

load("@oak//bazel:repositories.bzl", "oak_toolchain_repositories")
Expand Down
Loading

0 comments on commit bc05d27

Please sign in to comment.