mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-22 21:58:00 +00:00
2717609acf
* 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>
12 lines
254 B
TOML
12 lines
254 B
TOML
[package]
|
|
name = "parachain-example"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[dependencies]
|
|
subxt = { path = "../../subxt" }
|
|
subxt-signer = { path = "../../signer" }
|
|
tokio = { version = "1.35", features = ["macros", "time", "rt-multi-thread"] }
|