1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-17 17:57:28 +03:00

deps: tiny-skia 0.7 -> 0.8

This commit is contained in:
Wez Furlong 2022-08-28 20:50:27 -07:00
parent 0f0593f475
commit b9d0843b71
3 changed files with 15 additions and 18 deletions

29
Cargo.lock generated
View File

@ -66,9 +66,9 @@ checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
version = "0.5.2"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
[[package]]
name = "assert_fs"
@ -3879,15 +3879,6 @@ version = "1.0.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
[[package]]
name = "safe_arch"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1ff3d6d9696af502cc3110dacce942840fb06ff4514cad92236ecc455f2ce05"
dependencies = [
"bytemuck",
]
[[package]]
name = "safemem"
version = "0.3.3"
@ -4388,6 +4379,12 @@ version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strict-num"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9df65f20698aeed245efdde3628a6b559ea1239bbb871af1b6e3b58c413b2bd1"
[[package]]
name = "strip-ansi-escapes"
version = "0.1.0"
@ -4706,27 +4703,27 @@ dependencies = [
[[package]]
name = "tiny-skia"
version = "0.7.0"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "642680569bb895b16e4b9d181c60be1ed136fa0c9c7f11d004daf053ba89bf82"
checksum = "4efa3b255c4e90cf531c936f71cb46bd6e25e841b31380600fa4435d0811a38d"
dependencies = [
"arrayref",
"arrayvec",
"bytemuck",
"cfg-if 1.0.0",
"png",
"safe_arch",
"tiny-skia-path",
]
[[package]]
name = "tiny-skia-path"
version = "0.7.0"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c114d32f0c2ee43d585367cb013dfaba967ab9f62b90d9af0d696e955e70fa6c"
checksum = "5021c866996edb581a2f5e4093f9533f14bb31169f32a561ba3210697794d6cb"
dependencies = [
"arrayref",
"bytemuck",
"strict-num",
]
[[package]]

View File

@ -67,7 +67,7 @@ termwiz = { path = "../termwiz" }
termwiz-funcs = { path = "../lua-api-crates/termwiz-funcs" }
textwrap = "0.15"
thiserror = "1.0"
tiny-skia = "0.7"
tiny-skia = "0.8"
umask = { path = "../umask" }
unicode-normalization = "0.1"
unicode-segmentation = "1.8"

View File

@ -38,7 +38,7 @@ promise = { path = "../promise" }
raw-window-handle = "0.3"
resize = "0.5"
serde = {version="1.0", features = ["rc", "derive"]}
tiny-skia = "0.7"
tiny-skia = "0.8"
glium = { version = "0.31", default-features = false }
url = "2"
wezterm-bidi = { path = "../bidi" }