Skip to content

Commit a1a0527

Browse files
authored
Merge pull request #229 from seddonym/rust-importscanner
Rust importscanner
2 parents a62d0b7 + 80b2234 commit a1a0527

17 files changed

Lines changed: 1137 additions & 354 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,6 @@ rust/debug
7979
rust/target
8080
rust/flamegraph.svg
8181
target
82+
83+
# UV
84+
uv.lock

rust/Cargo.lock

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

rust/Cargo.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ const_format = "0.2.34"
2525
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", tag = "v0.4.10" }
2626
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", tag = "v0.4.10" }
2727
ruff_source_file = { git = "https://github.com/astral-sh/ruff.git", tag = "v0.4.10" }
28+
serde = { version = "1.0", features = ["derive"] }
29+
serde_yaml = "0.9"
30+
unindent = "0.2.4"
31+
encoding_rs = "0.8.35"
2832

2933
[dependencies.pyo3]
3034
version = "0.24.1"

0 commit comments

Comments
 (0)