Skip to content

Commit b425d17

Browse files
authored
fix bench command line options (#1685)
fix to criterion bench not accepts options ``` error: Unrecognized option: 'save-baseline' error: bench failed ``` bheisler/criterion.rs#193 (comment)
1 parent 3d91302 commit b425d17

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

arrow/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ rust-version = "1.57"
3535
[lib]
3636
name = "arrow"
3737
path = "src/lib.rs"
38+
bench = false
3839

3940
[dependencies]
4041
serde = { version = "1.0" }

parquet/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,6 @@ harness = false
9090
name = "arrow_reader"
9191
required-features = ["test_common", "experimental"]
9292
harness = false
93+
94+
[lib]
95+
bench = false

0 commit comments

Comments
 (0)