mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-23 05:24:51 +00:00
32 lines
513 B
TOML
32 lines
513 B
TOML
|
[package]
|
||
|
name = "loro-delta-fuzz"
|
||
|
version = "0.0.0"
|
||
|
publish = false
|
||
|
edition = "2021"
|
||
|
|
||
|
[package.metadata]
|
||
|
cargo-fuzz = true
|
||
|
|
||
|
[dependencies]
|
||
|
arbitrary = { version = "1.3.2", features = ["derive"] }
|
||
|
libfuzzer-sys = "0.4"
|
||
|
dev-utils = { path = "../../dev-utils" }
|
||
|
tracing = "0.1.40"
|
||
|
ctor = "0.2.8"
|
||
|
|
||
|
[dependencies.loro-delta]
|
||
|
path = ".."
|
||
|
|
||
|
# Prevent this from interfering with workspaces
|
||
|
[workspace]
|
||
|
members = ["."]
|
||
|
|
||
|
[profile.release]
|
||
|
debug = 1
|
||
|
|
||
|
[[bin]]
|
||
|
name = "ot"
|
||
|
path = "fuzz_targets/ot.rs"
|
||
|
test = false
|
||
|
doc = false
|