From 6286b2adf8f072ac99747e4813320a1271b6777b Mon Sep 17 00:00:00 2001 From: clabby Date: Thu, 22 Feb 2024 14:09:00 -0700 Subject: [PATCH] Make versions of packages independent (#36) --- Cargo.toml | 1 - crates/common/Cargo.toml | 2 +- crates/derive/Cargo.toml | 2 +- crates/preimage/Cargo.toml | 2 +- 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7ccd2d7d..97a256d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,6 @@ exclude = ["examples/minimal", "examples/simple-revm", "fpvm-tests/cannon-rs-tes resolver = "2" [workspace.package] -version = "0.0.1" edition = "2021" license = "MIT" authors = ["clabby"] diff --git a/crates/common/Cargo.toml b/crates/common/Cargo.toml index 2f4c0417..e8f9ebb9 100644 --- a/crates/common/Cargo.toml +++ b/crates/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.workspace = true +version = "0.0.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 026ba5f5..c041914c 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.workspace = true +version = "0.0.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/crates/preimage/Cargo.toml b/crates/preimage/Cargo.toml index d865ab99..84d6edb6 100644 --- a/crates/preimage/Cargo.toml +++ b/crates/preimage/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-preimage" description = "Bindings and types for interacting with the PreimageOracle ABI" -version.workspace = true +version = "0.0.1" edition.workspace = true authors.workspace = true license.workspace = true