mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-09 20:11:09 +00:00
Cargo.toml fixups for the release (#4975)
* setting versions to development pre-release fixing version in dependencies * unset already released wasm-builder * do not publish test crates * adding licenses * setting homepage metadata * set repository url
This commit is contained in:
committed by
GitHub
parent
4dd4655f21
commit
c412c6230e
@@ -1,10 +1,12 @@
|
||||
[package]
|
||||
name = "browser-utils"
|
||||
version = "0.8.0"
|
||||
version = "0.8.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Utilities for creating a browser light-client."
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3"
|
||||
@@ -17,10 +19,10 @@ js-sys = "0.3.34"
|
||||
wasm-bindgen = "0.2.57"
|
||||
wasm-bindgen-futures = "0.4.7"
|
||||
kvdb-web = "0.4"
|
||||
sc-informant = { version = "0.8", path = "../../client/informant" }
|
||||
sc-service = { version = "0.8", path = "../../client/service", default-features = false }
|
||||
sc-network = { path = "../../client/network" }
|
||||
sc-chain-spec = { path = "../../client/chain-spec" }
|
||||
sc-informant = { version = "0.8.0-dev", path = "../../client/informant" }
|
||||
sc-service = { version = "0.8.0-dev", path = "../../client/service", default-features = false }
|
||||
sc-network = { path = "../../client/network" , version = "0.8.0-dev"}
|
||||
sc-chain-spec = { path = "../../client/chain-spec" , version = "2.0.0-dev"}
|
||||
|
||||
# Imported just for the `no_cc` feature
|
||||
clear_on_drop = { version = "0.2.3", features = ["no_cc"] }
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
[package]
|
||||
name = "substrate-build-script-utils"
|
||||
version = "2.0.0"
|
||||
version = "2.0.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
[package]
|
||||
name = "fork-tree"
|
||||
version = "2.0.0"
|
||||
version = "2.0.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0", features = ["derive"] }
|
||||
|
||||
@@ -1,17 +1,19 @@
|
||||
[package]
|
||||
name = "frame-benchmarking-cli"
|
||||
version = "2.0.0"
|
||||
version = "2.0.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
frame-benchmarking = { version = "2.0.0", path = "../../../frame/benchmarking" }
|
||||
sc-service = { version = "0.8.0", path = "../../../client/service" }
|
||||
sc-cli = { version = "0.8.0", path = "../../../client/cli" }
|
||||
sc-client = { version = "0.8.0", path = "../../../client" }
|
||||
sc-client-db = { version = "0.8.0", path = "../../../client/db" }
|
||||
sc-executor = { version = "0.8.0", path = "../../../client/executor" }
|
||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
||||
frame-benchmarking = { version = "2.0.0-dev", path = "../../../frame/benchmarking" }
|
||||
sc-service = { version = "0.8.0-dev", path = "../../../client/service" }
|
||||
sc-cli = { version = "0.8.0-dev", path = "../../../client/cli" }
|
||||
sc-client = { version = "0.8.0-dev", path = "../../../client" }
|
||||
sc-client-db = { version = "0.8.0-dev", path = "../../../client/db" }
|
||||
sc-executor = { version = "0.8.0-dev", path = "../../../client/executor" }
|
||||
sp-runtime = { version = "2.0.0-dev", path = "../../../primitives/runtime" }
|
||||
structopt = "0.3.8"
|
||||
codec = { version = "1.1.2", package = "parity-scale-codec" }
|
||||
|
||||
@@ -1,9 +1,11 @@
|
||||
[package]
|
||||
name = "substrate-frame-rpc-support"
|
||||
version = "2.0.0"
|
||||
version = "2.0.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>", "Andrew Dirksen <andrew@dirksen.com>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
futures = { version = "0.3.0", features = ["compat"] }
|
||||
@@ -11,10 +13,10 @@ jsonrpc-client-transports = "14"
|
||||
jsonrpc-core = "14"
|
||||
codec = { package = "parity-scale-codec", version = "1" }
|
||||
serde = "1"
|
||||
frame-support = { version = "2.0.0", path = "../../../../frame/support" }
|
||||
sp-storage = { version = "2.0.0", path = "../../../../primitives/storage" }
|
||||
sc-rpc-api = { version = "0.8", path = "../../../../client/rpc-api" }
|
||||
frame-support = { version = "2.0.0-dev", path = "../../../../frame/support" }
|
||||
sp-storage = { version = "2.0.0-dev", path = "../../../../primitives/storage" }
|
||||
sc-rpc-api = { version = "0.8.0-dev", path = "../../../../client/rpc-api" }
|
||||
|
||||
[dev-dependencies]
|
||||
frame-system = { version = "2.0.0", path = "../../../../frame/system" }
|
||||
frame-system = { version = "2.0.0-dev", path = "../../../../frame/system" }
|
||||
tokio = "0.1"
|
||||
|
||||
@@ -1,12 +1,14 @@
|
||||
[package]
|
||||
name = "substrate-frame-rpc-system"
|
||||
version = "2.0.0"
|
||||
version = "2.0.0-dev"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
sc-client = { version = "0.8", path = "../../../../client/" }
|
||||
sc-client = { version = "0.8.0-dev", path = "../../../../client/" }
|
||||
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
||||
futures = "0.3.1"
|
||||
jsonrpc-core = "14.0.3"
|
||||
@@ -14,14 +16,14 @@ jsonrpc-core-client = "14.0.3"
|
||||
jsonrpc-derive = "14.0.3"
|
||||
log = "0.4.8"
|
||||
serde = { version = "1.0.101", features = ["derive"] }
|
||||
sp-runtime = { version = "2.0.0", path = "../../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0", path = "../../../../primitives/api" }
|
||||
frame-system-rpc-runtime-api = { version = "2.0.0", path = "../../../../frame/system/rpc/runtime-api" }
|
||||
sp-core = { version = "2.0.0", path = "../../../../primitives/core" }
|
||||
sp-blockchain = { version = "2.0.0", path = "../../../../primitives/blockchain" }
|
||||
sp-transaction-pool = { version = "2.0.0", path = "../../../../primitives/transaction-pool" }
|
||||
sp-runtime = { version = "2.0.0-dev", path = "../../../../primitives/runtime" }
|
||||
sp-api = { version = "2.0.0-dev", path = "../../../../primitives/api" }
|
||||
frame-system-rpc-runtime-api = { version = "2.0.0-dev", path = "../../../../frame/system/rpc/runtime-api" }
|
||||
sp-core = { version = "2.0.0-dev", path = "../../../../primitives/core" }
|
||||
sp-blockchain = { version = "2.0.0-dev", path = "../../../../primitives/blockchain" }
|
||||
sp-transaction-pool = { version = "2.0.0-dev", path = "../../../../primitives/transaction-pool" }
|
||||
|
||||
[dev-dependencies]
|
||||
substrate-test-runtime-client = { version = "2.0.0", path = "../../../../test-utils/runtime/client" }
|
||||
substrate-test-runtime-client = { version = "2.0.0-dev", path = "../../../../test-utils/runtime/client" }
|
||||
env_logger = "0.7.0"
|
||||
sc-transaction-pool = { version = "2.0.0", path = "../../../../client/transaction-pool" }
|
||||
sc-transaction-pool = { version = "2.0.0-dev", path = "../../../../client/transaction-pool" }
|
||||
|
||||
@@ -1,10 +1,12 @@
|
||||
[package]
|
||||
description = "Prometheus exporter server"
|
||||
name = "prometheus-exporter"
|
||||
version = "0.8.0"
|
||||
version = "0.8.0-dev"
|
||||
license = "GPL-3.0"
|
||||
authors = ["Parity Technologies <admin@parity.io>"]
|
||||
edition = "2018"
|
||||
homepage = "https://substrate.dev"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
|
||||
[dependencies]
|
||||
log = "0.4.8"
|
||||
|
||||
@@ -5,7 +5,8 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Runner for substrate-wasm-builder"
|
||||
edition = "2018"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/paritytech/substrate"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
|
||||
[dependencies]
|
||||
|
||||
@@ -5,8 +5,9 @@ authors = ["Parity Technologies <admin@parity.io>"]
|
||||
description = "Utility for building WASM binaries"
|
||||
edition = "2018"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/paritytech/substrate"
|
||||
repository = "https://github.com/paritytech/substrate/"
|
||||
license = "GPL-3.0"
|
||||
homepage = "https://substrate.dev"
|
||||
|
||||
[dependencies]
|
||||
build-helper = "0.1.1"
|
||||
|
||||
Reference in New Issue
Block a user