Skip to content

Commit 40bae65

Browse files
committed
[#222] fix: 실수로 바꾼 벤치 경로 원복
f090fb6에서 Cargo.toml의 [[bench]] path를 ./src/benches/... 에서 ./benches/... 로 바꿨는데, 의도한 변경이 아니었습니다. 이 PR은 proptest dev-dependency만 추가하면 됩니다. 그 결과 cargo clippy --all-targets 가 이 브랜치에서만 실패했습니다: error: can't find bench `index_benchmark` at path /private/tmp/rrdb/benches/index_benchmark.rs 실제 파일은 src/benches/index_benchmark.rs 에 있고, master와 나머지 세 브랜치는 모두 원래 경로를 유지하고 있습니다. 원복 후 --all-targets 가 정상 완료되며 경고 수는 73건으로 master와 동일합니다.
1 parent d82bb50 commit 40bae65

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ path = "./src/test.rs"
6262

6363
[[bench]]
6464
name = "index_benchmark"
65-
path = "./benches/index_benchmark.rs"
65+
path = "./src/benches/index_benchmark.rs"
6666
harness = false
6767

6868
[features]

0 commit comments

Comments
 (0)