@@ -12,6 +12,7 @@ default:
1212
1313# Cargo build everything.
1414build :
15+ <<<<<<< HEAD
1516 cargo build --workspace --all-targets --all-features
1617
1718# Cargo check everything.
@@ -21,6 +22,29 @@ check:
2122# Lint everything.
2223lint : lint-verify lint-integration-tests
2324 cargo + $(cat ./ nightly-version) clippy --workspace --all-targets --all-features -- --deny warnings
25+ ====== =
26+ cargo build -p corepc-client --all-targets --all-features
27+ cargo build -p corepc-types --all-targets --all-features
28+ cargo build -p jsonrpc --all-targets --all-features
29+ cargo build -p corepc-node --all-targets --features=latest
30+ cargo build --manifest-path verify/ Cargo.toml --all-targets
31+
32+ # Cargo check everything.
33+ check :
34+ cargo check -p corepc-client --all-targets --all-features
35+ cargo check -p corepc-types --all-targets --all-features
36+ cargo check -p jsonrpc --all-targets --all-features
37+ cargo check -p corepc-node --all-targets --features=latest
38+ cargo check --manifest-path verify/ Cargo.toml --all-targets
39+
40+ # Lint everything.
41+ lint : lint-verify lint-integration-tests
42+ cargo + $(cat ./ nightly-version) clippy -p corepc-client --all-targets --all-features -- --deny warnings
43+ cargo + $(cat ./ nightly-version) clippy -p corepc-types --all-targets --all-features -- --deny warnings
44+ cargo + $(cat ./ nightly-version) clippy -p jsonrpc --all-targets --all-features -- --deny warnings
45+ cargo + $(cat ./ nightly-version) clippy -p corepc-node --all-targets --features=latest -- --deny warnings
46+ cargo + $(cat ./ nightly-version) clippy --manifest-path verify/ Cargo.toml --all-targets -- --deny warnings
47+ >>>>>>> 2 d0ee43 (Add latest feature to avoid hardcoded versions in build scripts)
2448
2549lint-verify :
2650 $REPO_DIR/ contrib/ lint-verify.sh
0 commit comments