Skip to content

Commit

Permalink
[red-knot] Add a parser for typeshed's VERSIONS file (#11836)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexWaygood authored Jun 12, 2024
1 parent 60ea72a commit 4ed3aed
Show file tree
Hide file tree
Showing 4 changed files with 531 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/red_knot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ license.workspace = true
[dependencies]
ruff_python_parser = { workspace = true }
ruff_python_ast = { workspace = true }
ruff_python_stdlib = { workspace = true }
ruff_text_size = { workspace = true }
ruff_index = { workspace = true }
ruff_notebook = { workspace = true }
Expand Down Expand Up @@ -41,6 +42,7 @@ zip = { workspace = true }
walkdir = { workspace = true }

[dev-dependencies]
insta = { workspace = true }
tempfile = { workspace = true }

[lints]
Expand Down
1 change: 1 addition & 0 deletions crates/red_knot/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ mod parse;
pub mod program;
mod semantic;
pub mod source;
pub mod typeshed_versions;
pub mod watch;

pub(crate) type FxDashMap<K, V> = dashmap::DashMap<K, V, BuildHasherDefault<FxHasher>>;
Expand Down
Loading

0 comments on commit 4ed3aed

Please sign in to comment.