Skip to content

Commit ffd90d0

Browse files
committed
internal: vendor query-group-macro in rust-analyzer
internal: test `LoggerDb` to avoid dead code warnings internal: flatten match expressions internal: test portable-atomic changes in Salsa; clippy; fmt
1 parent bd0289e commit ffd90d0

File tree

17 files changed

+1985
-21
lines changed

17 files changed

+1985
-21
lines changed

Diff for: Cargo.lock

+342-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: crates/query-group-macro/Cargo.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[package]
2+
name = "query-group-macro"
3+
version = "0.0.0"
4+
repository.workspace = true
5+
description = "A macro mimicking the `#[salsa::query_group]` macro for migrating to new Salsa"
6+
7+
authors.workspace = true
8+
edition.workspace = true
9+
license.workspace = true
10+
rust-version.workspace = true
11+
12+
[lib]
13+
proc-macro = true
14+
15+
[dependencies]
16+
heck = "0.5.0"
17+
proc-macro2 = "1.0"
18+
quote = "1.0"
19+
syn = { version = "2.0", features = ["full", "extra-traits"] }
20+
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "c149464b86bd2d59998fc85b3d1e29ca91925745" }
21+
22+
[dev-dependencies]
23+
expect-test = "1.5.0"

0 commit comments

Comments
 (0)