From 4fc7e8aa50de846c59664efd37f0dd76bd2e8a1a Mon Sep 17 00:00:00 2001 From: rzadp Date: Thu, 8 Aug 2024 14:10:44 +0200 Subject: [PATCH] missing features --- .github/workflows/ci.yml | 2 +- node/Cargo.toml | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7013ff..960363a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,7 +55,7 @@ jobs: timeout-minutes: 90 - name: Build the node individually in release mode - run: cargo --package solochain-template-node --release + run: cargo build --package solochain-template-node --release timeout-minutes: 90 - name: Run clippy diff --git a/node/Cargo.toml b/node/Cargo.toml index 51eb827..8fa4175 100644 --- a/node/Cargo.toml +++ b/node/Cargo.toml @@ -85,7 +85,10 @@ substrate-build-script-utils.workspace = true substrate-build-script-utils.default-features = true [features] -default = [] +default = ["std"] +std = [ + "solochain-template-runtime/std", +] # Dependencies that are only required if runtime benchmarking should be build. runtime-benchmarks = [ "frame-benchmarking-cli/runtime-benchmarks",