-
Notifications
You must be signed in to change notification settings - Fork 139
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.35 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "vortex-fuzz"
authors = { workspace = true }
categories = { workspace = true }
description = "Fuzzer for vortex arrays"
edition = { workspace = true }
homepage = { workspace = true }
include = { workspace = true }
keywords = { workspace = true }
license = { workspace = true }
publish = false
readme = "README.md"
repository = { workspace = true }
rust-version = { workspace = true }
version = { workspace = true }
[package.metadata]
cargo-fuzz = true
[dependencies]
arrow-buffer = { workspace = true }
arrow-ord = { workspace = true }
futures-util = { workspace = true }
libfuzzer-sys = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
vortex-array = { workspace = true, features = ["arbitrary"] }
vortex-btrblocks = { workspace = true }
vortex-buffer = { workspace = true }
vortex-dtype = { workspace = true, features = ["arbitrary"] }
vortex-error = { workspace = true }
vortex-expr = { workspace = true }
vortex-file = { workspace = true }
vortex-mask = { workspace = true }
vortex-scalar = { workspace = true, features = ["arbitrary"] }
vortex-utils = { workspace = true }
[lints]
workspace = true
[[bin]]
bench = false
doc = false
name = "array_ops"
path = "fuzz_targets/array_ops.rs"
test = false
[[bin]]
bench = false
doc = false
name = "file_io"
path = "fuzz_targets/file_io.rs"
test = false