diff --git a/Cargo.toml b/Cargo.toml index 760c6ce39533..0a6fc1b97891 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,17 +13,18 @@ path = "src/bin/prepare-worker.rs" [package] name = "polkadot" description = "Implementation of a `https://polkadot.network` node in Rust based on the Substrate framework." -license = "GPL-3.0-only" rust-version = "1.64.0" # workspace properties readme = "README.md" default-run = "polkadot" authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [workspace.package] authors = ["Parity Technologies "] edition = "2021" +license = "GPL-3.0-only" repository = "https://github.com/paritytech/polkadot.git" version = "0.9.43" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 7b782644125a..df1a22d8c18d 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -4,6 +4,7 @@ description = "Polkadot Relay-chain Client Node" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [package.metadata.wasm-pack.profile.release] # `wasm-opt` has some problems on Linux, see diff --git a/core-primitives/Cargo.toml b/core-primitives/Cargo.toml index 7412c2b6e7e0..0ed315e1307e 100644 --- a/core-primitives/Cargo.toml +++ b/core-primitives/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-core-primitives" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false } diff --git a/erasure-coding/Cargo.toml b/erasure-coding/Cargo.toml index 44aa86f881c8..8dfb775c6f49 100644 --- a/erasure-coding/Cargo.toml +++ b/erasure-coding/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-erasure-coding" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] polkadot-primitives = { path = "../primitives" } diff --git a/erasure-coding/fuzzer/Cargo.toml b/erasure-coding/fuzzer/Cargo.toml index e67a00cb0c1a..9dee8e657840 100644 --- a/erasure-coding/fuzzer/Cargo.toml +++ b/erasure-coding/fuzzer/Cargo.toml @@ -3,6 +3,7 @@ name = "erasure_coding_fuzzer" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true publish = false [dependencies] diff --git a/node/collation-generation/Cargo.toml b/node/collation-generation/Cargo.toml index a7badc877d45..d48167af3902 100644 --- a/node/collation-generation/Cargo.toml +++ b/node/collation-generation/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-collation-generation" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/approval-voting/Cargo.toml b/node/core/approval-voting/Cargo.toml index a13065528fe2..a42e449f09f9 100644 --- a/node/core/approval-voting/Cargo.toml +++ b/node/core/approval-voting/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-approval-voting" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/av-store/Cargo.toml b/node/core/av-store/Cargo.toml index 72d8e111480f..4861386bfd7a 100644 --- a/node/core/av-store/Cargo.toml +++ b/node/core/av-store/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-av-store" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/backing/Cargo.toml b/node/core/backing/Cargo.toml index 7428372eec62..d611784d7bba 100644 --- a/node/core/backing/Cargo.toml +++ b/node/core/backing/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-backing" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/bitfield-signing/Cargo.toml b/node/core/bitfield-signing/Cargo.toml index b94cc6708c74..ee147fb5c22a 100644 --- a/node/core/bitfield-signing/Cargo.toml +++ b/node/core/bitfield-signing/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-bitfield-signing" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/candidate-validation/Cargo.toml b/node/core/candidate-validation/Cargo.toml index c0fca9a49996..ba40fea8140b 100644 --- a/node/core/candidate-validation/Cargo.toml +++ b/node/core/candidate-validation/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-candidate-validation" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] async-trait = "0.1.57" diff --git a/node/core/chain-api/Cargo.toml b/node/core/chain-api/Cargo.toml index 8400a2a5bf86..69d737ca2973 100644 --- a/node/core/chain-api/Cargo.toml +++ b/node/core/chain-api/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-chain-api" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/chain-selection/Cargo.toml b/node/core/chain-selection/Cargo.toml index b4104bc6f12d..071fec4415a4 100644 --- a/node/core/chain-selection/Cargo.toml +++ b/node/core/chain-selection/Cargo.toml @@ -4,6 +4,7 @@ description = "Chain Selection Subsystem" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/dispute-coordinator/Cargo.toml b/node/core/dispute-coordinator/Cargo.toml index 2ae1b73d6416..e4069f7f3330 100644 --- a/node/core/dispute-coordinator/Cargo.toml +++ b/node/core/dispute-coordinator/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-dispute-coordinator" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/parachains-inherent/Cargo.toml b/node/core/parachains-inherent/Cargo.toml index d4301cb22270..fdf785fbe66b 100644 --- a/node/core/parachains-inherent/Cargo.toml +++ b/node/core/parachains-inherent/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-parachains-inherent" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/provisioner/Cargo.toml b/node/core/provisioner/Cargo.toml index 7c07118f1f3f..dac671e7ada5 100644 --- a/node/core/provisioner/Cargo.toml +++ b/node/core/provisioner/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-provisioner" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } diff --git a/node/core/pvf-checker/Cargo.toml b/node/core/pvf-checker/Cargo.toml index d41955d9bac5..ee7001524265 100644 --- a/node/core/pvf-checker/Cargo.toml +++ b/node/core/pvf-checker/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-pvf-checker" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/pvf/Cargo.toml b/node/core/pvf/Cargo.toml index 658a26cff09d..d6e9ef576628 100644 --- a/node/core/pvf/Cargo.toml +++ b/node/core/pvf/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-pvf" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [[bin]] name = "puppet_worker" diff --git a/node/core/pvf/common/Cargo.toml b/node/core/pvf/common/Cargo.toml index be119297cbc3..3e674422f812 100644 --- a/node/core/pvf/common/Cargo.toml +++ b/node/core/pvf/common/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-pvf-common" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] cpu-time = "1.0.0" diff --git a/node/core/pvf/execute-worker/Cargo.toml b/node/core/pvf/execute-worker/Cargo.toml index 167e8b4311a3..1c9e2d1f2784 100644 --- a/node/core/pvf/execute-worker/Cargo.toml +++ b/node/core/pvf/execute-worker/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-pvf-execute-worker" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] cpu-time = "1.0.0" diff --git a/node/core/pvf/prepare-worker/Cargo.toml b/node/core/pvf/prepare-worker/Cargo.toml index 3bd1fd43b673..2f18faac712c 100644 --- a/node/core/pvf/prepare-worker/Cargo.toml +++ b/node/core/pvf/prepare-worker/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-pvf-prepare-worker" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/core/runtime-api/Cargo.toml b/node/core/runtime-api/Cargo.toml index 56c36b74757b..22b4a96e60e8 100644 --- a/node/core/runtime-api/Cargo.toml +++ b/node/core/runtime-api/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-core-runtime-api" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/gum/Cargo.toml b/node/gum/Cargo.toml index 6bd4f0758894..9e9e78450292 100644 --- a/node/gum/Cargo.toml +++ b/node/gum/Cargo.toml @@ -3,6 +3,7 @@ name = "tracing-gum" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true description = "Stick logs together with the TraceID as provided by tempo" [dependencies] diff --git a/node/gum/proc-macro/Cargo.toml b/node/gum/proc-macro/Cargo.toml index a762d72c8fca..61f31beb61f3 100644 --- a/node/gum/proc-macro/Cargo.toml +++ b/node/gum/proc-macro/Cargo.toml @@ -3,6 +3,7 @@ name = "tracing-gum-proc-macro" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true description = "Generate an overseer including builder pattern and message wrapper from a single annotated struct definition." [package.metadata.docs.rs] diff --git a/node/jaeger/Cargo.toml b/node/jaeger/Cargo.toml index 8131d4076674..b563b33842b5 100644 --- a/node/jaeger/Cargo.toml +++ b/node/jaeger/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-jaeger" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true description = "Polkadot Jaeger primitives, but equally useful for Grafana/Tempo" [dependencies] diff --git a/node/malus/Cargo.toml b/node/malus/Cargo.toml index 7e0bf0d8dd08..08656ea9f3da 100644 --- a/node/malus/Cargo.toml +++ b/node/malus/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "polkadot-test-malus" description = "Misbehaving nodes for local testnets, system and Simnet tests." -license = "GPL-3.0-only" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true readme = "README.md" publish = false diff --git a/node/metrics/Cargo.toml b/node/metrics/Cargo.toml index 2e9bc22d1cb3..fdb42a1dcde0 100644 --- a/node/metrics/Cargo.toml +++ b/node/metrics/Cargo.toml @@ -4,6 +4,7 @@ description = "Subsystem metric helpers" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/network/approval-distribution/Cargo.toml b/node/network/approval-distribution/Cargo.toml index 34afca6d48f0..bd683b320285 100644 --- a/node/network/approval-distribution/Cargo.toml +++ b/node/network/approval-distribution/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-approval-distribution" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] polkadot-node-metrics = { path = "../../metrics" } diff --git a/node/network/availability-distribution/Cargo.toml b/node/network/availability-distribution/Cargo.toml index ef9ddd12d2dd..823439f1fd65 100644 --- a/node/network/availability-distribution/Cargo.toml +++ b/node/network/availability-distribution/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-availability-distribution" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/network/availability-recovery/Cargo.toml b/node/network/availability-recovery/Cargo.toml index 2d6a6db0f567..f601b8aedc46 100644 --- a/node/network/availability-recovery/Cargo.toml +++ b/node/network/availability-recovery/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-availability-recovery" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/network/bitfield-distribution/Cargo.toml b/node/network/bitfield-distribution/Cargo.toml index 8f7f00d6a682..6f0f3eea2c9b 100644 --- a/node/network/bitfield-distribution/Cargo.toml +++ b/node/network/bitfield-distribution/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-availability-bitfield-distribution" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/network/bridge/Cargo.toml b/node/network/bridge/Cargo.toml index d45900f06dfb..4f3d6306aa8e 100644 --- a/node/network/bridge/Cargo.toml +++ b/node/network/bridge/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-network-bridge" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] always-assert = "0.1" diff --git a/node/network/collator-protocol/Cargo.toml b/node/network/collator-protocol/Cargo.toml index 25bb4fdb825f..4f6adba5487f 100644 --- a/node/network/collator-protocol/Cargo.toml +++ b/node/network/collator-protocol/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-collator-protocol" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] always-assert = "0.1.2" diff --git a/node/network/dispute-distribution/Cargo.toml b/node/network/dispute-distribution/Cargo.toml index c3f18a34531e..dd2b81cb1458 100644 --- a/node/network/dispute-distribution/Cargo.toml +++ b/node/network/dispute-distribution/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-dispute-distribution" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/network/gossip-support/Cargo.toml b/node/network/gossip-support/Cargo.toml index bdc68af4c39e..782213f622cc 100644 --- a/node/network/gossip-support/Cargo.toml +++ b/node/network/gossip-support/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-gossip-support" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/network/protocol/Cargo.toml b/node/network/protocol/Cargo.toml index f1a481081200..cfb7a5c2d0f0 100644 --- a/node/network/protocol/Cargo.toml +++ b/node/network/protocol/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-node-network-protocol" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true description = "Primitives types for the Node-side" [dependencies] diff --git a/node/network/statement-distribution/Cargo.toml b/node/network/statement-distribution/Cargo.toml index c338b0276e51..9d2ee1f621f6 100644 --- a/node/network/statement-distribution/Cargo.toml +++ b/node/network/statement-distribution/Cargo.toml @@ -4,6 +4,7 @@ description = "Statement Distribution Subsystem" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/overseer/Cargo.toml b/node/overseer/Cargo.toml index f242aa940448..b0576f5c61ef 100644 --- a/node/overseer/Cargo.toml +++ b/node/overseer/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-overseer" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] client = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/node/primitives/Cargo.toml b/node/primitives/Cargo.toml index 1bf9c81b60f9..fbd85c1a0551 100644 --- a/node/primitives/Cargo.toml +++ b/node/primitives/Cargo.toml @@ -4,6 +4,7 @@ description = "Primitives types for the Node-side" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bounded-vec = "0.7" diff --git a/node/service/Cargo.toml b/node/service/Cargo.toml index d02bee89ffa1..e373dd4f0011 100644 --- a/node/service/Cargo.toml +++ b/node/service/Cargo.toml @@ -4,6 +4,7 @@ rust-version = "1.60" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] # Substrate Client diff --git a/node/subsystem-test-helpers/Cargo.toml b/node/subsystem-test-helpers/Cargo.toml index 41c48d7f31e1..81bc19a13031 100644 --- a/node/subsystem-test-helpers/Cargo.toml +++ b/node/subsystem-test-helpers/Cargo.toml @@ -4,6 +4,7 @@ description = "Subsystem traits and message definitions" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] async-trait = "0.1.57" diff --git a/node/subsystem-types/Cargo.toml b/node/subsystem-types/Cargo.toml index 70fce755f806..d994682110e5 100644 --- a/node/subsystem-types/Cargo.toml +++ b/node/subsystem-types/Cargo.toml @@ -4,6 +4,7 @@ description = "Subsystem traits and message definitions" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] derive_more = "0.99.17" diff --git a/node/subsystem-util/Cargo.toml b/node/subsystem-util/Cargo.toml index ab4f7a5972f7..8c4de01ab314 100644 --- a/node/subsystem-util/Cargo.toml +++ b/node/subsystem-util/Cargo.toml @@ -4,6 +4,7 @@ description = "Subsystem traits and message definitions" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] async-trait = "0.1.57" diff --git a/node/subsystem/Cargo.toml b/node/subsystem/Cargo.toml index 2d788c10b4c1..368a194091f5 100644 --- a/node/subsystem/Cargo.toml +++ b/node/subsystem/Cargo.toml @@ -4,6 +4,7 @@ description = "Subsystem traits and message definitions and the generated overse version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] polkadot-overseer = { path = "../overseer" } diff --git a/node/test/client/Cargo.toml b/node/test/client/Cargo.toml index 366d244952c1..33c240443d02 100644 --- a/node/test/client/Cargo.toml +++ b/node/test/client/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-test-client" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] } diff --git a/node/test/performance-test/Cargo.toml b/node/test/performance-test/Cargo.toml index 0e5800b920e3..c6d0ce7f7ec9 100644 --- a/node/test/performance-test/Cargo.toml +++ b/node/test/performance-test/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-performance-test" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] thiserror = "1.0.31" diff --git a/node/test/service/Cargo.toml b/node/test/service/Cargo.toml index 504ee5beca74..08e9e3889b06 100644 --- a/node/test/service/Cargo.toml +++ b/node/test/service/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-test-service" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] futures = "0.3.21" diff --git a/node/zombienet-backchannel/Cargo.toml b/node/zombienet-backchannel/Cargo.toml index 0b6bf70611eb..1c032cc3f136 100644 --- a/node/zombienet-backchannel/Cargo.toml +++ b/node/zombienet-backchannel/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "zombienet-backchannel" description = "Zombienet backchannel to notify test runner and coordinate with malus actors." -license = "GPL-3.0-only" readme = "README.md" publish = false version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] tokio = { version = "1.24.2", default-features = false, features = ["macros", "net", "rt-multi-thread", "sync"] } diff --git a/parachain/Cargo.toml b/parachain/Cargo.toml index 70eafb3b8b31..5d49042bc0cc 100644 --- a/parachain/Cargo.toml +++ b/parachain/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-parachain" description = "Types and utilities for creating and working with parachains" authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [dependencies] diff --git a/parachain/test-parachains/Cargo.toml b/parachain/test-parachains/Cargo.toml index b5c1303590f2..a3fa882e1f4c 100644 --- a/parachain/test-parachains/Cargo.toml +++ b/parachain/test-parachains/Cargo.toml @@ -4,6 +4,7 @@ description = "Integration tests using the test-parachains" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true publish = false [dependencies] diff --git a/parachain/test-parachains/adder/Cargo.toml b/parachain/test-parachains/adder/Cargo.toml index 64123d312550..5e1b9a7d174c 100644 --- a/parachain/test-parachains/adder/Cargo.toml +++ b/parachain/test-parachains/adder/Cargo.toml @@ -3,6 +3,7 @@ name = "test-parachain-adder" description = "Test parachain which adds to a number as its state transition" build = "build.rs" edition.workspace = true +license.workspace = true version.workspace = true authors.workspace = true diff --git a/parachain/test-parachains/adder/collator/Cargo.toml b/parachain/test-parachains/adder/collator/Cargo.toml index 29a10069e3e0..fec95a5718a1 100644 --- a/parachain/test-parachains/adder/collator/Cargo.toml +++ b/parachain/test-parachains/adder/collator/Cargo.toml @@ -4,6 +4,7 @@ description = "Collator for the adder test parachain" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [[bin]] name = "adder-collator" diff --git a/parachain/test-parachains/halt/Cargo.toml b/parachain/test-parachains/halt/Cargo.toml index a5147bb98fa8..99076aae6aa3 100644 --- a/parachain/test-parachains/halt/Cargo.toml +++ b/parachain/test-parachains/halt/Cargo.toml @@ -5,6 +5,7 @@ build = "build.rs" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] diff --git a/parachain/test-parachains/undying/Cargo.toml b/parachain/test-parachains/undying/Cargo.toml index e2a8448ebf15..43cb1bc37fda 100644 --- a/parachain/test-parachains/undying/Cargo.toml +++ b/parachain/test-parachains/undying/Cargo.toml @@ -5,6 +5,7 @@ build = "build.rs" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] parachain = { package = "polkadot-parachain", path = "../../", default-features = false, features = [ "wasm-api" ] } diff --git a/parachain/test-parachains/undying/collator/Cargo.toml b/parachain/test-parachains/undying/collator/Cargo.toml index f63757a20958..4f1a34f977c8 100644 --- a/parachain/test-parachains/undying/collator/Cargo.toml +++ b/parachain/test-parachains/undying/collator/Cargo.toml @@ -2,6 +2,7 @@ name = "test-parachain-undying-collator" description = "Collator for the undying test parachain" edition.workspace = true +license.workspace = true version.workspace = true authors.workspace = true diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 691e987331fa..51c2bf8bea42 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-primitives" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } diff --git a/primitives/test-helpers/Cargo.toml b/primitives/test-helpers/Cargo.toml index 917e5f3babdb..a1f7f9268b9f 100644 --- a/primitives/test-helpers/Cargo.toml +++ b/primitives/test-helpers/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-primitives-test-helpers" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" } diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index 6f1c7bfa81ba..18913718676c 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-rpc" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] jsonrpsee = { version = "0.16.2", features = ["server"] } diff --git a/runtime/common/Cargo.toml b/runtime/common/Cargo.toml index b671a5026fd4..c9812d806733 100644 --- a/runtime/common/Cargo.toml +++ b/runtime/common/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-runtime-common" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] impl-trait-for-tuples = "0.2.2" diff --git a/runtime/common/slot_range_helper/Cargo.toml b/runtime/common/slot_range_helper/Cargo.toml index 3012b64cbd0b..3d48b1c03c53 100644 --- a/runtime/common/slot_range_helper/Cargo.toml +++ b/runtime/common/slot_range_helper/Cargo.toml @@ -3,6 +3,7 @@ name = "slot-range-helper" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] paste = "1.0" diff --git a/runtime/kusama/Cargo.toml b/runtime/kusama/Cargo.toml index 3b8c5cd3bb68..645215bc2c22 100644 --- a/runtime/kusama/Cargo.toml +++ b/runtime/kusama/Cargo.toml @@ -4,6 +4,7 @@ build = "build.rs" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } diff --git a/runtime/kusama/constants/Cargo.toml b/runtime/kusama/constants/Cargo.toml index 38f91eccabd1..11ff70cd8c9b 100644 --- a/runtime/kusama/constants/Cargo.toml +++ b/runtime/kusama/constants/Cargo.toml @@ -3,6 +3,7 @@ name = "kusama-runtime-constants" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] smallvec = "1.11.0" diff --git a/runtime/metrics/Cargo.toml b/runtime/metrics/Cargo.toml index ebabb6a832a9..7bbf8d066f05 100644 --- a/runtime/metrics/Cargo.toml +++ b/runtime/metrics/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-runtime-metrics" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] sp-std = { package = "sp-std", git = "https://github.com/paritytech/substrate", branch = "master", default-features = false} diff --git a/runtime/parachains/Cargo.toml b/runtime/parachains/Cargo.toml index dda0c2b38715..c3acdd781ea2 100644 --- a/runtime/parachains/Cargo.toml +++ b/runtime/parachains/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-runtime-parachains" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } diff --git a/runtime/polkadot/Cargo.toml b/runtime/polkadot/Cargo.toml index eac818c70e00..0ab06b8bbb12 100644 --- a/runtime/polkadot/Cargo.toml +++ b/runtime/polkadot/Cargo.toml @@ -4,6 +4,7 @@ build = "build.rs" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } diff --git a/runtime/polkadot/constants/Cargo.toml b/runtime/polkadot/constants/Cargo.toml index 03e5f55f52b1..a10546edfa7b 100644 --- a/runtime/polkadot/constants/Cargo.toml +++ b/runtime/polkadot/constants/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-runtime-constants" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] smallvec = "1.11.0" diff --git a/runtime/rococo/Cargo.toml b/runtime/rococo/Cargo.toml index 8c2aa82bfbc2..41d25d3aa6f6 100644 --- a/runtime/rococo/Cargo.toml +++ b/runtime/rococo/Cargo.toml @@ -4,6 +4,7 @@ build = "build.rs" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive", "max-encoded-len"] } diff --git a/runtime/rococo/constants/Cargo.toml b/runtime/rococo/constants/Cargo.toml index 9fbd51df534a..f9ea1186c550 100644 --- a/runtime/rococo/constants/Cargo.toml +++ b/runtime/rococo/constants/Cargo.toml @@ -3,6 +3,7 @@ name = "rococo-runtime-constants" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] smallvec = "1.11.0" diff --git a/runtime/test-runtime/Cargo.toml b/runtime/test-runtime/Cargo.toml index b3318f59477e..76bd63d59462 100644 --- a/runtime/test-runtime/Cargo.toml +++ b/runtime/test-runtime/Cargo.toml @@ -4,6 +4,7 @@ build = "build.rs" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } diff --git a/runtime/test-runtime/constants/Cargo.toml b/runtime/test-runtime/constants/Cargo.toml index 30f5c68589ef..9b435da80682 100644 --- a/runtime/test-runtime/constants/Cargo.toml +++ b/runtime/test-runtime/constants/Cargo.toml @@ -3,6 +3,7 @@ name = "test-runtime-constants" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] smallvec = "1.11.0" diff --git a/runtime/westend/Cargo.toml b/runtime/westend/Cargo.toml index 29a71f4d9985..4773176e1762 100644 --- a/runtime/westend/Cargo.toml +++ b/runtime/westend/Cargo.toml @@ -4,6 +4,7 @@ build = "build.rs" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bitvec = { version = "1.0.0", default-features = false, features = ["alloc"] } diff --git a/runtime/westend/constants/Cargo.toml b/runtime/westend/constants/Cargo.toml index 42fdd796b0f8..e5d9900e22e2 100644 --- a/runtime/westend/constants/Cargo.toml +++ b/runtime/westend/constants/Cargo.toml @@ -3,6 +3,7 @@ name = "westend-runtime-constants" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] smallvec = "1.11.0" diff --git a/statement-table/Cargo.toml b/statement-table/Cargo.toml index 04a309685b6b..6c1a3d143454 100644 --- a/statement-table/Cargo.toml +++ b/statement-table/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-statement-table" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] parity-scale-codec = { version = "3.6.1", default-features = false, features = ["derive"] } diff --git a/utils/generate-bags/Cargo.toml b/utils/generate-bags/Cargo.toml index 2038dc94a1ea..1a0f1d3fbfcf 100644 --- a/utils/generate-bags/Cargo.toml +++ b/utils/generate-bags/Cargo.toml @@ -3,6 +3,7 @@ name = "polkadot-voter-bags" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] clap = { version = "4.0.9", features = ["derive"] } diff --git a/utils/remote-ext-tests/bags-list/Cargo.toml b/utils/remote-ext-tests/bags-list/Cargo.toml index 7eb945ef65b2..772efb1eddd0 100644 --- a/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/utils/remote-ext-tests/bags-list/Cargo.toml @@ -3,6 +3,7 @@ name = "remote-ext-tests-bags-list" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] polkadot-runtime = { path = "../../../runtime/polkadot" } diff --git a/utils/staking-miner/Cargo.toml b/utils/staking-miner/Cargo.toml index 8d951503408d..05b0ddefaee9 100644 --- a/utils/staking-miner/Cargo.toml +++ b/utils/staking-miner/Cargo.toml @@ -7,6 +7,7 @@ name = "staking-miner" version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true publish = false [dependencies] diff --git a/xcm/Cargo.toml b/xcm/Cargo.toml index ca407dc908fb..a03d392d5fd0 100644 --- a/xcm/Cargo.toml +++ b/xcm/Cargo.toml @@ -4,6 +4,7 @@ description = "The basic XCM datastructures." version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] bounded-collections = { version = "0.1.8", default-features = false, features = ["serde"] } diff --git a/xcm/pallet-xcm-benchmarks/Cargo.toml b/xcm/pallet-xcm-benchmarks/Cargo.toml index a74c8baac49a..a77b58059b42 100644 --- a/xcm/pallet-xcm-benchmarks/Cargo.toml +++ b/xcm/pallet-xcm-benchmarks/Cargo.toml @@ -2,6 +2,7 @@ name = "pallet-xcm-benchmarks" authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [package.metadata.docs.rs] diff --git a/xcm/pallet-xcm/Cargo.toml b/xcm/pallet-xcm/Cargo.toml index 849d1f02ad20..7d5d278b0e0a 100644 --- a/xcm/pallet-xcm/Cargo.toml +++ b/xcm/pallet-xcm/Cargo.toml @@ -2,6 +2,7 @@ name = "pallet-xcm" authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true diff --git a/xcm/procedural/Cargo.toml b/xcm/procedural/Cargo.toml index 6b7fc95204cc..b60c8eed6151 100644 --- a/xcm/procedural/Cargo.toml +++ b/xcm/procedural/Cargo.toml @@ -2,6 +2,7 @@ name = "xcm-procedural" authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [lib] diff --git a/xcm/xcm-builder/Cargo.toml b/xcm/xcm-builder/Cargo.toml index 7dc7a7fc0aa2..fec354d0caea 100644 --- a/xcm/xcm-builder/Cargo.toml +++ b/xcm/xcm-builder/Cargo.toml @@ -3,6 +3,7 @@ name = "xcm-builder" description = "Tools & types for building with XCM and its executor." authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [dependencies] diff --git a/xcm/xcm-executor/Cargo.toml b/xcm/xcm-executor/Cargo.toml index 4e6c63a19081..92e6dc95442f 100644 --- a/xcm/xcm-executor/Cargo.toml +++ b/xcm/xcm-executor/Cargo.toml @@ -3,6 +3,7 @@ name = "xcm-executor" description = "An abstract and configurable XCM message executor." authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [dependencies] diff --git a/xcm/xcm-executor/integration-tests/Cargo.toml b/xcm/xcm-executor/integration-tests/Cargo.toml index 4fff3952a05d..d2af1304beb6 100644 --- a/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/xcm/xcm-executor/integration-tests/Cargo.toml @@ -3,6 +3,7 @@ name = "xcm-executor-integration-tests" description = "Integration tests for the XCM Executor" authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [dependencies] diff --git a/xcm/xcm-simulator/Cargo.toml b/xcm/xcm-simulator/Cargo.toml index bb23b8b092a4..79ee27c6041c 100644 --- a/xcm/xcm-simulator/Cargo.toml +++ b/xcm/xcm-simulator/Cargo.toml @@ -4,6 +4,7 @@ description = "Test kit to simulate cross-chain message passing and XCM executio version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] codec = { package = "parity-scale-codec", version = "3.6.1" } diff --git a/xcm/xcm-simulator/example/Cargo.toml b/xcm/xcm-simulator/example/Cargo.toml index 0bf0654cc4ed..7d47755dc488 100644 --- a/xcm/xcm-simulator/example/Cargo.toml +++ b/xcm/xcm-simulator/example/Cargo.toml @@ -3,6 +3,7 @@ name = "xcm-simulator-example" description = "Examples of xcm-simulator usage." authors.workspace = true edition.workspace = true +license.workspace = true version.workspace = true [dependencies] diff --git a/xcm/xcm-simulator/fuzzer/Cargo.toml b/xcm/xcm-simulator/fuzzer/Cargo.toml index 1c36a1595ec0..ce0528adf1f5 100644 --- a/xcm/xcm-simulator/fuzzer/Cargo.toml +++ b/xcm/xcm-simulator/fuzzer/Cargo.toml @@ -4,6 +4,7 @@ description = "Examples of xcm-simulator usage." version.workspace = true authors.workspace = true edition.workspace = true +license.workspace = true [dependencies] codec = { package = "parity-scale-codec", version = "3.6.1" }