Remove co-dependencies for different modules found in `crates` and migrate the development history to a new repository. The docs were stale, and largely not getting used, so simply deleted for now. When code stabilizes more, they will become useful again. Co-authored-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com> Co-committed-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
27 lines
539 B
TOML
27 lines
539 B
TOML
[package]
|
|
name = "swactor-fuzz"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = "2024"
|
|
|
|
[package.metadata]
|
|
cargo-fuzz = true
|
|
|
|
[dependencies]
|
|
libfuzzer-sys = { version = "0.4", features = ["arbitrary-derive"] }
|
|
arbitrary = { version = "1", features = ["derive"] }
|
|
swactor = { path = "..", default-features = true }
|
|
|
|
# Prevent this from interfering with workspaces
|
|
[workspace]
|
|
members = ["."]
|
|
|
|
[[bin]]
|
|
name = "fuzz_runtime"
|
|
path = "fuzz_targets/fuzz_runtime.rs"
|
|
doc = false
|
|
|
|
[[bin]]
|
|
name = "fuzz_mt"
|
|
path = "fuzz_targets/fuzz_mt.rs"
|
|
doc = false
|