-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac3c917
commit 873331c
Showing
4 changed files
with
15 additions
and
16 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ default-members = [ | |
|
||
[package] | ||
name = "client_side_validation" | ||
version = "0.9.0" | ||
version = "0.10.0-beta.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Client-side validation foundation library" | ||
|
@@ -30,8 +30,8 @@ name = "client_side_validation" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
commit_verify = { version = "0.9.0", path = "./commit_verify" } | ||
single_use_seals = { version = "0.9.0", path = "./single_use_seals" } | ||
commit_verify = { version = "0.10.0-beta.1", path = "./commit_verify" } | ||
single_use_seals = { version = "0.10.0-beta.1", path = "./single_use_seals" } | ||
serde_crate = { package = "serde", version = "1", features = ["derive"], optional = true } | ||
|
||
[features] | ||
|
@@ -43,6 +43,3 @@ serde = ["serde_crate", "commit_verify/serde"] | |
|
||
[package.metadata.docs.rs] | ||
features = [ "all" ] | ||
|
||
[patch.crates-io] | ||
strict_encoding = { git = "https://github.com/strict-types/strict-encoding" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "commit_verify" | ||
version = "0.9.0" | ||
version = "0.10.0-beta.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Commit-verify API for client-side validation" | ||
|
@@ -19,7 +19,7 @@ path = "src/lib.rs" | |
[dependencies] | ||
amplify = { version = "4.0.0-beta.8", features = ["hex", "apfloat"] } | ||
bitcoin_hashes = "0.11.0" | ||
strict_encoding = "2.0.0-beta.2" | ||
strict_encoding = "2.0.0-beta.5" | ||
rand = { version = "0.8.5", optional = true } | ||
serde_crate = { version = "1.0", package = "serde", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "single_use_seals" | ||
version = "0.9.0" | ||
version = "0.10.0-beta.1" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Single-use-seals foundation API" | ||
|
@@ -18,7 +18,7 @@ path = "src/lib.rs" | |
|
||
[dependencies] | ||
amplify_derive = "4.0.0-alpha.3" | ||
async-trait = { version = "0.1.57", optional = true } | ||
async-trait = { version = "0.1.64", optional = true } | ||
|
||
[features] | ||
default = [] | ||
|