From 9226600325c3bde341c5176897704164a57bd052 Mon Sep 17 00:00:00 2001 From: refcell Date: Wed, 20 Nov 2024 14:39:40 -0500 Subject: [PATCH] chore: minor release' (#833) --- Cargo.lock | 26 ++++++++++++------------- Cargo.toml | 16 +++++++-------- crates/derive/Cargo.toml | 2 +- crates/driver/Cargo.toml | 2 +- crates/executor/Cargo.toml | 2 +- crates/mpt/Cargo.toml | 2 +- crates/proof-sdk/common-proc/Cargo.toml | 2 +- crates/proof-sdk/common/Cargo.toml | 2 +- crates/proof-sdk/preimage/Cargo.toml | 2 +- crates/proof-sdk/proof/Cargo.toml | 2 +- 10 files changed, 29 insertions(+), 29 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ba962057..1912dc618 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2246,9 +2246,9 @@ dependencies = [ [[package]] name = "itoa" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a73e9fe3c49d7afb2ace819fa181a287ce54a0983eda4e0eb05c22f82ffe534" +checksum = "540654e97a3f4470a492cd30ff187bc95d89557a903a2bbf112e2fae98104ef2" [[package]] name = "jobserver" @@ -2335,7 +2335,7 @@ dependencies = [ [[package]] name = "kona-common" -version = "0.0.5" +version = "0.1.0" dependencies = [ "cfg-if", "linked_list_allocator", @@ -2344,7 +2344,7 @@ dependencies = [ [[package]] name = "kona-common-proc" -version = "0.0.6" +version = "0.1.0" dependencies = [ "anyhow", "cfg-if", @@ -2356,7 +2356,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.7" +version = "0.1.0" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2381,7 +2381,7 @@ dependencies = [ [[package]] name = "kona-driver" -version = "0.0.1" +version = "0.1.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2398,7 +2398,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.0.6" +version = "0.1.0" dependencies = [ "alloy-consensus", "alloy-eips", @@ -2461,7 +2461,7 @@ dependencies = [ [[package]] name = "kona-mpt" -version = "0.0.7" +version = "0.1.0" dependencies = [ "alloy-consensus", "alloy-primitives", @@ -2484,7 +2484,7 @@ dependencies = [ [[package]] name = "kona-preimage" -version = "0.0.5" +version = "0.1.0" dependencies = [ "alloy-primitives", "async-trait", @@ -2497,7 +2497,7 @@ dependencies = [ [[package]] name = "kona-proof" -version = "0.0.1" +version = "0.1.0" dependencies = [ "alloy-consensus", "alloy-eips", @@ -3539,7 +3539,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "sync_wrapper 1.0.1", + "sync_wrapper 1.0.2", "system-configuration", "tokio", "tokio-native-tls", @@ -4316,9 +4316,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sync_wrapper" -version = "1.0.1" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" dependencies = [ "futures-core", ] diff --git a/Cargo.toml b/Cargo.toml index b9882b160..661e4a017 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,15 +62,15 @@ lto = "fat" [workspace.dependencies] # Workspace -kona-mpt = { path = "crates/mpt", version = "0.0.7", default-features = false } +kona-mpt = { path = "crates/mpt", version = "0.1.0", default-features = false } kona-client = { path = "bin/client", version = "0.1.0", default-features = false } -kona-derive = { path = "crates/derive", version = "0.0.7", default-features = false } -kona-driver = { path = "crates/driver", version = "0.0.1", default-features = false } -kona-executor = { path = "crates/executor", version = "0.0.6", default-features = false } -kona-common = { path = "crates/proof-sdk/common", version = "0.0.5", default-features = false } -kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.0.6", default-features = false } -kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.0.5", default-features = false } -kona-proof = { path = "crates/proof-sdk/proof", version = "0.0.1", default-features = false } +kona-derive = { path = "crates/derive", version = "0.1.0", default-features = false } +kona-driver = { path = "crates/driver", version = "0.1.0", default-features = false } +kona-executor = { path = "crates/executor", version = "0.1.0", default-features = false } +kona-proof = { path = "crates/proof-sdk/proof", version = "0.1.0", default-features = false } +kona-common = { path = "crates/proof-sdk/common", version = "0.1.0", default-features = false } +kona-preimage = { path = "crates/proof-sdk/preimage", version = "0.1.0", default-features = false } +kona-common-proc = { path = "crates/proof-sdk/common-proc", version = "0.1.0", default-features = false } # Alloy alloy-rlp = { version = "0.3.9", default-features = false } diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index d89e267e8..e9c27c7b1 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-derive" description = "A no_std derivation pipeline implementation for the OP Stack" -version = "0.0.7" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/driver/Cargo.toml b/crates/driver/Cargo.toml index 434738988..dd37b78b8 100644 --- a/crates/driver/Cargo.toml +++ b/crates/driver/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-driver" description = "A no_std derivation pipeline driver" -version = "0.0.1" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index 2ba14a487..3f440d9c2 100644 --- a/crates/executor/Cargo.toml +++ b/crates/executor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-executor" description = "An no_std implementation of a stateless L2 block executor for the OP Stack." -version = "0.0.6" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/mpt/Cargo.toml b/crates/mpt/Cargo.toml index 7139c915f..292424f94 100644 --- a/crates/mpt/Cargo.toml +++ b/crates/mpt/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-mpt" description = "Utilities for interacting with and iterating through a merkle patricia trie" -version = "0.0.7" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/common-proc/Cargo.toml b/crates/proof-sdk/common-proc/Cargo.toml index 2c99ee0bd..b16ce7e2a 100644 --- a/crates/proof-sdk/common-proc/Cargo.toml +++ b/crates/proof-sdk/common-proc/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-common-proc" description = "Proc macro extension for the `kona-common` crate." -version = "0.0.6" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/common/Cargo.toml b/crates/proof-sdk/common/Cargo.toml index bd553a2cc..f4a6894cb 100644 --- a/crates/proof-sdk/common/Cargo.toml +++ b/crates/proof-sdk/common/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-common" description = "Common traits and system interfaces for developing client programs on top of Fault Proof VMs." -version = "0.0.5" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/preimage/Cargo.toml b/crates/proof-sdk/preimage/Cargo.toml index 4e6df2eea..532eacc5c 100644 --- a/crates/proof-sdk/preimage/Cargo.toml +++ b/crates/proof-sdk/preimage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-preimage" description = "Bindings and types for interacting with the PreimageOracle ABI" -version = "0.0.5" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/proof-sdk/proof/Cargo.toml b/crates/proof-sdk/proof/Cargo.toml index fc7732164..b096ca7da 100644 --- a/crates/proof-sdk/proof/Cargo.toml +++ b/crates/proof-sdk/proof/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-proof" description = "OP Stack Proof SDK" -version = "0.0.1" +version = "0.1.0" edition.workspace = true authors.workspace = true license.workspace = true