diff options
author | Aleksey Kladov <[email protected]> | 2021-03-09 11:54:50 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2021-03-09 11:54:50 +0000 |
commit | 867fdf8f03a25862c122614688c38f5e26e08e1f (patch) | |
tree | b192a7bd17ab70e5f8e08e12b2a7b977f71e9c60 /crates/syntax | |
parent | ffba4c0dce336346471219ed03941295db37167f (diff) |
Improve compilation speed
Diffstat (limited to 'crates/syntax')
-rw-r--r-- | crates/syntax/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/syntax/Cargo.toml b/crates/syntax/Cargo.toml index c39095def..33bde099b 100644 --- a/crates/syntax/Cargo.toml +++ b/crates/syntax/Cargo.toml | |||
@@ -25,10 +25,10 @@ serde = { version = "1.0.106", features = ["derive"] } | |||
25 | stdx = { path = "../stdx", version = "0.0.0" } | 25 | stdx = { path = "../stdx", version = "0.0.0" } |
26 | text_edit = { path = "../text_edit", version = "0.0.0" } | 26 | text_edit = { path = "../text_edit", version = "0.0.0" } |
27 | parser = { path = "../parser", version = "0.0.0" } | 27 | parser = { path = "../parser", version = "0.0.0" } |
28 | test_utils = { path = "../test_utils", version = "0.0.0" } | ||
29 | profile = { path = "../profile", version = "0.0.0" } | 28 | profile = { path = "../profile", version = "0.0.0" } |
30 | 29 | ||
31 | [dev-dependencies] | 30 | [dev-dependencies] |
31 | test_utils = { path = "../test_utils" } | ||
32 | walkdir = "2.3.1" | 32 | walkdir = "2.3.1" |
33 | rayon = "1" | 33 | rayon = "1" |
34 | expect-test = "1.1" | 34 | expect-test = "1.1" |