Skip to content

Commit

Permalink
Switch back to using paritytech substrate repo
Browse files Browse the repository at this point in the history
  • Loading branch information
akru committed Feb 20, 2020
1 parent e1e7e14 commit 3e5449d
Show file tree
Hide file tree
Showing 12 changed files with 1,152 additions and 1,112 deletions.
1,891 changes: 972 additions & 919 deletions Cargo.lock

Large diffs are not rendered by default.

99 changes: 43 additions & 56 deletions bin/node/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,14 @@ authors = ["Airalab <[email protected]>"]
description = "Robonomics node implementation in Rust & Substrate."
build = "build.rs"
edition = "2018"
license = "Apache-2.0"
default-run = "robonomics"

[badges]
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "airalab/substrate-node-robonomics" }
is-it-maintained-open-issues = { repository = "airalab/substrate-node-robonomics" }

[[bin]]
name = "robonomics"
path = "bin/main.rs"
Expand All @@ -15,11 +21,6 @@ required-features = ["cli"]
[lib]
crate-type = ["cdylib", "rlib"]

[badges]
maintenance = { status = "actively-developed" }
is-it-maintained-issue-resolution = { repository = "airalab/substrate-node-robonomics" }
is-it-maintained-open-issues = { repository = "airalab/substrate-node-robonomics" }

[dependencies]
# third-party dependencies
futures = { version = "0.3.1", features = ["compat"] }
Expand All @@ -32,64 +33,64 @@ structopt = { version = "0.3.8", optional = true }
jsonrpc-core = "13.2.0"

# primitives
node-primitives = { git = "https://github.com/airalab/substrate", default-features = false }
sp-authority-discovery = { git = "https://github.com/airalab/substrate" }
sp-consensus-babe = { git = "https://github.com/airalab/substrate" }
sp-finality-grandpa = { git = "https://github.com/airalab/substrate" }
sp-api = { git = "https://github.com/airalab/substrate" }
sp-core = { git = "https://github.com/airalab/substrate" }
sp-session = { git = "https://github.com/airalab/substrate" }
sp-runtime = { git = "https://github.com/airalab/substrate" }
sp-offchain = { git = "https://github.com/airalab/substrate" }
sp-consensus = { git = "https://github.com/airalab/substrate" }
sp-inherents = { git = "https://github.com/airalab/substrate" }
sp-blockchain = { git = "https://github.com/airalab/substrate" }
sp-block-builder = { git = "https://github.com/airalab/substrate" }
sp-transaction-pool = { git = "https://github.com/airalab/substrate" }
node-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-authority-discovery = { git = "https://github.com/paritytech/substrate" }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate" }
sp-finality-grandpa = { git = "https://github.com/paritytech/substrate" }
sp-api = { git = "https://github.com/paritytech/substrate" }
sp-core = { git = "https://github.com/paritytech/substrate" }
sp-session = { git = "https://github.com/paritytech/substrate" }
sp-runtime = { git = "https://github.com/paritytech/substrate" }
sp-offchain = { git = "https://github.com/paritytech/substrate" }
sp-consensus = { git = "https://github.com/paritytech/substrate" }
sp-inherents = { git = "https://github.com/paritytech/substrate" }
sp-blockchain = { git = "https://github.com/paritytech/substrate" }
sp-block-builder = { git = "https://github.com/paritytech/substrate" }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate" }

# client dependencies
sc-client = { git = "https://github.com/airalab/substrate" }
sc-client-db = { git = "https://github.com/airalab/substrate" }
sc-client-api = { git = "https://github.com/airalab/substrate" }
sc-chain-spec = { git = "https://github.com/airalab/substrate" }
sc-transaction-pool = { git = "https://github.com/airalab/substrate" }
sc-network = { git = "https://github.com/airalab/substrate" }
sc-offchain = { git = "https://github.com/airalab/substrate" }
sc-consensus-babe = { git = "https://github.com/airalab/substrate" }
sc-finality-grandpa = { git = "https://github.com/airalab/substrate" }
sc-basic-authorship = { git = "https://github.com/airalab/substrate" }
sc-authority-discovery = { git = "https://github.com/airalab/substrate" }
sc-service = { git = "https://github.com/airalab/substrate", default-features = false }
sc-telemetry = { git = "https://github.com/airalab/substrate" }
sc-keystore = { git = "https://github.com/airalab/substrate" }
sc-client = { git = "https://github.com/paritytech/substrate" }
sc-client-db = { git = "https://github.com/paritytech/substrate" }
sc-client-api = { git = "https://github.com/paritytech/substrate" }
sc-chain-spec = { git = "https://github.com/paritytech/substrate" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate" }
sc-network = { git = "https://github.com/paritytech/substrate" }
sc-offchain = { git = "https://github.com/paritytech/substrate" }
sc-consensus-babe = { git = "https://github.com/paritytech/substrate" }
sc-finality-grandpa = { git = "https://github.com/paritytech/substrate" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate" }
sc-authority-discovery = { git = "https://github.com/paritytech/substrate" }
sc-service = { git = "https://github.com/paritytech/substrate", default-features = false }
sc-telemetry = { git = "https://github.com/paritytech/substrate" }
sc-keystore = { git = "https://github.com/paritytech/substrate" }

# frame dependencies
pallet-im-online = { git = "https://github.com/airalab/substrate" }
frame-system-rpc-runtime-api = { git = "https://github.com/airalab/substrate" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/airalab/substrate" }
pallet-im-online = { git = "https://github.com/paritytech/substrate" }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate" }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate" }

# node-specific dependencies
robonomics-runtime = { path = "../robonomics-runtime" }
ipci-runtime = { path = "../ipci-runtime" }
sc-executor = { git = "https://github.com/airalab/substrate" }
sc-rpc = { git = "https://github.com/airalab/substrate" }
sc-executor = { git = "https://github.com/paritytech/substrate" }
sc-rpc = { git = "https://github.com/paritytech/substrate" }

# CLI-specific dependencies
sc-cli = { git = "https://github.com/airalab/substrate", optional = true }
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true }

# Browser bundle build support
wasm-bindgen = { version = "0.2.57", optional = true }
wasm-bindgen-futures = { version = "0.4.7", optional = true }
browser-utils = { git = "https://github.com/airalab/substrate", optional = true }
browser-utils = { git = "https://github.com/paritytech/substrate", optional = true }

# Robonomics-specific dependencies
rosrust = { version = "0.9.2", optional = true }
substrate-ros-api = { path = "../../../substrate-ros/api", optional = true }
robonomics-ros-api = { path = "../../../robonomics/ros-api", optional = true }

[build-dependencies]
sc-cli = { git = "https://github.com/airalab/substrate", optional = true }
substrate-build-script-utils = { git = "https://github.com/airalab/substrate" }
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true }
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate" }
vergen = { version = "3.0.4", optional = true }
structopt = { version = "0.3.8", optional = true }

Expand Down Expand Up @@ -125,17 +126,3 @@ ros = [
"substrate-ros-api",
"robonomics-ros-api",
]

## Build native runtime for Robonomics Testnet. (default)
robonomics = [
"robonomics-ros-api/liability",
"robonomics-ros-api/blockchain",
]

## Build native runtime for IPCI blockchain.
# DAO "Integral Platform for Climate Initiatives" is opensource project that build
# public programmable blockchain ecosystem for carbon markets, societal cost mitigation instruments,
# environmental assets, rights and liabilities. https://ipci.io
ipci = [
"robonomics-ros-api/blockchain",
]
76 changes: 38 additions & 38 deletions bin/node/ipci-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,50 +12,50 @@ serde_derive = { version = "1.0", optional = true }
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }

# primitives
node-primitives = { git = "https://github.com/airalab/substrate", default-features = false }
sp-core = { git = "https://github.com/airalab/substrate", default-features = false }
sp-runtime = { git = "https://github.com/airalab/substrate", default-features = false }
sp-staking = { git = "https://github.com/airalab/substrate", default-features = false }
sp-consensus-babe = { git = "https://github.com/airalab/substrate", default-features = false }
sp-offchain = { git = "https://github.com/airalab/substrate", default-features = false }
sp-authority-discovery = { git = "https://github.com/airalab/substrate", default-features = false }
sp-api = { git = "https://github.com/airalab/substrate", default-features = false }
sp-inherents = { git = "https://github.com/airalab/substrate", default-features = false }
sp-block-builder = { git = "https://github.com/airalab/substrate", default-features = false }
sp-transaction-pool = { git = "https://github.com/airalab/substrate", default-features = false }
sp-std = { git = "https://github.com/airalab/substrate", default-features = false }
sp-version = { git = "https://github.com/airalab/substrate", default-features = false }
sp-session = { git = "https://github.com/airalab/substrate", default-features = false }
node-primitives = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-staking = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-offchain = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-api = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-inherents = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-block-builder = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-version = { git = "https://github.com/paritytech/substrate", default-features = false }
sp-session = { git = "https://github.com/paritytech/substrate", default-features = false }

# frame dependencies
pallet-authorship = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-authority-discovery = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-babe = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-balances = { git = "https://github.com/airalab/substrate", default-features = false }
frame-executive = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-finality-tracker = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-grandpa = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-im-online = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-indices = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-identity = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-offences = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-randomness-collective-flip = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-session = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-staking = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-staking-reward-curve = { git = "https://github.com/airalab/substrate" }
pallet-sudo = { git = "https://github.com/airalab/substrate", default-features = false }
frame-support = { git = "https://github.com/airalab/substrate", default-features = false }
frame-system = { git = "https://github.com/airalab/substrate", default-features = false }
frame-system-rpc-runtime-api = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-utility = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-timestamp = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-transaction-payment = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/airalab/substrate", default-features = false }
pallet-authorship = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-authority-discovery = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-babe = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false }
frame-executive = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-finality-tracker = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-grandpa = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-im-online = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-indices = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-identity = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-offences = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-randomness-collective-flip = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-session = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-staking = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-staking-reward-curve = { git = "https://github.com/paritytech/substrate" }
pallet-sudo = { git = "https://github.com/paritytech/substrate", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false }
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-utility = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", default-features = false }
pallet-robonomics-agent-runtime-api = { path = "../../../robonomics/frame/agent/runtime-api", default-features = false }
pallet-robonomics-storage = { path = "../../../robonomics/frame/storage", default-features = false }

[build-dependencies]
substrate-wasm-builder-runner = { version = "1.0.4", git = "https://github.com/airalab/substrate" }
substrate-wasm-builder-runner = { version = "1.0.4", git = "https://github.com/paritytech/substrate" }

[features]
default = ["std"]
Expand Down
Loading

0 comments on commit 3e5449d

Please sign in to comment.