Skip to content

Commit 34fc0cd

Browse files
committed
Add missing Polkadot Asset Hub in chains. Update dependencies. Fix clippy. Bump version.
1 parent 8318447 commit 34fc0cd

File tree

32 files changed

+456
-530
lines changed

32 files changed

+456
-530
lines changed

Cargo.lock

Lines changed: 386 additions & 461 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_docker/compose/.env.sample

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=0.24.17
1+
VERSION=0.24.18
22
ENV=production
33
LOG_LEVEL=debug
44

subvt-app-service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-app-service"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

@@ -25,7 +25,7 @@ subvt-metrics = { path = "../subvt-metrics" }
2525
subvt-persistence = { path = "../subvt-persistence" }
2626
subvt-service-common = { path = "../subvt-service-common" }
2727
subvt-types = { path = "../subvt-types" }
28-
tokio = { version = "1.47", features = ["full"] }
28+
tokio = { version = "1.48", features = ["full"] }
2929

3030
[dev-dependencies]
3131
actix-rt = "2.10"

subvt-block-processor/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-block-processor"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

@@ -20,4 +20,4 @@ subvt-persistence = { path = "../subvt-persistence" }
2020
subvt-service-common = { path = "../subvt-service-common" }
2121
subvt-substrate-client = { path = "../subvt-substrate-client" }
2222
subvt-types = { path = "../subvt-types" }
23-
tokio = { version = "1.47", features = ["full"] }
23+
tokio = { version = "1.48", features = ["full"] }

subvt-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-config"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

subvt-governance/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-governance"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

@@ -10,4 +10,4 @@ lazy_static = { workspace = true }
1010
reqwest = { version = "0.12", features = ["blocking", "json", "gzip", "brotli"] }
1111
subvt-config = { path = "../subvt-config" }
1212
subvt-types = { path = "../subvt-types" }
13-
tokio = { version = "1.47", features = ["full"] }
13+
tokio = { version = "1.48", features = ["full"] }

subvt-kline-updater/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-kline-updater"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

@@ -17,4 +17,4 @@ subvt-metrics = { path = "../subvt-metrics" }
1717
subvt-persistence = { path = "../subvt-persistence" }
1818
subvt-service-common = { path = "../subvt-service-common" }
1919
subvt-types = { path = "../subvt-types" }
20-
tokio = { version = "1.47", features = ["full"] }
20+
tokio = { version = "1.48", features = ["full"] }

subvt-logging/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-logging"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

subvt-metrics/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-metrics"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

@@ -9,5 +9,5 @@ log = { workspace = true }
99
once_cell = "1"
1010
prometheus = "0.14"
1111
thiserror = { workspace = true }
12-
tokio = { version = "1.47", features = ["time", "rt-multi-thread"] }
12+
tokio = { version = "1.48", features = ["time", "rt-multi-thread"] }
1313
warp = { version = "0.4", features = ["server"] }

subvt-network-status-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "subvt-network-status-server"
3-
version = "0.24.17"
3+
version = "0.24.18"
44
edition = "2021"
55
rust-version = "1.67.0"
66

@@ -21,4 +21,4 @@ subvt-config = { path = "../subvt-config" }
2121
subvt-metrics = { path = "../subvt-metrics" }
2222
subvt-service-common = { path = "../subvt-service-common" }
2323
subvt-types = { path = "../subvt-types" }
24-
tokio = { version = "1.47", features = ["full"] }
24+
tokio = { version = "1.48", features = ["full"] }

0 commit comments

Comments
 (0)