Skip to content

Commit

Permalink
Update rust - all minor and patch updates
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Dec 4, 2023
1 parent 71a6827 commit 2c42284
Show file tree
Hide file tree
Showing 11 changed files with 207 additions and 127 deletions.
260 changes: 170 additions & 90 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ name = 'dscp-node'
targets = ['x86_64-unknown-linux-gnu']

[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
futures = { version = "0.3.27", features = ["thread-pool"] }
bs58 = "0.4.0"
clap = { version = "4.4.11", features = ["derive"] }
futures = { version = "0.3.29", features = ["thread-pool"] }
bs58 = "0.5.0"

sc-cli = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
sp-core = { version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
Expand Down
6 changes: 3 additions & 3 deletions pallets/doas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
serde = { version = "1.0.159", optional = true }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.193", optional = true }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = ["derive"] }
frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
frame-system = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
frame-benchmarking = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", optional = true , branch = "polkadot-v0.9.42" }
Expand Down
6 changes: 3 additions & 3 deletions pallets/process-validation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ version = "3.4.3"
targets = ['x86_64-unknown-linux-gnu']

[dependencies]
serde = { version = "1.0.159", optional = true }
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.193", optional = true }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = ["derive"] }
dscp-pallet-traits = { default-features = false, path = '../traits' }
frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
frame-system = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
Expand Down
6 changes: 3 additions & 3 deletions pallets/symmetric-key/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ version = "2.0.3"
targets = ['x86_64-unknown-linux-gnu']

[dependencies]
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = ["derive"] }
frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
frame-system = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
frame-benchmarking = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", optional = true , branch = "polkadot-v0.9.42" }
Expand All @@ -21,7 +21,7 @@ sp-io = { default-features = false, version = "7.0.0", git = "https://github.com
sp-std = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }

[dev-dependencies]
serde = { version = "1.0.159" }
serde = { version = "1.0.193" }
frame-support-test = { version = "3.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
pallet-scheduler = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
sp-core = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
Expand Down
4 changes: 2 additions & 2 deletions pallets/traits/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ repository = 'https://github.com/digicatapult/dscp-node/'
description = "Common pallet traits for the dscp-node"

[dependencies]
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = ["derive"] }
sp-std = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }

Expand Down
8 changes: 4 additions & 4 deletions pallets/transaction-payment-free/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = ["derive"] }
serde = { version = "1.0.159", optional = true }
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = ["derive"] }
serde = { version = "1.0.193", optional = true }
sp-std = { default-features = false, version = "5.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
sp-runtime = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
Expand All @@ -27,7 +27,7 @@ sp-core = { default-features = false, version = "7.0.0", git = "https://github.c

[dev-dependencies]
pallet-balances = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
serde_json = "1.0.95"
serde_json = "1.0.108"

[features]
default = ["std"]
Expand Down
6 changes: 3 additions & 3 deletions pallets/utxo-nft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ version = "6.1.1"
targets = ['x86_64-unknown-linux-gnu']

[dependencies]
scale-info = { version = "2.5.0", default-features = false, features = [
scale-info = { version = "2.10.0", default-features = false, features = [
"derive",
] }
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = [
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = [
"derive",
] }
dscp-pallet-traits = { default-features = false, path = '../traits' }
Expand All @@ -28,7 +28,7 @@ sp-std = { default-features = false, version = "5.0.0", git = "https://github.co
sp-core = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", optional = true, branch = "polkadot-v0.9.42" }

[dev-dependencies]
serde = { version = "1.0.159" }
serde = { version = "1.0.193" }
sp-core = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }


Expand Down
12 changes: 6 additions & 6 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ repository = "https://github.com/digicatapult/dscp-node/"
targets = ["x86_64-unknown-linux-gnu"]

[dependencies]
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = [
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = [
"derive",
] }
scale-info = { version = "2.5.0", default-features = false, features = [
scale-info = { version = "2.10.0", default-features = false, features = [
"derive",
] }

Expand Down Expand Up @@ -47,16 +47,16 @@ pallet-membership = { version = "4.0.0-dev", default-features = false, git = "ht
pallet-node-authorization = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
pallet-preimage = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
pallet-scheduler = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
strum = { version = "0.24.1", features = [] }
strum_macros = { version = "0.24.3", features = [] }
strum = { version = "0.25.0", features = [] }
strum_macros = { version = "0.25.3", features = [] }

# Used for the node template's RPCs
frame-system-rpc-runtime-api = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }

# Used for runtime benchmarking
frame-benchmarking = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", optional = true, branch = "polkadot-v0.9.42" }
frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, git = "https://github.com/paritytech/substrate.git", optional = true, branch = "polkadot-v0.9.42" }
hex-literal = { version = "0.3.4", optional = true }
hex-literal = { version = "0.4.1", optional = true }

# Local Dependencies
pallet-doas = { default-features = false, package = 'pallet-doas', path = '../pallets/doas' }
Expand All @@ -66,7 +66,7 @@ pallet-symmetric-key = { default-features = false, package = 'pallet-symmetric-k
pallet-transaction-payment-free = { default-features = false, package = 'pallet-transaction-payment-free', path = '../pallets/transaction-payment-free' }
dscp-runtime-types = { default-features = false, package = "dscp-runtime-types", path = './types' }

serde = { version = "1.0.159" }
serde = { version = "1.0.193" }

[build-dependencies]
substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
Expand Down
10 changes: 5 additions & 5 deletions runtime/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ version = "1.0.0"
targets = ['x86_64-unknown-linux-gnu']

[dependencies]
serde = { version = "1.0.159", optional = true }
scale-info = { version = "2.5.0", default-features = false, features = [
serde = { version = "1.0.193", optional = true }
scale-info = { version = "2.10.0", default-features = false, features = [
"derive",
] }
codec = { package = "parity-scale-codec", version = "3.4.0", default-features = false, features = [
codec = { package = "parity-scale-codec", version = "3.6.9", default-features = false, features = [
"derive",
] }
frame-support = { default-features = false, version = "4.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
sp-core = { version = "7.0.0", default-features = false, git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
sp-runtime = { default-features = false, version = "7.0.0", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.42" }
strum = { version = "0.24.1", features = [] }
strum_macros = { version = "0.24.3", features = [] }
strum = { version = "0.25.0", features = [] }
strum_macros = { version = "0.25.3", features = [] }

pallet-process-validation = { default-features = false, package = 'pallet-process-validation', path = '../../pallets/process-validation' }

Expand Down
10 changes: 5 additions & 5 deletions tools/lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ name = "dscp-lang"
path = "src/main.rs"

[dependencies]
clap = { version = "4.4.6", features = ["derive"] }
clap = { version = "4.4.11", features = ["derive"] }
exitcode = "1.1.2"
lazy_static = "1.4.0"
pest = "2.6"
pest_derive = "2.6"
pest = "2.7"
pest_derive = "2.7"
dscp-runtime-types = { path = '../../runtime/types' }
serde = { version = "1.0.189" }
serde_json = { version = "1.0.107" }
serde = { version = "1.0.193" }
serde_json = { version = "1.0.108" }
thiserror = { version = "1.0.50" }

0 comments on commit 2c42284

Please sign in to comment.