Skip to content
This repository has been archived by the owner on Jun 7, 2022. It is now read-only.

Commit

Permalink
Merge pull request #201 from nikomatsakis/use-salsa-0.10.0
Browse files Browse the repository at this point in the history
Use salsa 0.10.0
  • Loading branch information
Jonathan Turner committed Jan 28, 2019
2 parents 92d097b + 48946e5 commit f071030
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 19 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/lark-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repository = "https://github.com/lark-exploration/lark/tree/master/components/la
languageserver-types = "0.54"
flexi_logger = "0.10.3"
termcolor = "1.0.4"
salsa = "0.10.0-alpha5"
salsa = "0.10.0"
language-reporting = "0.3.0"

lark-actor = { path = "../lark-actor", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion components/lark-hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/lark-exploration/lark/tree/master/components/la
[dependencies]
log = "0.4.6"
parking_lot = "0.7"
salsa = "0.10.0-alpha5"
salsa = "0.10.0"

lark-collections = { path = "../lark-collections", version = "0.1.0" }
lark-debug-derive = { path = "../lark-debug-derive", version = "0.1.0" }
Expand Down
2 changes: 1 addition & 1 deletion components/lark-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ lark-string = { path = "../lark-string", version = "0.1.0" }
lark-span = { path = "../lark-span", version = "0.1.0" }
lark-ty = { path = "../lark-ty", version = "0.1.0" }
log = "0.4.6"
salsa = "0.10.0-alpha5"
salsa = "0.10.0"
parking_lot = "0.7"
unicode-xid = "0.1.0"

Expand Down
1 change: 0 additions & 1 deletion components/lark-parser/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![allow(non_camel_case_types)] // FIXME
#![feature(const_fn)]
#![feature(crate_visibility_modifier)]
#![feature(in_band_lifetimes)]
Expand Down
2 changes: 1 addition & 1 deletion components/lark-query-system/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ lark-ty = { path = "../lark-ty", version = "0.1.0" }
lark-type-check = { path = "../lark-type-check", version = "0.1.0" }
log = "0.4.6"
parking_lot = "0.7"
salsa = "0.10.0-alpha5"
salsa = "0.10.0"
url = "1.7"
2 changes: 1 addition & 1 deletion components/lark-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ lark-type-check = { path = "../lark-type-check", version = "0.1.0" }
lazy_static = "1.2.0"
rayon = "1.0.3"
regex = "1"
salsa = "0.10.0-alpha5"
salsa = "0.10.0"
serde = "1"
serde_json = "1"
termcolor = "1.0.4"
Expand Down
2 changes: 1 addition & 1 deletion components/lark-type-check/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ lark-string = { path = "../lark-string", version = "0.1.0" }
lark-ty = { path = "../lark-ty", version = "0.1.0" }
lark-unify = { path = "../lark-unify", version = "0.1.0" }
log = "0.4.6"
salsa = "0.10.0-alpha5"
salsa = "0.10.0"
1 change: 0 additions & 1 deletion components/lark-type-check/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#![allow(non_camel_case_types)]
#![feature(const_fn)]
#![feature(crate_visibility_modifier)]
#![feature(in_band_lifetimes)]
Expand Down

0 comments on commit f071030

Please sign in to comment.