Skip to content

Commit

Permalink
fix: salsa pointer compare issue
Browse files Browse the repository at this point in the history
See salsa-rs/salsa#536

There's a fix in the main stream, but that fix is using an unstable api
`std::ptr::addr_eq` which will cause compile failure in our ci.

Anyway, I decided to swicth salsa to my custom fork before it went
stable to avoid possible similar issues.
  • Loading branch information
Chronostasys committed Jul 28, 2024
1 parent ed456fd commit fa2908b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ lsp-server = "0.7"
serde_json = "1.0"
rustc-hash = "1.1"
crossbeam-channel = "0.5"
salsa = { package = "salsa", git = "https://github.com/salsa-rs/salsa", branch = "master" }
salsa = { package = "salsa", git = "https://github.com/Chronostasys/salsa", branch = "master" }
enum_dispatch = "0.3"
threadpool = { version = "1.8", optional = true }
dunce = "1.0"
Expand Down

0 comments on commit fa2908b

Please sign in to comment.