about summary refs log tree commit diff
path: root/custom_mutators/libafl_base/Cargo.toml
blob: ac6b0c8fb37c81c344de359b47432f39bd070a48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "libafl_base"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
libafl = { git = "https://github.com/AFLplusplus/LibAFL.git", rev = "266677bb88abe75165430f34e7de897c35560504" }
custom_mutator = { path = "../rust/custom_mutator", features = ["afl_internals"] }
serde = { version = "1.0", default-features = false, features = ["alloc"] } # serialization lib

[lib]
crate-type = ["cdylib"]