Skip to content

Commit 0503d24

Browse files
committed
refactor: fix missing deps and imports
1 parent 7ea78f9 commit 0503d24

File tree

3 files changed

+13
-137
lines changed

3 files changed

+13
-137
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,13 @@ salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "29ab321b45d00daa
6666
] }
6767
schemars = { version = "0.8.16" }
6868
serde = { version = "1.0.197", features = ["derive"] }
69+
thiserror = { version = "2.0.17" }
6970

7071
# Used by ruff_cache
7172
filetime = { version = "0.2.23" }
7273
glob = { version = "0.3.1" }
7374
globset = { version = "0.4.14" }
75+
regex = { version = "1.12.2" }
7476
seahash = { version = "4.1.0" }
7577

7678
# Used by ruff_macros

crates/djc-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use djc_html_transformer::{
22
set_html_attributes as set_html_attributes_rust, HtmlTransformerConfig,
33
};
44
use djc_safe_eval::safe_eval as safe_eval_rust;
5-
use pyo3::exceptions::PyValueError;
5+
use pyo3::exceptions::{PySyntaxError, PyValueError};
66
use pyo3::prelude::*;
77
use pyo3::types::{PyDict, PyTuple};
88

0 commit comments

Comments
 (0)