-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update: WASM builder * update: load genesis * update: version * update: rename * update: chain spec * update: deps
- Loading branch information
1 parent
f81b776
commit 48ccfaf
Showing
13 changed files
with
7,112 additions
and
7,125 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ path = "src/main.rs" | |
|
||
[package] | ||
name = "darwinia" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Darwinia Network <[email protected]>"] | ||
description = "Darwinia node implementation in Rust" | ||
edition = "2018" | ||
|
@@ -46,4 +46,3 @@ panic = "unwind" | |
[features] | ||
# TODO: benchmark | ||
# runtime-benchmarks=["darwinia-cli/runtime-benchmarks"] | ||
build-spec = ["darwinia-cli/build-spec"] |
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 = "darwinia-cli" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Darwinia Network <[email protected]>"] | ||
description = "Darwinia Client Node" | ||
edition = "2018" | ||
|
@@ -66,7 +66,3 @@ browser = [ | |
] | ||
# TODO: benchmark | ||
# runtime-benchmarks = ["service/runtime-benchmarks"] | ||
build-spec = [ | ||
"default", | ||
"darwinia-service/build-spec", | ||
] |
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 = "darwinia-primitives" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Darwinia Network <[email protected]>"] | ||
description = "Darwinia node runtime primitives" | ||
edition = "2018" | ||
|
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 = "darwinia-rpc" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Darwinia Network <[email protected]>"] | ||
description = "Darwinia node rpc" | ||
edition = "2018" | ||
|
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 = "darwinia-runtime-common" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Darwinia Network <[email protected]>"] | ||
description = "Darwinia node runtime common" | ||
edition = "2018" | ||
|
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,13 +1,13 @@ | ||
[package] | ||
name = "crab-runtime" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Darwinia Network <[email protected]>"] | ||
description = "Darwinia node runtime for Crab network" | ||
build = "build.rs" | ||
edition = "2018" | ||
license = "GPL-3.0" | ||
homepage = "https://darwinia.network/" | ||
repository = "https://github.com/darwinia-network/darwinia/" | ||
build = "build.rs" | ||
|
||
[dependencies] | ||
# crates | ||
|
@@ -141,7 +141,3 @@ std = [ | |
# runtime-benchmarks = [ | ||
# "frame-benchmarking", | ||
# ] | ||
build-spec = [ | ||
"default", | ||
"darwinia-staking/build-spec", | ||
] |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "darwinia-service" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
authors = ["Darwinia Network <[email protected]>"] | ||
description = "Darwinia node service" | ||
edition = "2018" | ||
|
@@ -64,7 +64,3 @@ db = ["sc-service/db"] | |
# runtime-benchmarks = [] | ||
# TODO: parachain | ||
full-node = [] | ||
build-spec = [ | ||
"default", | ||
"crab-runtime/build-spec", | ||
] |
Oops, something went wrong.