fix: Parachain example tokio version (#1317)

* Update cargo.lock

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* parachain: Bump tokio dependency

The tokio dependency is bumped to version 1.34. Ideally, we would use
the workspace feature to pull in the tokio version. However, the
parachain example is not part of the workspace, because it depends on
non mutually exclusive feature flags.

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

* parachain: Bump tokio dependency to 1.35

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>

---------

Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
This commit is contained in:
Alexandru Vasile
2023-12-11 11:39:53 +02:00
committed by GitHub
parent c976d0dbce
commit 2717609acf
2 changed files with 88 additions and 65 deletions
+1 -1
View File
@@ -8,4 +8,4 @@ edition = "2021"
[dependencies]
subxt = { path = "../../subxt" }
subxt-signer = { path = "../../signer" }
tokio = { version = "1.28", features = ["macros", "time", "rt-multi-thread"] }
tokio = { version = "1.35", features = ["macros", "time", "rt-multi-thread"] }