-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andrew Whitehead <[email protected]>
- Loading branch information
1 parent
e1eaf32
commit 7843fed
Showing
6 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
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
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 = "indy-credx" | ||
version = "0.3.1" | ||
version = "0.3.2" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
description = "Verifiable credential issuance and presentation for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org)." | ||
edition = "2018" | ||
|
@@ -22,7 +22,7 @@ logger = ["env_logger"] | |
vendored = ["indy-data-types/vendored"] | ||
|
||
[dependencies] | ||
env_logger = { version = "0.7.1", optional = true } | ||
env_logger = { version = "0.9", optional = true } | ||
ffi-support = { version = "0.4.0", optional = true } | ||
log = "0.4" | ||
once_cell = "1.9" | ||
|
@@ -36,7 +36,7 @@ thiserror = "1.0" | |
zeroize = { version = "1.3", optional = true } | ||
|
||
[dependencies.indy-data-types] | ||
version = "0.5" | ||
version = "0.5.2" | ||
path = "../indy-data-types" | ||
features = ["cl_native"] | ||
|
||
|
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 = "indy-data-types" | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
description = "Common data types for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org)." | ||
edition = "2018" | ||
|
@@ -21,7 +21,7 @@ cl = ["serde_support", "ursa", "ursa/cl", "ursa/serde"] | |
cl_native = ["serde_support", "ursa", "ursa/cl_native", "ursa/serde"] | ||
merkle_tree = ["indy-utils/hash", "hex"] | ||
rich_schema = [] | ||
serde_support = ["serde", "serde_json"] | ||
serde_support = ["serde", "serde_json", "indy-utils/serde"] | ||
vendored = ["openssl", "openssl/vendored", "openssl-src"] | ||
|
||
[dependencies] | ||
|
@@ -32,7 +32,7 @@ once_cell = "1.9" | |
regex = "1.3" | ||
serde = { version = "1.0", optional = true, features = ["derive"] } | ||
serde_json = { version = "1.0", optional = true, features = ["raw_value"] } | ||
ursa = { version = "0.3.7", default-features = false, optional = true } | ||
ursa = { version = "0.3", default-features = false, optional = true } | ||
zeroize = { version = "1.1", features = ["zeroize_derive"] } | ||
|
||
[dependencies.indy-utils] | ||
|
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 = "indy-utils" | ||
version = "0.5.1" | ||
version = "0.5.2" | ||
authors = ["Hyperledger Indy Contributors <[email protected]>"] | ||
description = "Utilities for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org)." | ||
edition = "2018" | ||
|
@@ -33,7 +33,7 @@ rand = { version = "0.8", optional = true } | |
regex = "1.3" | ||
serde = { version = "1.0", optional = true, features = ["derive"] } | ||
serde_json = { version = "1.0", optional = true } | ||
sha2 = { version = "0.10", optional = true } | ||
sha2 = { version = "0.9", optional = true } | ||
thiserror = "1.0" | ||
x25519-dalek = { version = "=1.2", default-features = false, features = ["u64_backend"], optional = true } | ||
zeroize = { version = "1.3" } | ||
|
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
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,3 +1,3 @@ | ||
"""indy_credx library wrapper version.""" | ||
|
||
__version__ = "0.3.1" | ||
__version__ = "0.3.2" |