aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_db
diff options
context:
space:
mode:
authorLaurenČ›iu Nicola <[email protected]>2021-03-15 14:02:50 +0000
committerLaurenČ›iu Nicola <[email protected]>2021-03-15 14:02:50 +0000
commit88cee24c6c473be62ed84f35639949f7a343aab0 (patch)
tree07eb965e57056006837ebe6b38a7006613b27256 /crates/ide_db
parent3962b0d53c8da6e3f95f54395d266cb99562bd47 (diff)
Enable thread-local coverage marks
Diffstat (limited to 'crates/ide_db')
-rw-r--r--crates/ide_db/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_db/Cargo.toml b/crates/ide_db/Cargo.toml
index 1f7a90d20..6229996ec 100644
--- a/crates/ide_db/Cargo.toml
+++ b/crates/ide_db/Cargo.toml
@@ -10,7 +10,7 @@ edition = "2018"
10doctest = false 10doctest = false
11 11
12[dependencies] 12[dependencies]
13cov-mark = "1.1" 13cov-mark = { version = "1.1", features = ["thread-local"] }
14log = "0.4.8" 14log = "0.4.8"
15rayon = "1.5.0" 15rayon = "1.5.0"
16fst = { version = "0.4", default-features = false } 16fst = { version = "0.4", default-features = false }