clarify licensing (#4755)

* adding license fields to all crates

* Apply suggestions from code review

Co-Authored-By: Bastian Köcher <bkchr@users.noreply.github.com>

Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
Benjamin Kampmann
2020-01-29 11:57:13 +01:00
committed by GitHub
parent b452867eb7
commit 3f9a05a0d3
145 changed files with 150 additions and 16 deletions
@@ -3,6 +3,7 @@ name = "node-template-release"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
toml = "0.4"
+1 -11
View File
@@ -5308,7 +5308,7 @@ dependencies = [
"sp-state-machine 0.8.0",
"sp-trie 2.0.0",
"substrate-test-runtime-client 2.0.0",
"tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)",
"tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
@@ -7203,15 +7203,6 @@ name = "target_info"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "tempdir"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)",
"remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "tempfile"
version = "3.1.0"
@@ -8861,7 +8852,6 @@ dependencies = [
"checksum take_mut 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"
"checksum target-lexicon 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f4c118a7a38378f305a9e111fcb2f7f838c0be324bfb31a77ea04f7f6e684b4"
"checksum target_info 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c63f48baada5c52e65a29eef93ab4f8982681b67f9e8d29c7b05abcfec2b9ffe"
"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8"
"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e"
"checksum test-case 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a605baa797821796a751f4a959e1206079b24a4b7e1ed302b7d785d81a9276c9"
+1
View File
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Anonymous"]
build = "build.rs"
edition = "2018"
license = "Unlicense"
[[bin]]
name = "node-template"
@@ -3,6 +3,7 @@ name = "node-template-runtime"
version = "2.0.0"
authors = ["Anonymous"]
edition = "2018"
license = "Unlicense"
[dependencies]
aura = { version = "2.0.0", default-features = false, package = "pallet-aura", path = "../../../frame/aura" }
+1
View File
@@ -5,6 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node implementation in Rust."
build = "build.rs"
edition = "2018"
license = "GPL-3.0"
default-run = "substrate"
[badges]
+1
View File
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate node implementation in Rust."
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
+1
View File
@@ -3,6 +3,7 @@ name = "node-primitives"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-core = { version = "2.0.0", default-features = false, path = "../../../primitives/core" }
+1
View File
@@ -3,6 +3,7 @@ name = "node-rpc-client"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
env_logger = "0.7.0"
+1
View File
@@ -3,6 +3,7 @@ name = "node-rpc"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sc-client = { version = "0.8", path = "../../../client/" }
+2
View File
@@ -4,8 +4,10 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
license = "GPL-3.0"
[dependencies]
# third-party dependencies
codec = { package = "parity-scale-codec", version = "1.0.6", default-features = false, features = ["derive"] }
integer-sqrt = { version = "0.1.2" }
+1
View File
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Test utilities for Substrate node."
edition = "2018"
license = "GPL-3.0"
[dependencies]
pallet-balances = { version = "2.0.0", path = "../../../frame/balances" }
@@ -3,6 +3,7 @@ name = "node-transaction-factory"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-block-builder = { version = "2.0.0", path = "../../../primitives/block-builder" }
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
license = "GPL-3.0"
[dependencies]
ansi_term = "0.12.1"
+1
View File
@@ -3,6 +3,7 @@ name = "subkey"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
futures = "0.1.29"
+1
View File
@@ -3,6 +3,7 @@ name = "sc-client"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sc-block-builder = { version = "0.8", path = "block-builder" }
+1
View File
@@ -3,6 +3,7 @@ name = "sc-client-api"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
@@ -4,6 +4,7 @@ version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
license = "GPL-3.0"
[build-dependencies]
prost-build = "0.5.0"
@@ -3,6 +3,7 @@ name = "sc-basic-authorship"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
log = "0.4.8"
@@ -3,6 +3,7 @@ name = "sc-block-builder"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-state-machine = { version = "0.8", path = "../../primitives/state-machine" }
+1
View File
@@ -3,6 +3,7 @@ name = "sc-chain-spec"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sc-chain-spec-derive = { version = "2.0.0", path = "./derive" }
@@ -3,6 +3,7 @@ name = "sc-chain-spec-derive"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[lib]
proc-macro = true
+1
View File
@@ -4,6 +4,7 @@ version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Substrate CLI interface."
edition = "2018"
license = "GPL-3.0"
[dependencies]
clap = "2.33.0"
@@ -4,6 +4,7 @@ version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Aura consensus algorithm for substrate"
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-application-crypto = { version = "2.0.0", path = "../../../primitives/application-crypto" }
@@ -4,6 +4,7 @@ version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "BABE consensus algorithm for substrate"
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
@@ -4,6 +4,7 @@ version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Manual sealing engine for Substrate"
edition = "2018"
license = "GPL-3.0"
[dependencies]
derive_more = "0.99.2"
@@ -4,6 +4,7 @@ version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "PoW consensus algorithm for substrate"
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
@@ -5,6 +5,7 @@ authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic slots-based utilities for consensus"
edition = "2018"
build = "build.rs"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
@@ -4,6 +4,7 @@ version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Generic uncle inclusion utilities for consensus"
edition = "2018"
license = "GPL-3.0"
[dependencies]
sc-client-api = { version = "2.0.0", path = "../../api" }
+2 -1
View File
@@ -3,6 +3,7 @@ name = "sc-client-db"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
parking_lot = "0.9.0"
@@ -32,7 +33,7 @@ substrate-test-runtime-client = { version = "2.0.0", path = "../../test-utils/ru
env_logger = "0.7.0"
quickcheck = "0.9"
kvdb-rocksdb = "0.4"
tempdir = "0.3"
tempfile = "3"
[features]
default = []
+3 -3
View File
@@ -172,14 +172,14 @@ mod tests {
#[test]
fn downgrade_never_happens() {
let db_dir = tempdir::TempDir::new("").unwrap();
let db_dir = tempfile::TempDir::new().unwrap();
create_db(db_dir.path(), Some(CURRENT_VERSION + 1));
assert!(open_database(db_dir.path()).is_err());
}
#[test]
fn open_empty_database_works() {
let db_dir = tempdir::TempDir::new("").unwrap();
let db_dir = tempfile::TempDir::new().unwrap();
open_database(db_dir.path()).unwrap();
open_database(db_dir.path()).unwrap();
assert_eq!(current_version(db_dir.path()).unwrap(), CURRENT_VERSION);
@@ -188,7 +188,7 @@ mod tests {
#[test]
fn upgrade_from_0_to_1_works() {
for version_from_file in &[None, Some(0)] {
let db_dir = tempdir::TempDir::new("").unwrap();
let db_dir = tempfile::TempDir::new().unwrap();
let db_path = db_dir.path();
create_db(db_path, *version_from_file);
open_database(db_path).unwrap();
+1
View File
@@ -3,6 +3,7 @@ name = "sc-executor"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
derive_more = "0.99.2"
@@ -3,6 +3,7 @@ name = "sc-executor-common"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
log = "0.4.8"
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
build = "build.rs"
license = "GPL-3.0"
[dependencies]
sp-std = { version = "2.0.0", default-features = false, path = "../../../primitives/std" }
@@ -3,6 +3,7 @@ name = "sc-executor-wasmi"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
log = "0.4.8"
@@ -3,6 +3,7 @@ name = "sc-executor-wasmtime"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
log = "0.4.8"
@@ -3,6 +3,7 @@ name = "sc-finality-grandpa"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
fork-tree = { version = "2.0.0", path = "../../utils/fork-tree" }
+1
View File
@@ -3,6 +3,7 @@ name = "sc-keystore"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
derive_more = "0.99.2"
+1
View File
@@ -3,6 +3,7 @@ name = "sc-rpc-api"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
+1
View File
@@ -3,6 +3,7 @@ name = "sc-rpc-server"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
jsonrpc-core = "14.0.3"
+1
View File
@@ -3,6 +3,7 @@ name = "sc-rpc"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sc-rpc-api = { version = "0.8", path = "../rpc-api" }
+1
View File
@@ -3,6 +3,7 @@ name = "sc-service"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[features]
default = ["rocksdb"]
+1
View File
@@ -3,6 +3,7 @@ name = "sc-service-test"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
tempfile = "3.1.0"
+1
View File
@@ -3,6 +3,7 @@ name = "sc-state-db"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
parking_lot = "0.9.0"
+1
View File
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
description = "Telemetry utils"
edition = "2018"
license = "GPL-3.0"
[dependencies]
bytes = "0.5"
@@ -3,6 +3,7 @@ name = "sc-transaction-pool"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
@@ -3,6 +3,7 @@ name = "sc-transaction-graph"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
derive_more = "0.99.2"
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-assets"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-aura"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
@@ -3,6 +3,7 @@ name = "pallet-authority-discovery"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-authority-discovery = { version = "2.0.0", default-features = false, path = "../../primitives/authority-discovery" }
+1
View File
@@ -4,6 +4,7 @@ version = "2.0.0"
description = "Block and Uncle Author tracking for the SRML"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-core = { version = "2.0.0", default-features = false, path = "../../primitives/core" }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-babe"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
hex-literal = "0.2.1"
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-balances"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-collective"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-contracts"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-contracts-rpc"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
@@ -3,6 +3,7 @@ name = "pallet-contracts-rpc-runtime-api"
version = "0.8.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-api = { version = "2.0.0", default-features = false, path = "../../../../primitives/api" }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-democracy"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
@@ -3,6 +3,7 @@ name = "pallet-elections-phragmen"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-elections"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-evm"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-example"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "frame-executive"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
@@ -3,6 +3,7 @@ name = "pallet-finality-tracker"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", default-features = false, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-generic-asset"
version = "2.0.0"
authors = ["Centrality Developers <support@centrality.ai>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-grandpa"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-identity"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-im-online"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-application-crypto = { version = "2.0.0", default-features = false, path = "../../primitives/application-crypto" }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-indices"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-membership"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "frame-metadata"
version = "10.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-nicks"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-offences"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
pallet-balances = { version = "2.0.0", default-features = false, path = "../balances" }
@@ -3,6 +3,7 @@ name = "pallet-randomness-collective-flip"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
safe-mix = { version = "1.0", default-features = false }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-recovery"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-scored-pool"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
+2 -1
View File
@@ -2,7 +2,8 @@
name = "pallet-session"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-society"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-staking"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
@@ -3,6 +3,7 @@ name = "pallet-staking-reward-curve"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[lib]
proc-macro = true
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-sudo"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
+1
View File
@@ -3,6 +3,7 @@ name = "frame-support"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
log = "0.4"
@@ -3,6 +3,7 @@ name = "frame-support-procedural"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[lib]
proc-macro = true
@@ -3,6 +3,7 @@ name = "frame-support-procedural-tools"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
frame-support-procedural-tools-derive = { version = "2.0.0", path = "./derive" }
@@ -3,6 +3,7 @@ name = "frame-support-procedural-tools-derive"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[lib]
proc-macro = true
+1
View File
@@ -3,6 +3,7 @@ name = "frame-support-test"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", default-features = false, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "frame-system"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
@@ -3,6 +3,7 @@ name = "frame-system-rpc-runtime-api"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-api = { version = "2.0.0", default-features = false, path = "../../../../primitives/api" }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-timestamp"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
@@ -3,6 +3,7 @@ name = "pallet-transaction-payment"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }
@@ -3,6 +3,7 @@ name = "pallet-transaction-payment-rpc"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0" }
@@ -3,6 +3,7 @@ name = "pallet-transaction-payment-rpc-runtime-api"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-treasury"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true, features = ["derive"] }
+1
View File
@@ -3,6 +3,7 @@ name = "pallet-utility"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
serde = { version = "1.0.101", optional = true }
@@ -3,6 +3,7 @@ name = "sp-allocator"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-std = { version = "2.0.0", path = "../std", default-features = false }
+1
View File
@@ -3,6 +3,7 @@ name = "sp-api"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false }
@@ -3,6 +3,7 @@ name = "sp-api-proc-macro"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[lib]
proc-macro = true
+1
View File
@@ -3,6 +3,7 @@ name = "sp-api-test"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
sp-api = { version = "2.0.0", path = "../" }
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Provides facilities for generating application specific crypto wrapper types."
license = "GPL-3.0"
[dependencies]
sp-core = { version = "2.0.0", default-features = false, path = "../core" }
@@ -4,6 +4,7 @@ version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
description = "Integration tests for application-crypto"
license = "GPL-3.0"
publish = false
[dependencies]
@@ -3,6 +3,7 @@ name = "sp-arithmetic"
version = "2.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2018"
license = "GPL-3.0"
[dependencies]
codec = { package = "parity-scale-codec", version = "1.0.0", default-features = false, features = ["derive"] }

Some files were not shown because too many files have changed in this diff Show More