Skip to content

Commit

Permalink
fix: fuzzing config
Browse files Browse the repository at this point in the history
  • Loading branch information
darkskygit committed Aug 19, 2023
1 parent 2035548 commit 58a2ea5
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/y-octo/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ edition = "2021"
cargo-fuzz = true

[dependencies]
rand = "0.8.5"
rand_chacha = "0.3.1"
libfuzzer-sys = "0.4.6"
lib0 = "0.16.5"
yrs = "0.16.5"
rand = "0.8"
rand_chacha = "0.3"
libfuzzer-sys = "0.4"
lib0 = "=0.16.5"
yrs = "=0.16.5"

y-octo-utils = { path = "../../y-octo-utils" }

Expand Down Expand Up @@ -57,14 +57,14 @@ test = false
doc = false

[[bin]]
name = "i64_decode"
path = "fuzz_targets/i64_decode.rs"
name = "i32_decode"
path = "fuzz_targets/i32_decode.rs"
test = false
doc = false

[[bin]]
name = "i64_encode"
path = "fuzz_targets/i64_encode.rs"
name = "i32_encode"
path = "fuzz_targets/i32_encode.rs"
test = false
doc = false

Expand Down

0 comments on commit 58a2ea5

Please sign in to comment.