Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ab710bf
Updating substrate-demo
arkpar Sep 4, 2018
a5604d6
Consenus fixes
arkpar Sep 4, 2018
d5a0270
Reverted toolchain change
arkpar Sep 4, 2018
6a5ea57
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 4, 2018
eab11ad
Adjusted timeout formula
arkpar Aug 23, 2018
04eb184
Simplfied proposal creation
arkpar Sep 4, 2018
91041c3
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 5, 2018
67107bf
Fixed tests
arkpar Sep 5, 2018
8b7a8bb
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 5, 2018
f3e9299
Fixed a few small issues
arkpar Sep 5, 2018
b3a96ad
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 5, 2018
dbf6d0c
2017->2018
arkpar Sep 6, 2018
3e61f36
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 6, 2018
7d8ef2c
Style
arkpar Sep 6, 2018
7353474
More style
arkpar Sep 6, 2018
946e5e4
Renamed demo executable to substrate
arkpar Sep 6, 2018
a02f2b7
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 6, 2018
9464a68
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 7, 2018
c17c8b4
Style
arkpar Sep 7, 2018
a599454
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 10, 2018
f882159
Fixed compilation after merge
arkpar Sep 10, 2018
544bb89
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 10, 2018
b3295d6
Style
arkpar Sep 10, 2018
18d67cb
Merge branch 'master' of github.com:paritytech/substrate into a-demo
arkpar Sep 10, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
158 changes: 140 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,16 @@ members = [
"substrate/test-runtime",
"substrate/telemetry",
"substrate/keystore",
"demo",
"demo/cli",
"demo/api",
"demo/consensus",
"demo/executor",
"demo/network",
"demo/primitives",
"demo/runtime",
"demo/service",
"demo/transaction-pool",
"subkey",
]
exclude = [
Expand Down
18 changes: 18 additions & 0 deletions demo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[[bin]]
name = "substrate"
path = "src/main.rs"

[package]
name = "substrate"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]
build = "build.rs"

[dependencies]
error-chain = "0.12"
demo-cli = { path = "cli" }
futures = "0.1"
ctrlc = { version = "3.0", features = ["termination"] }

[build-dependencies]
vergen = "0.1"
13 changes: 13 additions & 0 deletions demo/api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "demo-api"
version = "0.1.0"
authors = ["Parity Technologies <[email protected]>"]

[dependencies]
demo-runtime = { path = "../runtime" }
demo-primitives = { path = "../primitives" }
substrate-client = { path = "../../substrate/client" }
substrate-primitives = { path = "../../substrate/primitives" }

[dev-dependencies]
substrate-keyring = { path = "../../substrate/keyring" }
Loading