You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
620 B
29 lines
620 B
[package]
|
|
name = "tungstenite-fuzz"
|
|
version = "0.0.1"
|
|
authors = ["Sergey \"Shnatsel\" Davidoff <shnatsel@gmail.com>"]
|
|
publish = false
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies.tungstenite]
|
|
path = ".."
|
|
[dependencies.libfuzzer-sys]
|
|
git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "parse_frame_header"
|
|
path = "fuzz_targets/parse_frame_header.rs"
|
|
|
|
[[bin]]
|
|
name = "read_message_server"
|
|
path = "fuzz_targets/read_message_server.rs"
|
|
|
|
[[bin]]
|
|
name = "read_message_client"
|
|
path = "fuzz_targets/read_message_client.rs"
|
|
|