forked from openethereum/parity-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable Panic=abort (openethereum#3423)
* Enable panic=abort * Update remaining crate versions to 1.5 * Run tests in release mode * Enable panic=abort for release profile only * Added travis_wait * Travis timeout set to 40
- Loading branch information
Showing
16 changed files
with
63 additions
and
64 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
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 |
---|---|---|
|
@@ -88,4 +88,4 @@ name = "parity" | |
[profile.release] | ||
debug = false | ||
lto = false | ||
|
||
panic = "abort" |
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,7 +1,7 @@ | ||
[package] | ||
description = "Base Package for all Parity built-in dapps" | ||
name = "parity-dapps-glue" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
license = "GPL-3.0" | ||
authors = ["Ethcore <[email protected]"] | ||
build = "build.rs" | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ description = "Ethcore Parity UI" | |
homepage = "http://ethcore.io" | ||
license = "GPL-3.0" | ||
name = "parity-ui" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["Ethcore <[email protected]>"] | ||
|
||
[build-dependencies] | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ description = "Ethcore Database" | |
homepage = "http://ethcore.io" | ||
license = "GPL-3.0" | ||
name = "ethcore-db" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["Ethcore <[email protected]>"] | ||
build = "build.rs" | ||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ description = "Ethcore development/test/build tools" | |
homepage = "http://ethcore.io" | ||
license = "GPL-3.0" | ||
name = "ethcore-devtools" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["Ethcore <[email protected]>"] | ||
|
||
[dependencies] | ||
|
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 = "ethash" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["arkpar <[email protected]"] | ||
|
||
[lib] | ||
|
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 = "evmjit" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["debris <[email protected]>"] | ||
|
||
[lib] | ||
|
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 = "ethcore-ipc-nano" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["Nikolay Volf <[email protected]>"] | ||
license = "GPL-3.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ethcore-ipc" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
authors = ["Nikolay Volf <[email protected]>"] | ||
license = "GPL-3.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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
description = "Rpc test client." | ||
name = "rpctest" | ||
version = "1.4.0" | ||
version = "1.5.0" | ||
license = "GPL-3.0" | ||
authors = ["Ethcore <[email protected]>"] | ||
|
||
|
Oops, something went wrong.