Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/syntax/fuzz/Cargo.toml')
| -rw-r--r-- | crates/syntax/fuzz/Cargo.toml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/crates/syntax/fuzz/Cargo.toml b/crates/syntax/fuzz/Cargo.toml index 802141e591..6070222f1f 100644 --- a/crates/syntax/fuzz/Cargo.toml +++ b/crates/syntax/fuzz/Cargo.toml @@ -1,21 +1,17 @@ - [package] name = "syntax-fuzz" version = "0.0.1" publish = false - -authors.workspace = true -edition.workspace = true -license.workspace = true -rust-version.workspace = true +edition = "2021" +rust-version = "1.66.1" [package.metadata] cargo-fuzz = true [dependencies] syntax = { path = "..", version = "0.0.0" } -text_edit = { path = "../../text_edit", version = "0.0.0" } -libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } +text-edit = { path = "../../text-edit", version = "0.0.0" } +libfuzzer-sys = "0.4.5" # Prevent this from interfering with workspaces [workspace] |