@@ -45,6 +45,7 @@ test-examples:
4545 cargo test --manifest-path examples/raft-kv-memstore-network-v2/Cargo.toml
4646 cargo test --manifest-path examples/raft-kv-memstore-opendal-snapshot-data/Cargo.toml
4747 cargo test --manifest-path examples/raft-kv-memstore-single-threaded/Cargo.toml
48+ cargo test --manifest-path examples/raft-kv-fjall/Cargo.toml
4849 cargo test --manifest-path examples/raft-kv-rocksdb/Cargo.toml
4950 cargo test --manifest-path examples/rocksstore/Cargo.toml
5051 cargo test --manifest-path examples/multi-raft-kv/Cargo.toml
@@ -103,6 +104,7 @@ lint:
103104 cargo fmt --manifest-path examples/raft-kv-memstore-opendal-snapshot-data/Cargo.toml
104105 cargo fmt --manifest-path examples/raft-kv-memstore-single-threaded/Cargo.toml
105106 cargo fmt --manifest-path examples/raft-kv-memstore/Cargo.toml
107+ cargo fmt --manifest-path examples/raft-kv-fjall/Cargo.toml
106108 cargo fmt --manifest-path examples/raft-kv-rocksdb/Cargo.toml
107109 cargo fmt --manifest-path examples/multi-raft-kv/Cargo.toml
108110 cargo clippy --no-deps --all-targets -- -D warnings
@@ -118,6 +120,7 @@ lint:
118120 cargo clippy --no-deps --manifest-path examples/raft-kv-memstore-opendal-snapshot-data/Cargo.toml --all-targets -- -D warnings
119121 cargo clippy --no-deps --manifest-path examples/raft-kv-memstore-single-threaded/Cargo.toml --all-targets -- -D warnings
120122 cargo clippy --no-deps --manifest-path examples/raft-kv-memstore/Cargo.toml --all-targets -- -D warnings
123+ cargo clippy --no-deps --manifest-path examples/raft-kv-fjall/Cargo.toml --all-targets -- -D warnings
121124 cargo clippy --no-deps --manifest-path examples/raft-kv-rocksdb/Cargo.toml --all-targets -- -D warnings
122125 cargo clippy --no-deps --manifest-path examples/multi-raft-kv/Cargo.toml --all-targets -- -D warnings
123126 # Bug: clippy --all-targets reports false warning about unused dep in
@@ -166,6 +169,7 @@ check:
166169 RUSTFLAGS=" -D warnings" cargo check --manifest-path examples/raft-kv-memstore-opendal-snapshot-data/Cargo.toml
167170 RUSTFLAGS=" -D warnings" cargo check --manifest-path examples/raft-kv-memstore-single-threaded/Cargo.toml
168171 RUSTFLAGS=" -D warnings" cargo check --manifest-path examples/raft-kv-memstore/Cargo.toml
172+ RUSTFLAGS=" -D warnings" cargo check --manifest-path examples/raft-kv-fjall/Cargo.toml
169173 RUSTFLAGS=" -D warnings" cargo check --manifest-path examples/raft-kv-rocksdb/Cargo.toml
170174 RUSTFLAGS=" -D warnings" cargo check --manifest-path examples/rocksstore/Cargo.toml
171175 RUSTFLAGS=" -D warnings" cargo check --manifest-path examples/multi-raft-kv/Cargo.toml
@@ -188,6 +192,7 @@ clean:
188192 cargo clean --manifest-path examples/raft-kv-memstore-opendal-snapshot-data/Cargo.toml
189193 cargo clean --manifest-path examples/raft-kv-memstore-single-threaded/Cargo.toml
190194 cargo clean --manifest-path examples/raft-kv-memstore/Cargo.toml
195+ cargo clean --manifest-path examples/raft-kv-fjall/Cargo.toml
191196 cargo clean --manifest-path examples/raft-kv-rocksdb/Cargo.toml
192197 cargo clean --manifest-path examples/rocksstore/Cargo.toml
193198 cargo clean --manifest-path examples/multi-raft-kv/Cargo.toml
0 commit comments