loro/crates/loro-internal/fuzz/Cargo.toml

74 lines
1.1 KiB
TOML
Raw Normal View History

2022-10-08 18:04:41 +00:00
[package]
2023-01-16 10:53:35 +00:00
name = "loro-internal-fuzz"
2022-10-08 18:04:41 +00:00
version = "0.0.0"
authors = ["Automatically generated"]
publish = false
edition = "2018"
[package.metadata]
cargo-fuzz = true
[dependencies]
2022-12-13 08:26:32 +00:00
crdt-list = { version = "0.4.0" }
2022-10-08 18:04:41 +00:00
libfuzzer-sys = "0.4"
2023-01-16 10:53:35 +00:00
[dependencies.loro-internal]
2022-10-08 18:04:41 +00:00
path = ".."
features = ["test_utils"]
2022-10-08 18:04:41 +00:00
# Prevent this from interfering with workspaces
[workspace]
members = ["."]
[[bin]]
name = "yata"
path = "fuzz_targets/yata.rs"
test = false
doc = false
2022-10-19 01:49:29 +00:00
2022-10-20 11:19:43 +00:00
# [profile.dev]
# lto = true
# opt-level = 3
[[bin]]
name = "single_client_text"
path = "fuzz_targets/single_client_text.rs"
test = false
doc = false
[[bin]]
name = "two_client_text"
path = "fuzz_targets/two_client_text.rs"
test = false
doc = false
2022-10-22 15:33:25 +00:00
[[bin]]
name = "text"
path = "fuzz_targets/text.rs"
test = false
doc = false
2022-11-12 09:51:34 +00:00
[[bin]]
name = "recursive"
path = "fuzz_targets/recursive.rs"
test = false
doc = false
2023-03-06 13:49:47 +00:00
[[bin]]
name = "recursive_txn"
path = "fuzz_targets/recursive_txn.rs"
test = false
doc = false
[[bin]]
name = "encode"
path = "fuzz_targets/encode.rs"
test = false
doc = false
[[bin]]
name = "unicode"
path = "fuzz_targets/unicode.rs"
test = false
doc = false