Skip to content

Commit

Permalink
chore: make crate versioning independent
Browse files Browse the repository at this point in the history
  • Loading branch information
ifiokjr committed Sep 16, 2024
1 parent b3ba443 commit c21e923
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.1.1"
authors = ["Ifiok Jr. <[email protected]>"]
edition = "2021"
homepage = "https://github.com/ifiokjr/wasm_solana"
Expand Down Expand Up @@ -105,7 +104,7 @@ zstd = { version = "0.13", default-features = false }

# crates
test_utils = { path = "./crates/test_utils" }
test_utils_solana = { path = "./crates/test_utils_solana", version = "0.1.1" }
test_utils_solana = { path = "./crates/test_utils_solana" }
wallet_standard = { path = "./crates/wallet_standard", version = "0.1.1" }
wallet_standard_browser = { path = "./crates/wallet_standard_browser", version = "0.1.1" }
wallet_standard_wallets = { path = "./crates/wallet_standard_wallets", version = "0.1.1" }
Expand All @@ -117,8 +116,6 @@ anchor-cli = { version = "0.30.1", bins = ["anchor"] }
cargo-insta = { version = "1.40.0" }
cargo-llvm-cov = { version = "0.6.10" }
cargo-nextest = { version = "0.9.72" }
release-plz = { version = "0.3.87", bins = ["release-plz"] }
cargo-semver-checks = { version = "0.35.0" }

[workspace.lints.rust]
# Group lints
Expand Down
14 changes: 7 additions & 7 deletions crates/test_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "test_utils"
version.workspace = true
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
version = "0.1.0"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
publish = false
repository.workspace = true
rust-version.workspace = true
repository = { workspace = true }
rust-version = { workspace = true }

[dependencies]
anyhow = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/test_utils_solana/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test_utils_solana"
version = { workspace = true }
version = "0.1.1"
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/wallet_standard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wallet_standard"
version = { workspace = true }
version = "0.1.1"
authors = { workspace = true }
categories = ["wasm", "web-programming"]
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/wallet_standard_browser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wallet_standard_browser"
version = { workspace = true }
version = "0.1.1"
authors = { workspace = true }
categories = ["wasm", "web-programming"]
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/wallet_standard_wallets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wallet_standard_wallets"
version = { workspace = true }
version = "0.1.1"
authors = { workspace = true }
categories = ["wasm"]
edition = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm_client_anchor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasm_client_anchor"
version = { workspace = true }
version = "0.1.1"
authors = { workspace = true }
categories = ["wasm", "web-programming"]
edition = { workspace = true }
Expand Down

0 comments on commit c21e923

Please sign in to comment.