Skip to content

Commit 29cdd6e

Browse files
committed
Move alist into red_knot_python_semantic
1 parent c1aae46 commit 29cdd6e

8 files changed

Lines changed: 71 additions & 312 deletions

File tree

Cargo.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,6 @@ pretty_assertions = "1.3.0"
117117
proc-macro2 = { version = "1.0.79" }
118118
pyproject-toml = { version = "0.13.4" }
119119
quick-junit = { version = "0.5.0" }
120-
quickcheck = { version = "1.0.3", default-features = false }
121-
quickcheck_macros = { version = "1.0.0" }
122120
quote = { version = "1.0.23" }
123121
rand = { version = "0.9.0" }
124122
rayon = { version = "1.10.0" }

crates/red_knot_python_semantic/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ anyhow = { workspace = true }
5555
dir-test = { workspace = true }
5656
insta = { workspace = true }
5757
tempfile = { workspace = true }
58-
quickcheck = { workspace = true }
59-
quickcheck_macros = { workspace = true }
58+
quickcheck = { version = "1.0.3", default-features = false }
59+
quickcheck_macros = { version = "1.0.0" }
6060

6161
[features]
6262
serde = ["ruff_db/serde", "dep:serde", "ruff_python_ast/serde"]

crates/red_knot_python_semantic/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pub use semantic_model::{HasType, SemanticModel};
1414
pub mod ast_node_ref;
1515
mod db;
1616
pub mod lint;
17+
pub(crate) mod list;
1718
mod module_name;
1819
mod module_resolver;
1920
mod node_key;

0 commit comments

Comments
 (0)