mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-22 21:05:11 +00:00
Merge pull request #541 from nikomatsakis/upgrade-dependencies
upgrade all the things
This commit is contained in:
commit
b37a821d97
2 changed files with 6 additions and 6 deletions
10
Cargo.toml
10
Cargo.toml
|
@ -14,7 +14,7 @@ crossbeam = "0.8.1"
|
||||||
dashmap = "6.0.1"
|
dashmap = "6.0.1"
|
||||||
hashlink = "0.9.1"
|
hashlink = "0.9.1"
|
||||||
indexmap = "2"
|
indexmap = "2"
|
||||||
orx-concurrent-vec = "1.10.0"
|
orx-concurrent-vec = "2.2.0"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
parking_lot = "0.12.1"
|
parking_lot = "0.12.1"
|
||||||
rustc-hash = "2.0.0"
|
rustc-hash = "2.0.0"
|
||||||
|
@ -24,14 +24,14 @@ smallvec = "1.0.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
annotate-snippets = "0.11.4"
|
annotate-snippets = "0.11.4"
|
||||||
derive-new = "0.5.9"
|
derive-new = "0.6.0"
|
||||||
expect-test = "1.4.0"
|
expect-test = "1.4.0"
|
||||||
eyre = "0.6.8"
|
eyre = "0.6.8"
|
||||||
notify-debouncer-mini = "0.2.1"
|
notify-debouncer-mini = "0.4.1"
|
||||||
ordered-float = "3.0"
|
ordered-float = "4.2.1"
|
||||||
rustversion = "1.0"
|
rustversion = "1.0"
|
||||||
test-log = "0.2.11"
|
test-log = "0.2.11"
|
||||||
trybuild = "1.0"
|
trybuild = "1.0"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [ "components/salsa-macro-rules","components/salsa-macros"]
|
members = ["components/salsa-macro-rules", "components/salsa-macros"]
|
||||||
|
|
|
@ -89,7 +89,7 @@ impl Database {
|
||||||
storage,
|
storage,
|
||||||
logs: Default::default(),
|
logs: Default::default(),
|
||||||
files: DashMap::new(),
|
files: DashMap::new(),
|
||||||
file_watcher: Mutex::new(new_debouncer(Duration::from_secs(1), None, tx).unwrap()),
|
file_watcher: Mutex::new(new_debouncer(Duration::from_secs(1), tx).unwrap()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue