fix(ci): resolve all quick-checks failures

- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
This commit is contained in:
2026-01-04 17:21:57 +03:00
parent 933f08e282
commit 479010094e
574 changed files with 1465 additions and 2447 deletions
+7 -12
View File
@@ -18,32 +18,27 @@ keywords = ["bizinikiwi", "blockchain", "parity"]
workspace = true
[features]
default = ["native"]
default = [ "native" ]
# Enable this for native (ie non web/wasm builds).
# Exactly 1 of "web" and "native" is expected.
native = [
"smoldot-light/std",
"tokio/rt",
]
native = [ "smoldot-light/std", "tokio/rt" ]
# Enable this for web/wasm builds.
# Exactly 1 of "web" and "native" is expected.
web = [
"getrandom/js",
"smoldot/std",
# For the light-client platform.
"futures-timer/wasm-bindgen",
"pin-project",
"wasm-bindgen-futures",
"web-time",
"getrandom/js",
# For websocket.
"js-sys",
"pin-project",
"send_wrapper",
"smoldot/std",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"web-time",
]
[dependencies]