Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
RazrFalcon committed Oct 1, 2023
1 parent 27f1006 commit 3489bea
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 69 deletions.
109 changes: 50 additions & 59 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions crates/c-api/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ pub extern "C" fn resvg_options_load_system_fonts(opt: *mut resvg_options) {
pub extern "C" fn resvg_options_destroy(opt: *mut resvg_options) {
unsafe {
assert!(!opt.is_null());
Box::from_raw(opt)
let _ = Box::from_raw(opt);
};
}

Expand Down Expand Up @@ -818,7 +818,7 @@ pub extern "C" fn resvg_get_node_bbox(
pub extern "C" fn resvg_tree_destroy(tree: *mut resvg_render_tree) {
unsafe {
assert!(!tree.is_null());
Box::from_raw(tree)
let _ = Box::from_raw(tree);
};
}

Expand Down
4 changes: 2 additions & 2 deletions crates/resvg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ log = "0.4"
pico-args = { version = "0.5", features = ["eq-separator"] }
png = { version = "0.17", optional = true }
rgb = "0.8"
svgtypes = "0.11"
tiny-skia = "0.10"
svgtypes = "0.12"
tiny-skia = "0.11.1"
usvg = { path = "../usvg", version = "0.35.0", default-features = false }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions crates/usvg-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ exclude = ["tests"]
workspace = "../.."

[dependencies]
data-url = "0.2" # for href parsing
data-url = "0.3" # for href parsing
flate2 = { version = "1.0", default-features = false, features = ["rust_backend"] } # SVGZ decoding
imagesize = "0.12" # raster images size detection
kurbo = "0.9" # Bezier curves utils
log = "0.4"
roxmltree = "0.18"
simplecss = "0.2"
siphasher = "0.3" # perfect hash implementation
svgtypes = "0.11"
svgtypes = "0.12"
usvg-tree = { path = "../usvg-tree", version = "0.35.0" }
4 changes: 2 additions & 2 deletions crates/usvg-text-layout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ documentation = "https://docs.rs/usvg-text-layout/"
workspace = "../.."

[dependencies]
fontdb = { version = "0.14", default-features = false }
fontdb = { version = "0.15", default-features = false }
kurbo = "0.9" # Bezier curves utils for text-on-path
log = "0.4"
rustybuzz = "0.7"
rustybuzz = "0.10"
unicode-bidi = "0.3"
unicode-script = "0.5"
unicode-vo = "0.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/usvg-tree/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ workspace = "../.."
[dependencies]
rctree = "0.5"
strict-num = "0.1.1"
svgtypes = "0.11"
tiny-skia-path = "0.10"
svgtypes = "0.12"
tiny-skia-path = "0.11.1"

0 comments on commit 3489bea

Please sign in to comment.