-
Notifications
You must be signed in to change notification settings - Fork 87
Use libindy with rusql fix for ios build #306
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
c33824a
610f151
e932b6d
ce8f2a8
8c566e2
41e92c5
4156ccd
b3f2b7e
1d34340
2179967
f6fb54e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -45,10 +45,10 @@ regex = "1.1.0" | |
| rust-base58 = "0.0.4" | ||
| rmp-serde = "0.13.7" | ||
| base64 = "0.8.0" | ||
| openssl = { version = "0.10.29" } | ||
| openssl = { version = "0.10.35", features = ["vendored"] } | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I was looking at this and got concerned about the feature description
So I went through actual usage of openssl crate and it turn out it might be an overkill. What's being used is: I somewhat presumed So our openssl usage is not actually ever dealing with certificates, so the quote on top of this comment doesn't matter. I think ultimate solution will be to get rid of openssl dependency.
But lets do that separately |
||
| num-traits = "0.2.0" | ||
| indy = "1.16.0" | ||
| indy-sys = "1.16.0" | ||
| indy = "1.16.0-post-59" | ||
| indy-sys = "1.16.0-post-59" | ||
| futures = "0.3.15" | ||
| tokio = { version = "1.7.1", features = ["rt-multi-thread"] } | ||
| libloading = "0.5.0" | ||
|
|
@@ -69,7 +69,7 @@ serde_json = "1.0" | |
| serde_derive = "1.0" | ||
|
|
||
| [package.metadata.deb] | ||
| depends = "libindy (= 1.16.0)" | ||
| depends = "libindy (= 1.16.0-post-59)" | ||
| extended-description = """\ | ||
| This is the official SDK for Hyperledger Indy, which provides a\ | ||
| distributed-ledger-based foundation for self-sovereign identity.\ | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.