Skip to content
Open
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
22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit"
version = "0.10.2"
version = "0.10.3"
edition = "2021"
authors = ["SCRT Labs <[email protected]>"]
license-file = "LICENSE"
Expand Down Expand Up @@ -37,16 +37,16 @@ viewing-key = ["secret-toolkit-viewing-key"]
notification = ["secret-toolkit-notification"]

[dependencies]
secret-toolkit-crypto = { version = "0.10.2", path = "packages/crypto", optional = true }
secret-toolkit-incubator = { version = "0.10.2", path = "packages/incubator", optional = true }
secret-toolkit-permit = { version = "0.10.2", path = "packages/permit", optional = true }
secret-toolkit-serialization = { version = "0.10.2", path = "packages/serialization", optional = true }
secret-toolkit-snip20 = { version = "0.10.2", path = "packages/snip20", optional = true }
secret-toolkit-snip721 = { version = "0.10.2", path = "packages/snip721", optional = true }
secret-toolkit-storage = { version = "0.10.2", path = "packages/storage", optional = true }
secret-toolkit-utils = { version = "0.10.2", path = "packages/utils", optional = true }
secret-toolkit-viewing-key = { version = "0.10.2", path = "packages/viewing_key", optional = true }
secret-toolkit-notification = { version = "0.10.2", path = "packages/notification", optional = true }
secret-toolkit-crypto = { version = "0.10.3", path = "packages/crypto", optional = true }
secret-toolkit-incubator = { version = "0.10.3", path = "packages/incubator", optional = true }
secret-toolkit-permit = { version = "0.10.3", path = "packages/permit", optional = true }
secret-toolkit-serialization = { version = "0.10.3", path = "packages/serialization", optional = true }
secret-toolkit-snip20 = { version = "0.10.3", path = "packages/snip20", optional = true }
secret-toolkit-snip721 = { version = "0.10.3", path = "packages/snip721", optional = true }
secret-toolkit-storage = { version = "0.10.3", path = "packages/storage", optional = true }
secret-toolkit-utils = { version = "0.10.3", path = "packages/utils", optional = true }
secret-toolkit-viewing-key = { version = "0.10.3", path = "packages/viewing_key", optional = true }
secret-toolkit-notification = { version = "0.10.3", path = "packages/notification", optional = true }

[workspace]
members = ["packages/*"]
Expand Down
2 changes: 1 addition & 1 deletion packages/crypto/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-crypto"
version = "0.10.2"
version = "0.10.3"
edition = "2021"
authors = ["SCRT Labs <[email protected]>"]
license-file = "../../LICENSE"
Expand Down
4 changes: 2 additions & 2 deletions packages/incubator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-incubator"
version = "0.10.2"
version = "0.10.3"
edition = "2021"
authors = ["SCRT Labs <[email protected]>"]
license-file = "../../LICENSE"
Expand All @@ -16,7 +16,7 @@ all-features = true
[dependencies]
serde = { workspace = true, optional = true }
cosmwasm-std = { workspace = true, optional = true }
secret-toolkit-serialization = { version = "0.10.2", path = "../serialization", optional = true }
secret-toolkit-serialization = { version = "0.10.3", path = "../serialization", optional = true }

[features]
generational-store = ["secret-toolkit-serialization", "serde", "cosmwasm-std"]
Expand Down
4 changes: 2 additions & 2 deletions packages/notification/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-notification"
version = "0.10.2"
version = "0.10.3"
edition = "2021"
authors = ["darwinzer0","blake-regalia"]
license-file = "../../LICENSE"
Expand Down Expand Up @@ -30,6 +30,6 @@ primitive-types = { version = "0.12.2", default-features = false }
hex = "0.4.3"
minicbor = "0.25.1"

secret-toolkit-crypto = { version = "0.10.2", path = "../crypto", features = [
secret-toolkit-crypto = { version = "0.10.3", path = "../crypto", features = [
"hash", "hkdf"
] }
7 changes: 5 additions & 2 deletions packages/permit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "secret-toolkit-permit"
version = "0.10.2"
version = "0.10.3"
edition = "2021"
authors = ["SCRT Labs <[email protected]>"]
license-file = "../../LICENSE"
Expand All @@ -20,6 +20,9 @@ ripemd = { version = "0.1.3", default-features = false }
schemars = { workspace = true }
bech32 = "0.9.1"
remain = "0.2.8"
secret-toolkit-crypto = { version = "0.10.2", path = "../crypto", features = [
secret-toolkit-crypto = { version = "0.10.3", path = "../crypto", features = [
"hash",
] }
secret-toolkit-utils = { version = "0.10.3", path = "../utils" }
secret-toolkit-storage = { version = "0.10.3", path = "../storage" }

Loading
Loading