diff --git a/Cargo.lock b/Cargo.lock index 0844e2b46..1d552aae9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "Inflector" @@ -116,6 +116,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" dependencies = [ "cfg-if", + "getrandom 0.2.15", "once_cell", "version_check", "zerocopy", @@ -1271,7 +1272,7 @@ dependencies = [ "hotshot-state-prover", "hotshot-types", "jf-signature 0.2.0", - "marketplace-builder-shared", + "marketplace-builder-shared 0.1.57", "portpicker", "rand 0.8.5", "sequencer", @@ -4067,7 +4068,7 @@ dependencies = [ "hotshot-builder-api", "hotshot-types", "lru 0.12.5", - "marketplace-builder-shared", + "marketplace-builder-shared 0.1.57", "serde", "sha2 0.10.8", "tagged-base64", @@ -6191,7 +6192,7 @@ dependencies = [ "jf-merkle-tree", "jf-signature 0.2.0", "marketplace-builder-core", - "marketplace-builder-shared", + "marketplace-builder-shared 0.1.57", "marketplace-solver", "portpicker", "sequencer", @@ -6208,8 +6209,8 @@ dependencies = [ [[package]] name = "marketplace-builder-core" -version = "0.1.57" -source = "git+https://github.com/EspressoSystems/marketplace-builder-core?tag=0.1.57#cf9d2cbf154809a31bcf2dccc1218ee9c6875f1e" +version = "0.1.58" +source = "git+https://github.com/EspressoSystems/marketplace-builder-core?tag=0.1.58#7df48a9099241c92f4946dd13a9f86d90fb23768" dependencies = [ "anyhow", "async-broadcast", @@ -6221,8 +6222,7 @@ dependencies = [ "hotshot", "hotshot-builder-api", "hotshot-types", - "lru 0.12.5", - "marketplace-builder-shared", + "marketplace-builder-shared 0.1.58", "sha2 0.10.8", "tagged-base64", "tide-disco", @@ -6268,6 +6268,46 @@ dependencies = [ "vec1", ] +[[package]] +name = "marketplace-builder-shared" +version = "0.1.58" +source = "git+https://github.com/EspressoSystems/marketplace-builder-core?tag=0.1.58#7df48a9099241c92f4946dd13a9f86d90fb23768" +dependencies = [ + "anyhow", + "async-broadcast", + "async-lock 3.4.0", + "async-trait", + "bincode", + "chrono", + "committable", + "derive_more 1.0.0", + "either", + "futures", + "hex", + "hotshot", + "hotshot-builder-api", + "hotshot-events-service", + "hotshot-example-types", + "hotshot-task-impls", + "hotshot-testing", + "hotshot-types", + "jf-vid", + "nonempty-collections", + "once_cell", + "quick_cache", + "rand 0.8.5", + "serde", + "sha2 0.10.8", + "surf-disco", + "thiserror 2.0.3", + "tokio", + "tracing", + "tracing-subscriber 0.3.18", + "url", + "vbs", + "vec1", +] + [[package]] name = "marketplace-solver" version = "0.1.0" @@ -7560,7 +7600,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "81bddcdb20abf9501610992b6759a4c888aef7d1a7247ef75e2404275ac24af1" dependencies = [ "anyhow", - "itertools 0.12.1", + "itertools 0.11.0", "proc-macro2", "quote", "syn 2.0.87", @@ -7642,6 +7682,18 @@ dependencies = [ "unsigned-varint 0.8.0", ] +[[package]] +name = "quick_cache" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d7c94f8935a9df96bb6380e8592c70edf497a643f94bd23b2f76b399385dbf4" +dependencies = [ + "ahash 0.8.11", + "equivalent", + "hashbrown 0.14.5", + "parking_lot", +] + [[package]] name = "quinn" version = "0.11.5" @@ -8652,7 +8704,7 @@ dependencies = [ "libp2p", "libp2p-networking", "marketplace-builder-core", - "marketplace-builder-shared", + "marketplace-builder-shared 0.1.57", "marketplace-solver", "num_enum", "parking_lot", @@ -9095,7 +9147,7 @@ version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "03c3c6b7927ffe7ecaa769ee0e3994da3b8cafc8f444578982c83ecb161af917" dependencies = [ - "heck 0.5.0", + "heck 0.4.1", "proc-macro2", "quote", "syn 2.0.87", diff --git a/Cargo.toml b/Cargo.toml index 630d32d08..6af8f7835 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -68,7 +68,7 @@ hotshot = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.82" } # Hotshot imports hotshot-builder-api = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.82" } hotshot-builder-core = { git = "https://github.com/EspressoSystems/marketplace-builder-core", tag = "0.1.57" } -marketplace-builder-core = { git = "https://github.com/EspressoSystems/marketplace-builder-core", tag = "0.1.57" } +marketplace-builder-core = { git = "https://github.com/EspressoSystems/marketplace-builder-core", tag = "0.1.58" } marketplace-builder-shared = { git = "https://github.com/EspressoSystems/marketplace-builder-core", tag = "0.1.57" } hotshot-events-service = { git = "https://github.com/EspressoSystems/hotshot-events-service.git", tag = "0.1.56" } hotshot-orchestrator = { git = "https://github.com/EspressoSystems/hotshot", tag = "0.5.82" }