aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: 72285b926c984aa3594c579a5fa4ce7647efb2cc (plain)
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
[package]
authors = ["The rust-fuzz Project Developers"]
description = "A wrapper around LLVM's libFuzzer runtime."
edition = "2018"
license = "MIT/Apache-2.0/NCSA"
name = "libfuzzer-sys"
readme = "./README.md"
repository = "https://github.com/rust-fuzz/libfuzzer"
version = "0.4.2"

[dependencies]
arbitrary = "1"
once_cell = "1"

[build-dependencies]
cc = "1.0"

[features]
arbitrary-derive = ["arbitrary/derive"]

[workspace]
members = [
  "./example",
  "./example_arbitrary",
  "./example_mutator",
]

[dev-dependencies]
flate2 = "1.0.20"
rand = "0.8.3"