Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 15 additions & 16 deletions Cargo.lock

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

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-wallet-sdk"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "An unofficial SDK for building Chia wallets."
Expand Down Expand Up @@ -95,18 +95,18 @@ anyhow = { workspace = true }
hex-literal = { workspace = true }

[workspace.dependencies]
chia-wallet-sdk = { version = "0.31.0", path = "." }
chia-sdk-client = { version = "0.31.0", path = "./crates/chia-sdk-client" }
chia-sdk-driver = { version = "0.31.0", path = "./crates/chia-sdk-driver" }
chia-sdk-signer = { version = "0.31.0", path = "./crates/chia-sdk-signer" }
chia-sdk-test = { version = "0.31.0", path = "./crates/chia-sdk-test" }
chia-sdk-types = { version = "0.31.0", path = "./crates/chia-sdk-types" }
chia-sdk-derive = { version = "0.31.0", path = "./crates/chia-sdk-types/derive" }
chia-sdk-utils = { version = "0.31.0", path = "./crates/chia-sdk-utils" }
chia-sdk-coinset = { version = "0.31.0", path = "./crates/chia-sdk-coinset" }
chia-sdk-bindings = { version = "0.31.0", path = "./crates/chia-sdk-bindings" }
bindy = { version = "0.31.0", path = "./crates/chia-sdk-bindings/bindy" }
bindy-macro = { version = "0.31.0", path = "./crates/chia-sdk-bindings/bindy-macro" }
chia-wallet-sdk = { version = "0.32.0", path = "." }
chia-sdk-client = { version = "0.32.0", path = "./crates/chia-sdk-client" }
chia-sdk-driver = { version = "0.32.0", path = "./crates/chia-sdk-driver" }
chia-sdk-signer = { version = "0.32.0", path = "./crates/chia-sdk-signer" }
chia-sdk-test = { version = "0.32.0", path = "./crates/chia-sdk-test" }
chia-sdk-types = { version = "0.32.0", path = "./crates/chia-sdk-types" }
chia-sdk-derive = { version = "0.32.0", path = "./crates/chia-sdk-types/derive" }
chia-sdk-utils = { version = "0.32.0", path = "./crates/chia-sdk-utils" }
chia-sdk-coinset = { version = "0.32.0", path = "./crates/chia-sdk-coinset" }
chia-sdk-bindings = { version = "0.32.0", path = "./crates/chia-sdk-bindings" }
bindy = { version = "0.32.0", path = "./crates/chia-sdk-bindings/bindy" }
bindy-macro = { version = "0.32.0", path = "./crates/chia-sdk-bindings/bindy-macro" }
chia = "0.32.0"
chia-ssl = "0.32.0"
chia-protocol = "0.32.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-bindings"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Underlying implementation of chia-wallet-sdk bindings."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-bindings/bindy-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bindy-macro"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Macro for the Bindy generator."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-bindings/bindy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bindy"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Generator for chia-wallet-sdk bindings."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-cli"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Command line tools powered by the Chia Wallet SDK."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-client"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Utilities for connecting to Chia full node peers via the light wallet protocol."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-coinset/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-coinset"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Utilities for connecting to Chia full node peers via the light wallet protocol."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-driver"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Driver code for interacting with standard puzzles on the Chia blockchain."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-signer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-signer"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Calculates the signatures required for coin spends in a transaction."
Expand Down
3 changes: 1 addition & 2 deletions crates/chia-sdk-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-test"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "A wallet simulator and related tooling for testing Chia wallet code."
Expand Down Expand Up @@ -66,7 +66,6 @@ futures-util = { workspace = true, optional = true }
prettytable-rs = {workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }
bincode = { workspace = true, features = ["serde"], optional = true }
rue-lir = { workspace = true }

[package.metadata.cargo-machete]
ignored = ["prettytable-rs"]
2 changes: 1 addition & 1 deletion crates/chia-sdk-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-types"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Standard Chia types for things such as puzzle info and conditions."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-types/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-derive"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "Derive macros for chia-sdk-types."
Expand Down
2 changes: 1 addition & 1 deletion crates/chia-sdk-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "chia-sdk-utils"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "General utilities for the chia-wallet-sdk."
Expand Down
2 changes: 1 addition & 1 deletion napi/npm/darwin-arm64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-wallet-sdk-darwin-arm64",
"version": "0.31.0",
"version": "0.32.0",
"repository": {
"type": "git",
"url": "https://github.com/xch-dev/chia-wallet-sdk"
Expand Down
2 changes: 1 addition & 1 deletion napi/npm/darwin-universal/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-wallet-sdk-darwin-universal",
"version": "0.31.0",
"version": "0.32.0",
"repository": {
"type": "git",
"url": "https://github.com/xch-dev/chia-wallet-sdk"
Expand Down
2 changes: 1 addition & 1 deletion napi/npm/darwin-x64/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-wallet-sdk-darwin-x64",
"version": "0.31.0",
"version": "0.32.0",
"repository": {
"type": "git",
"url": "https://github.com/xch-dev/chia-wallet-sdk"
Expand Down
2 changes: 1 addition & 1 deletion napi/npm/linux-arm64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-wallet-sdk-linux-arm64-gnu",
"version": "0.31.0",
"version": "0.32.0",
"repository": {
"type": "git",
"url": "https://github.com/xch-dev/chia-wallet-sdk"
Expand Down
2 changes: 1 addition & 1 deletion napi/npm/linux-x64-gnu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-wallet-sdk-linux-x64-gnu",
"version": "0.31.0",
"version": "0.32.0",
"repository": {
"type": "git",
"url": "https://github.com/xch-dev/chia-wallet-sdk"
Expand Down
2 changes: 1 addition & 1 deletion napi/npm/win32-x64-msvc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-wallet-sdk-win32-x64-msvc",
"version": "0.31.0",
"version": "0.32.0",
"repository": {
"type": "git",
"url": "https://github.com/xch-dev/chia-wallet-sdk"
Expand Down
2 changes: 1 addition & 1 deletion napi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chia-wallet-sdk",
"version": "0.31.0",
"version": "0.32.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion pyo3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
publish = false
name = "chia-wallet-sdk-py"
version = "0.31.0"
version = "0.32.0"
edition = "2024"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
publish = false
name = "chia-wallet-sdk-wasm"
version = "0.31.0"
version = "0.32.0"
edition = "2024"
license = "Apache-2.0"
description = "WASM bindings for the Chia Wallet SDK."
Expand Down
Loading