mirror of
https://github.com/loro-dev/loro.git
synced 2025-02-06 12:25:03 +00:00
fix: fuzz deps
This commit is contained in:
parent
1ce91be046
commit
e85ba3f340
2 changed files with 4 additions and 19 deletions
21
crates/loro-core/fuzz/Cargo.lock
generated
21
crates/loro-core/fuzz/Cargo.lock
generated
|
@ -26,12 +26,6 @@ version = "0.1.4"
|
|||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f65bb255c86dda8d496b2ec8ba501c603030252cd52bee77a8862f2e46c8837a"
|
||||
|
||||
[[package]]
|
||||
name = "arbitrary"
|
||||
version = "1.1.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f65bb255c86dda8d496b2ec8ba501c603030252cd52bee77a8862f2e46c8837a"
|
||||
|
||||
[[package]]
|
||||
name = "arbitrary"
|
||||
version = "1.2.0"
|
||||
|
@ -116,15 +110,6 @@ dependencies = [
|
|||
"cfg-if",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crdt-list"
|
||||
version = "0.3.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e04e0edda8f0f90bb49bc3305f49b5e0cb716900e1e7e69f08d969e0a1654906"
|
||||
dependencies = [
|
||||
"arref",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "crdt-list"
|
||||
version = "0.4.0"
|
||||
|
@ -359,7 +344,7 @@ dependencies = [
|
|||
"append-only-bytes",
|
||||
"arbitrary",
|
||||
"arref",
|
||||
"crdt-list 0.4.0",
|
||||
"crdt-list",
|
||||
"debug-log",
|
||||
"enum-as-inner",
|
||||
"fxhash",
|
||||
|
@ -384,7 +369,7 @@ dependencies = [
|
|||
name = "loro-core-fuzz"
|
||||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"crdt-list 0.3.0",
|
||||
"crdt-list",
|
||||
"libfuzzer-sys",
|
||||
"loro-core",
|
||||
]
|
||||
|
@ -693,7 +678,7 @@ dependencies = [
|
|||
"append-only-bytes",
|
||||
"arref",
|
||||
"bumpalo",
|
||||
"crdt-list 0.4.0",
|
||||
"crdt-list",
|
||||
"debug-log",
|
||||
"enum-as-inner",
|
||||
"fxhash",
|
||||
|
|
|
@ -9,7 +9,7 @@ edition = "2018"
|
|||
cargo-fuzz = true
|
||||
|
||||
[dependencies]
|
||||
crdt-list = { version = "0.3.0" }
|
||||
crdt-list = { version = "0.4.0" }
|
||||
libfuzzer-sys = "0.4"
|
||||
|
||||
[dependencies.loro-core]
|
||||
|
|
Loading…
Reference in a new issue