-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b65d8b0
commit b9f40cf
Showing
11 changed files
with
88 additions
and
85 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "resvg" | ||
version = "0.25.0" | ||
version = "0.26.0" | ||
authors = ["Yevhenii Reizner <[email protected]>"] | ||
keywords = ["svg", "render", "raster", "skia"] | ||
license = "MPL-2.0" | ||
|
@@ -21,12 +21,12 @@ gif = { version = "0.11", optional = true } | |
jpeg-decoder = { version = "0.3", default-features = false, features = ["platform_independent"], optional = true } | ||
log = "0.4" | ||
pico-args = { version = "0.5", features = ["eq-separator"] } | ||
png = { version = "0.17", optional = true } | ||
png = { version = "=0.17.6", optional = true } # pin version to match flate2 miniz_oxide version | ||
rgb = "0.8" | ||
svgfilters = { path = "svgfilters", version = "0.4", optional = true } | ||
svgtypes = "0.8" | ||
tiny-skia = "0.8.2" | ||
usvg = { path = "usvg", version = "0.25.0", default-features = false } | ||
usvg = { path = "usvg", version = "0.26.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
once_cell = "1.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "resvg-capi" | ||
version = "0.25.0" | ||
version = "0.26.0" | ||
authors = ["Yevhenii Reizner <[email protected]>"] | ||
keywords = ["svg", "render", "raster", "c-api"] | ||
license = "MPL-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "explorer-thumbnailer" | ||
version = "0.25.0" | ||
version = "0.26.0" | ||
authors = ["gentoo90 <[email protected]>"] | ||
license = "MPL-2.0" | ||
edition = "2018" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "usvg" | ||
version = "0.25.0" | ||
version = "0.26.0" | ||
authors = ["Yevhenii Reizner <[email protected]>"] | ||
keywords = ["svg"] | ||
license = "MPL-2.0" | ||
|
@@ -35,7 +35,7 @@ siphasher = "0.3" | |
svgtypes = "0.8.2" | ||
|
||
# for text to path | ||
fontdb = { version = "0.9.2", optional = true, default-features = false } | ||
fontdb = { version = "0.10", optional = true, default-features = false } | ||
rustybuzz = { version = "0.6.0", optional = true } | ||
unicode-bidi = { version = "0.3", optional = true } | ||
unicode-script = { version = "0.5", optional = true } | ||
|