Skip to content

Commit d8a72bd

Browse files
committed
chore: Update dependencies
1 parent 671e93b commit d8a72bd

3 files changed

Lines changed: 12 additions & 13 deletions

File tree

bindings/python/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ crate-type = ["cdylib"]
1313
[build-dependencies]
1414
built = { version = "0.7.1", features = ["cargo-lock", "chrono"] }
1515

16+
[dependencies]
17+
pyo3 = { version = "0.20.0", features = ["extension-module", "abi3-py37"] }
18+
pyo3-built = "0.4"
19+
rayon = "1"
20+
url = "2"
21+
1622
[dependencies.css-inline]
1723
path = "../../css-inline"
1824
version = "*"
1925
default-features = false
2026
features = ["http", "file"]
2127

22-
[dependencies]
23-
url = "2"
24-
rayon = "1"
25-
pyo3 = { version = "0.20.0", features = ["extension-module", "abi3-py37"] }
26-
pyo3-built = "0.4"
27-
2828
[profile.release]
2929
codegen-units = 1
3030
lto = "fat"

css-inline/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,27 @@ http = ["attohttpc"]
2828
file = []
2929

3030
[dependencies]
31-
cssparser = "0.31.2"
32-
html5ever = "0.26.0"
3331
attohttpc = { version = "0.24", default-features = false, features = [
3432
"compress",
3533
"tls-rustls",
3634
], optional = true }
37-
url = "2"
38-
smallvec = "1"
35+
cssparser = "0.31.2"
36+
html5ever = "0.26.0"
3937
indexmap = "2.1"
4038
pico-args = { version = "0.3", optional = true }
4139
rayon = { version = "1.7", optional = true }
4240
rustc-hash = "1.1.0"
4341
selectors = "0.25.0"
42+
smallvec = "1"
43+
url = "2"
4444

4545
[dev-dependencies]
4646
assert_cmd = "2.0.6"
47+
codspeed-criterion-compat = "2.3.0"
4748
criterion = { version = "0.5.1", features = [], default-features = false }
48-
test-case = "3.1.0"
4949
serde = { version = "1", features = ["derive"] }
5050
serde_json = "1"
51-
codspeed-criterion-compat = "2.1.0"
51+
test-case = "3.3"
5252

5353
[[bench]]
5454
name = "inliner"

css-inline/src/html/serializer.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ impl<'a> Sink<'a> {
121121
}
122122
}
123123

124-
#[derive(Default)]
125124
struct ElemInfo {
126125
html_name: Option<LocalName>,
127126
ignore_children: bool,

0 commit comments

Comments
 (0)