-
-
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
ed8c139
commit cc235a3
Showing
6 changed files
with
19 additions
and
19 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "client_side_validation" | ||
version = "0.9.0-rc.1" | ||
version = "0.9.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Client-side validation foundation library" | ||
|
@@ -18,9 +18,9 @@ name = "client_side_validation" | |
path = "src/lib.rs" | ||
|
||
[dependencies] | ||
strict_encoding = { version = "0.9.0-rc.1", path = "./strict_encoding" } | ||
commit_verify = { version = "0.9.0-rc.1", path = "./commit_verify" } | ||
single_use_seals = { version = "0.9.0-rc.1", path = "./single_use_seals" } | ||
strict_encoding = { version = "0.9.0", path = "./strict_encoding" } | ||
commit_verify = { version = "0.9.0", path = "./commit_verify" } | ||
single_use_seals = { version = "0.9.0", path = "./single_use_seals" } | ||
|
||
[features] | ||
default = [] | ||
|
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-rc.1" | ||
version = "0.9.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Commit-verify API for client-side validation" | ||
|
@@ -19,11 +19,11 @@ path = "src/lib.rs" | |
[dependencies] | ||
amplify = { version = "3.13.0", features = ["hex"] } | ||
bitcoin_hashes = "0.11.0" | ||
strict_encoding = { version = "0.9.0-rc.1", path = "../strict_encoding" } | ||
strict_encoding = { version = "0.9.0", path = "../strict_encoding" } | ||
rand = { version = "0.8.5", optional = true } | ||
serde_crate = { version = "1.0", package = "serde", optional = true } | ||
serde_with = { version = "1.14.0", optional = true } | ||
lnpbp_secp256k1zkp = { version = "0.9.0-alpha.1", optional = true } | ||
lnpbp_secp256k1zkp = { version = "0.9.0", optional = true } | ||
|
||
[dev-dependencies] | ||
rand = "0.8.5" | ||
|
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-rc.1" | ||
version = "0.9.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Single-use-seals foundation API. For bitcoin-specific implementation check bp-seals" | ||
|
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 = "strict_encoding" | ||
version = "0.9.0-rc.2" | ||
version = "0.9.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Strict encoding: deterministic binary serialization for networking & client-side validation" | ||
|
@@ -24,7 +24,7 @@ strict_encoding_derive = { version = "0.9.0", path = "./derive", optional = true | |
bitcoin_hashes = "0.11.0" # We need this separately since bitcoin is an optional dependency | ||
bitcoin = { version = "0.29.2", optional = true } | ||
miniscript = { version = "9.0.0", optional = true } | ||
lnpbp_secp256k1zkp = { version = "0.9.0-rc.1", optional = true } | ||
lnpbp_secp256k1zkp = { version = "0.9.0", optional = true } | ||
chrono = { version = "0.4", optional = true } | ||
half = { version = "2.1", optional = true } | ||
serde = { version = "1.0", features = ["derive"], 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 = "strict_encoding_test" | ||
version = "0.9.0-rc.1" | ||
version = "0.9.0" | ||
license = "Apache-2.0" | ||
authors = ["Dr. Maxim Orlovsky <[email protected]>"] | ||
description = "Helper functions for testing strict encodings" | ||
|
@@ -16,4 +16,4 @@ rust-version = "1.59.0" | |
|
||
[dependencies] | ||
amplify = "3.13.0" | ||
strict_encoding = { version = "0.9.0-rc.1", path = ".." } | ||
strict_encoding = { version = "0.9.0", path = ".." } |