diff options
author | Laurențiu Nicola <[email protected]> | 2021-03-15 14:02:50 +0000 |
---|---|---|
committer | Laurențiu Nicola <[email protected]> | 2021-03-15 14:02:50 +0000 |
commit | 88cee24c6c473be62ed84f35639949f7a343aab0 (patch) | |
tree | 07eb965e57056006837ebe6b38a7006613b27256 /crates/hir_ty | |
parent | 3962b0d53c8da6e3f95f54395d266cb99562bd47 (diff) |
Enable thread-local coverage marks
Diffstat (limited to 'crates/hir_ty')
-rw-r--r-- | crates/hir_ty/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/hir_ty/Cargo.toml b/crates/hir_ty/Cargo.toml index b9c93f56f..0ef27cd37 100644 --- a/crates/hir_ty/Cargo.toml +++ b/crates/hir_ty/Cargo.toml | |||
@@ -10,7 +10,7 @@ edition = "2018" | |||
10 | doctest = false | 10 | doctest = false |
11 | 11 | ||
12 | [dependencies] | 12 | [dependencies] |
13 | cov-mark = "1.1" | 13 | cov-mark = { version = "1.1", features = ["thread-local"] } |
14 | itertools = "0.10.0" | 14 | itertools = "0.10.0" |
15 | arrayvec = "0.5.1" | 15 | arrayvec = "0.5.1" |
16 | smallvec = "1.2.0" | 16 | smallvec = "1.2.0" |
@@ -31,7 +31,7 @@ profile = { path = "../profile", version = "0.0.0" } | |||
31 | syntax = { path = "../syntax", version = "0.0.0" } | 31 | syntax = { path = "../syntax", version = "0.0.0" } |
32 | 32 | ||
33 | [dev-dependencies] | 33 | [dev-dependencies] |
34 | test_utils = { path = "../test_utils" } | 34 | test_utils = { path = "../test_utils" } |
35 | expect-test = "1.1" | 35 | expect-test = "1.1" |
36 | tracing = "0.1" | 36 | tracing = "0.1" |
37 | tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] } | 37 | tracing-subscriber = { version = "0.2", default-features = false, features = ["env-filter", "registry"] } |