mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 21:35:20 +00:00
fix(fuzz): Fixes broken Cargo.toml for fuzz tests
Fixes broken Cargo.toml for fuzz tests and adds building of fuzz tests to the CI.
This commit is contained in:
parent
c552e5a55f
commit
6c4749e8f5
2 changed files with 47 additions and 8 deletions
|
@ -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]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue