We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a978b commit 3affd4bCopy full SHA for 3affd4b
mithril-client/Makefile
@@ -11,10 +11,10 @@ all: test build
11
12
build:
13
# We use 'portable' feature to avoid SIGILL crashes
14
- ${CARGO} build --release --features portable
+ ${CARGO} build --release --features portable,full
15
16
test:
17
- ${CARGO} test
+ ${CARGO} test --features full
18
19
check:
20
${CARGO} check --release --all-features --all-targets
@@ -25,4 +25,4 @@ clean:
25
${CARGO} clean
26
27
doc:
28
- ${CARGO} doc --no-deps --open
+ ${CARGO} doc --no-deps --open --features full
0 commit comments