Skip to content

Commit

Permalink
MUST REVERT: Temporarily use a custom salsa
Browse files Browse the repository at this point in the history
  • Loading branch information
Y-Nak committed Jan 14, 2025
1 parent a58db3d commit 8a68ff1
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 10 deletions.
4 changes: 2 additions & 2 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 crates/common2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ description = "Provides HIR definition and lowering for Fe lang."
semver = "1.0.17"
camino = "1.1.4"
smol_str = "0.1.24"
salsa = { git = "https://github.com/salsa-rs/salsa", rev = "a1bf3a6" }
salsa = { git = "https://github.com/Y-Nak/salsa", branch = "fix-salsa3.0-pre" }
indexmap = "2.2"
parser = { path = "../parser2", package = "fe-parser2" }
2 changes: 1 addition & 1 deletion crates/driver2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "Provides Fe driver"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
salsa = { git = "https://github.com/salsa-rs/salsa", rev = "a1bf3a6" }
salsa = { git = "https://github.com/Y-Nak/salsa", branch = "fix-salsa3.0-pre" }
codespan-reporting = "0.11"

hir = { path = "../hir", package = "fe-hir" }
Expand Down
2 changes: 1 addition & 1 deletion crates/hir-analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/ethereum/fe"
description = "Provides HIR semantic analysis for Fe lang"

[dependencies]
salsa = { git = "https://github.com/salsa-rs/salsa", rev = "a1bf3a6" }
salsa = { git = "https://github.com/Y-Nak/salsa", branch = "fix-salsa3.0-pre" }
smallvec = "1.10"
rustc-hash = "1.1.0"
either = "1.8"
Expand Down
2 changes: 1 addition & 1 deletion crates/hir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repository = "https://github.com/ethereum/fe"
description = "Provides HIR definition and lowering for Fe lang"

[dependencies]
salsa = { git = "https://github.com/salsa-rs/salsa", rev = "a1bf3a6" }
salsa = { git = "https://github.com/Y-Nak/salsa", branch = "fix-salsa3.0-pre" }
derive_more = "0.99"
cranelift-entity = "0.91"
num-bigint = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion crates/language-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description = "An LSP language server for Fe lang"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
salsa = { git = "https://github.com/salsa-rs/salsa", rev = "a1bf3a6" }
salsa = { git = "https://github.com/Y-Nak/salsa", branch = "fix-salsa3.0-pre" }
codespan-reporting = "0.11"
act-locally = "0.1.1"
hir = { path = "../hir", package = "fe-hir" }
Expand Down
4 changes: 1 addition & 3 deletions crates/uitest/fixtures/ty_check/pat/record.snap
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,5 @@ error[8-0011]: all fields are not given
22let Bar::Variant {}
^^
│ │
missing `x, y`
missing `y, x`
Consider using `Bar::Variant { x, y }` instead


0 comments on commit 8a68ff1

Please sign in to comment.