Skip to content
This repository was archived by the owner on Oct 5, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
50 changes: 25 additions & 25 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,31 +22,31 @@ hex-literal = { optional = true, version = '0.3.1' }
serde = { features = ['derive'], optional = true, version = '1.0.101' }

# Substrate dependencies
frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
frame-system-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate.git",version = "3.0.0" }
pallet-grandpa = { default-features = false, git = "https://github.com/paritytech/substrate.git",version = "3.0.0" }
pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate.git",version = "3.0.0" }
pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate.git",version = "3.0.0" }
sp-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "0.9.0" }
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-session = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
sp-version = { default-features = false, git = "https://github.com/paritytech/substrate.git", version = "3.0.0" }
frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate.git", branch = "master" }
frame-executive = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
frame-support = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
frame-system = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
frame-system-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate.git", branch = "master" }
frame-system-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
pallet-aura = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
pallet-balances = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
pallet-grandpa = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
pallet-randomness-collective-flip = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
pallet-sudo = { default-features = false, git = "https://github.com/paritytech/substrate.git",branch = "master" }
pallet-timestamp = { default-features = false, git = "https://github.com/paritytech/substrate.git",branch = "master" }
pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate.git",branch = "master" }
pallet-transaction-payment-rpc-runtime-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-api = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-block-builder = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-consensus-aura = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-core = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-inherents = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-offchain = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-session = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-std = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-transaction-pool = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }
sp-version = { default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "master" }

[features]
default = ['std']
Expand Down
18 changes: 9 additions & 9 deletions substrate-sgx/sp-io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,49 +21,49 @@ sgx_log = { package = "log", git = "https://github.com/mesalock-linux/log-

[dependencies.sp-std]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
default-features = false

[dependencies.sp-core]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
default-features = false
features=["full_crypto"]

[dependencies.sp-state-machine]
git = "https://github.com/paritytech/substrate.git"
version = "0.9.0"
branch = "master"
optional = true

[dependencies.sp-runtime-interface]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
default-features = false

[dependencies.sp-wasm-interface]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
default-features = false

[dependencies.sp-tracing]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
default-features = false

[dependencies.sp-trie]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
optional = true

[dependencies.sp-keystore]
git = "https://github.com/paritytech/substrate.git"
version = "0.9.0"
branch = "master"
default-features = false
optional = true

[dependencies.sp-externalities]
git = "https://github.com/paritytech/substrate.git"
version = "0.9.0"
branch = "master"
optional = true

[dependencies.sgx-externalities]
Expand Down
4 changes: 2 additions & 2 deletions test_no_std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ features = ["disable_oom", "disable_panic_handler", "disable_allocator", "sgx"]

[dependencies.sp-application-crypto]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
default-features = false
features = ["full_crypto"]

[dependencies.sp-core]
git = "https://github.com/paritytech/substrate.git"
version = "3.0.0"
branch = "master"
default-features = false
features = ["full_crypto"]