mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-06 20:43:24 +00:00
28 lines
446 B
TOML
28 lines
446 B
TOML
[package]
|
|
name = "compact-bytes-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2021"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
arbitrary = { version="1.3.0", features=["derive"] }
|
|
libfuzzer-sys = "0.4"
|
|
|
|
[dependencies.compact-bytes]
|
|
path = ".."
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[profile.release]
|
|
debug = 1
|
|
|
|
[[bin]]
|
|
name = "match"
|
|
path = "fuzz_targets/match.rs"
|
|
test = false
|
|
doc = false
|