mirror of
https://github.com/loro-dev/loro.git
synced 2025-01-22 21:07:43 +00:00
321e0e72a4
https://github.com/loro-dev/loro/pull/361 --------- Co-authored-by: Leon Zhao <leeeon233@gmail.com>
31 lines
513 B
TOML
31 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
|