17 lines
505 B
TOML
17 lines
505 B
TOML
[package]
|
|
name = "afl"
|
|
version = "0.1.0"
|
|
authors = ["Dominik Maier <domenukk@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3" # Benchmarking
|
|
|
|
[dependencies]
|
|
xxhash-rust = { version = "0.8.0-beta.4", features = ["xxh3"] } # xxh3 hashing for rust
|
|
thiserror = "1.0" # A nicer way to write Errors
|
|
hashbrown = "0.9" # A faster hashmap, nostd compatible
|
|
libc = "0.2" # For (*nix) libc
|
|
num = "*" |