-
Notifications
You must be signed in to change notification settings - Fork 441
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 #179 from matter-labs/develop
2.2.0
- Loading branch information
Showing
2,196 changed files
with
110,339 additions
and
192,568 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,4 @@ | ||
github "mxcl/PromiseKit" ~> 6.8.4 | ||
github "attaswift/BigInt" ~> 3.1 | ||
github "daltoniam/Starscream" ~> 3.1.0 | ||
github "krzyzanowskim/CryptoSwift" ~> 1.0.0 |
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,5 @@ | ||
github "attaswift/BigInt" "v3.1.0" | ||
github "attaswift/SipHash" "v1.2.2" | ||
github "daltoniam/Starscream" "3.1.0" | ||
github "krzyzanowskim/CryptoSwift" "1.0.0" | ||
github "mxcl/PromiseKit" "6.8.4" |
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,14 @@ | ||
ignore: | ||
- "/tests/*" | ||
comment: | ||
layout: "header, diff" | ||
behavior: default | ||
require_changes: no | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: null | ||
base: auto | ||
paths: "sources/*" |
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,6 @@ | ||
/Carthage/Build | ||
/.build | ||
/Packages | ||
xcuserdata | ||
/Package.pins | ||
/Package.resolved |
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,3 @@ | ||
[submodule "Carthage/Checkouts/SipHash"] | ||
path = Carthage/Checkouts/SipHash | ||
url = https://github.com/attaswift/SipHash.git |
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 @@ | ||
4.0 |
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,10 @@ | ||
language: objective-c | ||
osx_image: xcode9.3 | ||
script: | ||
- swift build | ||
- swift test | ||
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-macOS test | ||
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-iOS | ||
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-watchOS | ||
- xcrun xcodebuild -workspace BigInt.xcworkspace -scheme BigInt-tvOS | ||
after_success: bash <(curl -s https://codecov.io/bash) |
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,18 @@ | ||
|
||
Pod::Spec.new do |spec| | ||
spec.name = 'BigInt' | ||
spec.version = '3.1.0' | ||
spec.ios.deployment_target = "8.0" | ||
spec.osx.deployment_target = "10.9" | ||
spec.tvos.deployment_target = "9.0" | ||
spec.watchos.deployment_target = "2.0" | ||
spec.license = { :type => 'MIT', :file => 'LICENSE.md' } | ||
spec.summary = 'Arbitrary-precision arithmetic in pure Swift' | ||
spec.homepage = 'https://github.com/attaswift/BigInt' | ||
spec.author = 'Károly Lőrentey' | ||
spec.source = { :git => 'https://github.com/attaswift/BigInt.git', :tag => 'v' + String(spec.version) } | ||
spec.source_files = 'sources/*.swift' | ||
spec.social_media_url = 'https://twitter.com/lorentey' | ||
spec.documentation_url = 'http://attaswift.github.io/BigInt/' | ||
spec.dependency 'SipHash', '~> 1.2' | ||
end |
1,324 changes: 1,324 additions & 0 deletions
1,324
Carthage/Checkouts/BigInt/BigInt.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
Carthage/Checkouts/BigInt/BigInt.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
92 changes: 92 additions & 0 deletions
92
...cbaselines/BB241C601DDB70B00067F917.xcbaseline/3714311D-5102-4569-B213-8DC87DC6C2F3.plist
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,92 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>classNames</key> | ||
<dict> | ||
<key>ProfileTests</key> | ||
<dict> | ||
<key>testBalancedMultiplication()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.41604</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
<key>testDivision()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.70161</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
<key>testFibonacciAddition()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>2.3569</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
<key>testGCD()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>1.801</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
<key>testMersennePrimes()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>4.184</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
<key>testModularExponentiation()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>2.1938</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
<key>testMultiplicationByDigit()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.91891</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
<key>testSquareRoot()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.48118</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>2016-11-15 18:19:04</string> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</plist> |
92 changes: 92 additions & 0 deletions
92
...cbaselines/BB241C601DDB70B00067F917.xcbaseline/3B06D4DF-FC61-43AE-8115-CA5059B5AB1B.plist
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,92 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>classNames</key> | ||
<dict> | ||
<key>ProfileTests</key> | ||
<dict> | ||
<key>testBalancedMultiplication()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.31603</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
<key>testDivision()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.60765</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
<key>testFibonacciAddition()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>2.0927</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
<key>testGCD()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>1.3631</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
<key>testMersennePrimes()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>3.4959</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
<key>testModularExponentiation()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>1.7139</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
<key>testMultiplicationByDigit()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.60397</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
<key>testSquareRoot()</key> | ||
<dict> | ||
<key>com.apple.XCTPerformanceMetric_WallClockTime</key> | ||
<dict> | ||
<key>baselineAverage</key> | ||
<real>0.40256</real> | ||
<key>baselineIntegrationDisplayName</key> | ||
<string>Jun 21, 2017, 5:03:36 PM</string> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</dict> | ||
</plist> |
Oops, something went wrong.