Skip to content

Commit

Permalink
Update rust - all minor and patch updates (#123)
Browse files Browse the repository at this point in the history
* Update rust - all minor and patch updates

* Update versions and move dependency to workspace

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Matthew Dean <[email protected]>
  • Loading branch information
renovate[bot] and mattdean-digicatapult authored Jan 8, 2024
1 parent a61e6d3 commit e0829f3
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 29 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,20 @@ resolver = "2"
##############################
# non-substrate dependencies #
##############################
serde = { version = "1.0.194", default-features = false }
serde = { version = "1.0.195", default-features = false }
serde_json = { version = "1.0.111", default-features = false }
clap = { version = "4.4.12", features = ["derive"] }
clap = { version = "4.4.13", features = ["derive"] }
futures = { version = "0.3.30", features = ["thread-pool"] }
bs58 = "0.5.0"
async-trait = "0.1.77"
hex-literal = "0.4.1"
exitcode = "1.1.2"
lazy_static = "1.4.0"
pest = "2.7.5"
pest_derive = "2.7.5"
pest = "2.7.6"
pest_derive = "2.7.6"
thiserror = "1.0.56"
strum = { version = "0.25.0", default-features = false }
strum_macros = { version = "0.25.3", default-features = false }

#################################################################
# substrate linked dependencies in crates.io that may be pinned #
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = '2021'
license = 'Apache-2.0'
repository = 'https://github.com/digicatapult/dscp-node/'
name = 'dscp-node'
version = '10.0.0'
version = '10.0.1'

[[bin]]
name = 'dscp-node'
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dscp-node-runtime"
version = "10.0.0"
version = "10.0.1"
authors = ["Digital Catapult <https://www.digicatapult.org.uk>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("dscp"),
impl_name: create_runtime_str!("dscp"),
authoring_version: 1,
spec_version: 1000,
spec_version: 1001,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
6 changes: 3 additions & 3 deletions runtime/types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = '2021'
license = 'Apache-2.0'
repository = 'https://github.com/digicatapult/dscp-node/'
name = 'dscp-runtime-types'
version = "1.0.1"
version = "1.0.2"

[package.metadata.docs.rs]
targets = ['x86_64-unknown-linux-gnu']
Expand All @@ -17,8 +17,8 @@ parity-scale-codec = { workspace = true, features = ["derive"] }
frame-support = { workspace = true }
sp-core = { workspace = true, features = ["serde"] }
sp-runtime = { workspace = true, features = ["serde"] }
strum = { version = "0.24.1", features = [] }
strum_macros = { version = "0.24.3", features = [] }
strum = { workspace = true, features = [] }
strum_macros = { workspace = true, features = [] }

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

Expand Down

0 comments on commit e0829f3

Please sign in to comment.