This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #474 from jovfer/feature/rc_1_3_0
Feature/rc 1 3 0
- Loading branch information
Showing
14 changed files
with
530 additions
and
82 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
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "libindy-objc", | ||
"version": "1.3.0", | ||
"summary": "Summary TODO.", | ||
"homepage": "TODO", | ||
"license": { | ||
"type": "Apache License 2.0", | ||
"file": "LICENSE" | ||
}, | ||
"authors": { | ||
"Daniel Hardman": "[email protected]" | ||
}, | ||
"source": { | ||
"http": "https://repo.sovrin.org/ios/libindy/stable/indy-objc/1.3.0/libindy-objc.zip" | ||
}, | ||
"platforms": { | ||
"ios": "10.0" | ||
}, | ||
"ios": { | ||
"vendored_frameworks": "libindy-objc/Indy.framework" | ||
}, | ||
"module_name": "Indy" | ||
} |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"name": "libindy", | ||
"version": "1.3.0", | ||
"summary": "Summary TODO.", | ||
"description": "Description TODO.", | ||
"homepage": "TODO", | ||
"license": { | ||
"type": "Apache License 2.0", | ||
"file": "LICENSE" | ||
}, | ||
"authors": { | ||
"Daniel Hardman": "[email protected]" | ||
}, | ||
"platforms": { | ||
"ios": "10.0" | ||
}, | ||
"source": { | ||
"http": "https://repo.sovrin.org/ios/libindy/stable/libindy-core/1.3.0/libindy.tar.gz" | ||
}, | ||
"source_files": "*.h", | ||
"vendored_libraries": "*.a", | ||
"requires_arc": false | ||
} |
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
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 = "indy" | ||
version = "1.2.0" | ||
version = "1.3.0" | ||
authors = [ | ||
"Sergej Pupykin <[email protected]>", | ||
"Vyacheslav Gudkov <[email protected]>", | ||
|
@@ -44,7 +44,7 @@ libc = "0.2.21" | |
log = "0.3.7" | ||
openssl = { version = "0.9.11", optional = true } | ||
rand = "0.3" | ||
rusqlite = "0.10.1" | ||
rusqlcipher = { version = "0.14.6", features=["bundled"] } | ||
rust-base58 = {version = "0.0.4", optional = true} | ||
base64 = "0.6.0" | ||
serde = "1.0" | ||
|
Oops, something went wrong.