aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2021-02-03 14:02:30 +0000
committerGitHub <[email protected]>2021-02-03 14:02:30 +0000
commit93ecef53a370703a67f87b90c4640d3e8bf73934 (patch)
tree48f6079b55d32e13f355443aa82a5278a9c68a23 /crates
parent85e1f0905aae762b8d64b52e76bbc6aa5915894b (diff)
parente73ffbf1e59eb05fe8ffe73ce4e1833295c588a5 (diff)
Merge #7539
7539: Add cargo file tidy test r=edwin0cheng a=edwin0cheng bors r+ cc @pksunkara Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates')
-rw-r--r--crates/syntax/fuzz/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/syntax/fuzz/Cargo.toml b/crates/syntax/fuzz/Cargo.toml
index 32c40d1b9..e22cd6b0c 100644
--- a/crates/syntax/fuzz/Cargo.toml
+++ b/crates/syntax/fuzz/Cargo.toml
@@ -10,8 +10,8 @@ edition = "2018"
10cargo-fuzz = true 10cargo-fuzz = true
11 11
12[dependencies] 12[dependencies]
13syntax = { path = ".." } 13syntax = { path = "..", version = "0.0.0" }
14text_edit = { path = "../../text_edit" } 14text_edit = { path = "../../text_edit", version = "0.0.0" }
15libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } 15libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" }
16 16
17# Prevent this from interfering with workspaces 17# Prevent this from interfering with workspaces