Skip to content

Commit

Permalink
use version from workspace (#350)
Browse files Browse the repository at this point in the history
Using version from workspace for all the programs inside `solana`
folder.
  • Loading branch information
dhruvja authored Jun 26, 2024
1 parent 092d6cc commit 072fb5c
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace.package]
version = "0.0.2"
version = "0.0.3"
authors = ["Michal Nazarewicz <mina86@mina86.com>", "Dhruv D Jain <dhruv@iamsizzling.com>"]
edition = "2021"
rust-version = "1.71.0"
Expand Down
2 changes: 1 addition & 1 deletion solana/allocator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "solana-allocator"
authors = ["Michal Nazarewicz <mina86@mina86.com>"]
version = "0.0.0"
edition = "2021"
version.workspace = true

[target.'cfg(target_os = "solana")'.dependencies]
bytemuck.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion solana/restaking/programs/restaking/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "restaking"
version = "0.1.0"
description = "Created with Anchor"
edition = "2021"
version.workspace = true

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
2 changes: 1 addition & 1 deletion solana/signature-verifier/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "solana-signature-verifier"
authors = ["Michal Nazarewicz <mina86@mina86.com>"]
version = "0.0.0"
edition = "2021"
version.workspace = true

[lib]
name = "sigverify"
Expand Down
2 changes: 1 addition & 1 deletion solana/solana-ibc/programs/solana-ibc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "solana-ibc"
version = "0.1.0"
description = "Created with Anchor"
edition = "2021"
version.workspace = true

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
2 changes: 1 addition & 1 deletion solana/trie-example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "solana-trie-example"
authors = ["Michal Nazarewicz <mina86@mina86.com>"]
version = "0.0.0"
edition = "2021"
version.workspace = true

[lib]
name = "trie"
Expand Down
2 changes: 1 addition & 1 deletion solana/trie/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "solana-trie"
authors = ["Michal Nazarewicz <mina86@mina86.com>"]
version = "0.0.0"
edition = "2021"
version.workspace = true

[dependencies]
bytemuck = { workspace = true, features = ["min_const_generics", "must_cast"] }
Expand Down
2 changes: 1 addition & 1 deletion solana/write-account/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "solana-write-account"
authors = ["Michal Nazarewicz <mina86@mina86.com>"]
version = "0.0.0"
edition = "2021"
version.workspace = true

[lib]
name = "write"
Expand Down

0 comments on commit 072fb5c

Please sign in to comment.