aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-22 13:45:57 +0000
committerAleksey Kladov <[email protected]>2018-12-22 13:45:57 +0000
commit724862a1a4da8bbb04728bd9264938c0102151c5 (patch)
tree0f88728c1f25445000dd666a633e7d0235d4075e /Cargo.toml
parent5a5402d4d4ab033f0035622df880c82ea064d2c5 (diff)
workaround salsa/parking-log bug
https://github.com/salsa-rs/salsa/issues/99 https://github.com/Amanieu/parking_lot/issues/101
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 95830561d..cbb9a09d5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,3 +4,10 @@ members = [ "crates/*" ]
4[profile.release] 4[profile.release]
5incremental = true 5incremental = true
6debug = true 6debug = true
7
8
9[patch.'crates-io']
10# https://github.com/salsa-rs/salsa/pull/75
11# and
12# https://github.com/salsa-rs/salsa/issues/99
13salsa = { git = "https://github.com/matklad/salsa", branch = "no-upgrade" }