Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
104 changes: 0 additions & 104 deletions .github/workflows/rust.yml

This file was deleted.

1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
target
/fuzz/hfuzz_target
/.vscode
62 changes: 62 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,9 @@ harness = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]

[workspace]
members = [
".",
"fuzz",
]
4 changes: 4 additions & 0 deletions fuzz/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
target
corpus
artifacts
coverage
Comment thread
pedrodesu marked this conversation as resolved.
27 changes: 12 additions & 15 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
[package]
name = "smallvec-fuzz"
version = "0.1.0"
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
edition = "2021"
version = "0.0.0"
authors = ["The Servo Project Developers"]
publish = false
edition = "2024"
Comment thread
alejandro-vaz marked this conversation as resolved.

[package.metadata]
cargo-fuzz = true

[features]
afl_fuzz = ["afl"]
honggfuzz_fuzz = ["honggfuzz"]


[dependencies]
honggfuzz = { version = "0.5.47", optional = true }
afl = { version = "0.4", optional = true }
smallvec = { path = ".." }
arbitrary = { version = "1.4", features = ["derive"] }
libfuzzer-sys = "0.4"

[workspace]
members = ["."]
[dependencies.smallvec]
path = ".."

[[bin]]
name = "smallvec_ops"
path = "fuzz_targets/smallvec_ops.rs"
name = "main"
path = "fuzz_targets/main.rs"
test = false
doc = false
bench = false
12 changes: 0 additions & 12 deletions fuzz/README.md

This file was deleted.

Loading
Loading