red-knot: Symbol table (#11860)

This commit is contained in:
Micha Reiser 2024-06-18 14:10:45 +01:00 committed by GitHub
parent 26ac805e6d
commit f666d79cd7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 2153 additions and 10 deletions

View file

@ -21,9 +21,11 @@ ruff_text_size = { workspace = true }
bitflags = { workspace = true }
is-macro = { workspace = true }
salsa = { workspace = true, optional = true }
smol_str = { workspace = true, optional = true }
smallvec = { workspace = true, optional = true }
smol_str = { workspace = true }
tracing = { workspace = true, optional = true }
rustc-hash = { workspace = true }
hashbrown = { workspace = true, optional = true }
[dev-dependencies]
anyhow = { workspace = true }
@ -34,4 +36,4 @@ tempfile = { workspace = true }
workspace = true
[features]
red_knot = ["dep:salsa", "dep:smol_str", "dep:tracing"]
red_knot = ["dep:salsa", "dep:tracing", "dep:hashbrown", "dep:smallvec"]