[package]
edition = "2021"
rust-version = "1.70"
name = "nullsec-carfuzz"
version = "0.1.0"
authors = ["bad-antics <admin@bad-antics.net>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Coverage-guided fuzzer for automotive protocols: CAN, UDS (ISO 14229), OBD-II (ISO 15031), DoIP (ISO 13400)"
homepage = "https://github.com/bad-antics/nullsec-carfuzz"
documentation = "https://docs.rs/nullsec-carfuzz"
readme = "README.md"
keywords = [
"fuzzing",
"automotive",
"can-bus",
"uds",
"security",
]
categories = [
"command-line-utilities",
"development-tools::testing",
"network-programming",
]
license = "MIT"
repository = "https://github.com/bad-antics/nullsec-carfuzz"
[lib]
name = "nullsec_carfuzz"
path = "src/lib.rs"
[[bin]]
name = "carfuzz"
path = "src/main.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.rand]
version = "0.8"
features = ["small_rng"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies]