From 62d4677b864ad212b59eacfb02d869469e353bea Mon Sep 17 00:00:00 2001 From: roshan <19766713+rpalakkal@users.noreply.github.com> Date: Wed, 20 Mar 2024 15:34:53 -0400 Subject: [PATCH] chore: workspace versioning --- Cargo.toml | 5 +++++ circuit/Cargo.toml | 7 ++++--- sdk-derive/Cargo.toml | 7 ++++--- sdk/Cargo.toml | 7 ++++--- 4 files changed, 17 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3fd7c6f..94aafa7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,8 @@ +[workspace.package] +version = "0.1.1" +edition = "2021" +license = "MIT" + [workspace] members = ["circuit", "sdk", "sdk-derive"] resolver = "2" diff --git a/circuit/Cargo.toml b/circuit/Cargo.toml index 50474c1..4dd034e 100644 --- a/circuit/Cargo.toml +++ b/circuit/Cargo.toml @@ -1,9 +1,10 @@ [package] name = "axiom-circuit" -version = "0.1.1" -edition = "2021" description = "Lower-level API for writing Axiom compute circuits" -license = "MIT" + +version.workspace = true +edition.workspace = true +license.workspace = true # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/sdk-derive/Cargo.toml b/sdk-derive/Cargo.toml index 3a30ae2..6788986 100644 --- a/sdk-derive/Cargo.toml +++ b/sdk-derive/Cargo.toml @@ -1,10 +1,11 @@ [package] name = "axiom-sdk-derive" -version = "0.1.0" -edition = "2021" -license = "MIT" description = "Procedural macros for writing Axiom compute functions with axiom-sdk" +version.workspace = true +edition.workspace = true +license.workspace = true + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 02951b9..8668262 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,11 +1,12 @@ [package] name = "axiom-sdk" -version = "0.1.0" -edition = "2021" -license = "MIT" description = "User-friendly API for writing Axiom compute circuits" readme = "../readme.md" +version.workspace = true +edition.workspace = true +license.workspace = true + # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies]