
* Add internal deps to workspace * libafl: use workspace internal deps * libafl_bolts: use workspace internal deps * 0.14.0 * use workspace internal deps
37 lines
984 B
TOML
37 lines
984 B
TOML
[package]
|
|
name = "construct_automata"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
authors = [
|
|
"Andrea Fioraldi <andreafioraldi@gmail.com>",
|
|
"Dominik Maier <domenukk@gmail.com>",
|
|
]
|
|
description = "LibAFL Gramatron Gramar Construction"
|
|
documentation = "https://docs.rs/libafl"
|
|
repository = "https://github.com/AFLplusplus/LibAFL/"
|
|
readme = "../../README.md"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["fuzzing", "libafl", "gramatron", "grammar"]
|
|
categories = [
|
|
"development-tools::testing",
|
|
"emulators",
|
|
"embedded",
|
|
"os",
|
|
"no-std",
|
|
]
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
libafl = { workspace = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
regex = { workspace = true }
|
|
postcard = { workspace = true, features = [
|
|
"alloc",
|
|
], default-features = false } # no_std compatible serde serialization format
|
|
clap = { workspace = true, features = ["derive"] }
|
|
|
|
[lints]
|
|
workspace = true
|