Skip to content

Commit

Permalink
0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
billythedummy committed Dec 27, 2023
1 parent 3133619 commit fc21b1f
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 26 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [UNRELEASED]
## [0.6.0] - 2023-12-27

### Breaking

Expand Down
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.

18 changes: 17 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,30 @@ members = [
borsh = "^0.10"
bs58 = ">=0.1"
bytemuck = "^1"
clap = "^4.0.29"
env_logger = "^0.10.0"
heck = "^0.4.0"
itertools = "^0.10"
lazy_static = "^1"
log = "^0.4.17"
log-panics = "^2"
num-derive = "^0.3"
num-traits = "^0.2"
prettyplease = "^0.1.21"
proc-macro2 = "^1.0"
quote = "^1.0"
serde = "^1"
serde_json = "^1"
sha2 = "^0.10"
solana-cli-config = "^1"
solana-client = "^1"
solana-program = "^1"
solana-sdk = "^1"
syn = "^1.0"
thiserror = "^1.0"
tokio = "^1"
tokio = "^1"
toml = "^0.7.6"
void = "^1.0"

# workspace members
test_utils = { path = "./test_utils" }
41 changes: 18 additions & 23 deletions solores/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@ name = "solores"
description = "Solana IDL to Rust client / CPI interface generator"
license = "Apache-2.0"
repository = "https://github.com/igneous-labs/solores"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
exclude = [
".pre-commit-config.yaml",
"examples/",
"install-precommit.sh",
"tests/test_gen_examples.rs"
]
include = ["src/", "README.md", "tests/"]
categories = [
"command-line-utilities",
"cryptography::cryptocurrencies",
Expand All @@ -36,21 +31,21 @@ name = "solores"

[dependencies]
bs58 = { workspace = true }
clap = { version = "^4.0.29", features = ["derive"] }
env_logger = "^0.10.0"
heck = "^0.4.0"
itertools = "^0.10"
prettyplease = "^0.1.21"
log = "^0.4.17"
log-panics = { version = "^2", features = ["with-backtrace"]}
proc-macro2 = "^1.0"
quote = "^1.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = "^1"
sha2 = "^0.10"
syn = { version = "^1.0", features = ["full"] }
toml = "^0.7.6"
void = "^1.0"
clap = { workspace = true, features = ["derive"] }
env_logger = { workspace = true }
heck = { workspace = true }
itertools = { workspace = true }
prettyplease = { workspace = true }
log = { workspace = true }
log-panics = { workspace = true, features = ["with-backtrace"]}
proc-macro2 = { workspace = true }
quote = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
sha2 = { workspace = true }
syn = { workspace = true, features = ["full"] }
toml = { workspace = true }
void = { workspace = true }

[dev-dependencies]
test_utils = { path = "../test_utils" }
test_utils = { workspace = true }

0 comments on commit fc21b1f

Please sign in to comment.