Skip to content

Commit

Permalink
Merge pull request #11 from hicommonwealth/jake.monorepo
Browse files Browse the repository at this point in the history
Moving edgeware modules into node repo.
  • Loading branch information
drewstone authored Jan 4, 2019
2 parents 2b6f43b + 9ece2fa commit 50e06df
Show file tree
Hide file tree
Showing 22 changed files with 3,132 additions and 49 deletions.
49 changes: 22 additions & 27 deletions Cargo.lock

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

13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,19 @@ substrate-telemetry = { git = "https://github.com/paritytech/substrate", branch
substrate-client = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
substrate-finality-grandpa = { git = "https://github.com/paritytech/substrate", branch = "v0.9" }
structopt = "0.2.13"

edgeware-runtime = { path = "runtime" }
node-executor = { git = "https://github.com/paritytech/substrate", branch = "v0.9" }
edge-delegation = { git = "https://github.com/hicommonwealth/edge-delegation" }
edge-governance = { git = "https://github.com/hicommonwealth/edge-governance" }
edge-identity = { git = "https://github.com/hicommonwealth/edge-identity" }
edgeware-runtime = { path = "runtime" }

[build-dependencies]
vergen = "2"

[workspace]
members = [ "runtime" ]
members = [
"runtime",
"modules/edge-delegation",
"modules/edge-governance",
"modules/edge-identity"
]
exclude = [ "runtime/wasm" ]

[profile.release]
Expand Down
3 changes: 3 additions & 0 deletions modules/edge-delegation/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target
**/*.rs.bk
Cargo.lock
37 changes: 37 additions & 0 deletions modules/edge-delegation/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[package]
name = "edge-delegation"
version = "0.1.0"
authors = ["Drew Stone <[email protected]>"]

[dependencies]
hex-literal = "0.1.0"
serde = { version = "1.0", default-features = false }
serde_derive = { version = "1.0", optional = true }
safe-mix = { version = "1.0", default-features = false}
parity-codec = { version = "2.1", default-features = false }
parity-codec-derive = { version = "2.1", default-features = false }
substrate-keyring = { git = "https://github.com/paritytech/substrate", branch = "v0.9", optional = true }
substrate-primitives = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
sr-std = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
sr-io = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
sr-primitives = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-support = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-system = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }
srml-balances = { git = "https://github.com/paritytech/substrate", branch = "v0.9", default-features = false }

[features]
default = ["std"]
std = [
"serde/std",
"serde_derive",
"safe-mix/std",
"parity-codec/std",
"parity-codec-derive/std",
"substrate-primitives/std",
"sr-std/std",
"sr-io/std",
"srml-support/std",
"sr-primitives/std",
"srml-system/std",
"srml-balances/std",
]
Loading

0 comments on commit 50e06df

Please sign in to comment.