Skip to content

Commit

Permalink
chore: workspace versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalakkal authored and jonathanpwang committed Mar 20, 2024
1 parent bec4dce commit 62d4677
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 9 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
[workspace.package]
version = "0.1.1"
edition = "2021"
license = "MIT"

[workspace]
members = ["circuit", "sdk", "sdk-derive"]
resolver = "2"
Expand Down
7 changes: 4 additions & 3 deletions circuit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
7 changes: 4 additions & 3 deletions sdk-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down
7 changes: 4 additions & 3 deletions sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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]
Expand Down

0 comments on commit 62d4677

Please sign in to comment.