mirror of
https://github.com/denoland/deno.git
synced 2025-01-11 16:42:21 -05:00
fix(encoding): support additional encoding labels (#12586)
This commit is contained in:
parent
34a9ddff09
commit
bc8e94155a
5 changed files with 8 additions and 28 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1193,9 +1193,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "encoding_rs"
|
name = "encoding_rs"
|
||||||
version = "0.8.28"
|
version = "0.8.29"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "80df024fbc5ac80f87dfef0d9f5209a252f2a497f7f42944cff24d8253cac065"
|
checksum = "a74ea89a0a1b98f6332de42c95baff457ada66d1cb4030f9ff151b2041a1c746"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if 1.0.0",
|
"cfg-if 1.0.0",
|
||||||
]
|
]
|
||||||
|
|
|
@ -55,7 +55,7 @@ dissimilar = "1.0.2"
|
||||||
dprint-plugin-json = "0.13.0"
|
dprint-plugin-json = "0.13.0"
|
||||||
dprint-plugin-markdown = "0.10.0"
|
dprint-plugin-markdown = "0.10.0"
|
||||||
dprint-plugin-typescript = "0.58.1"
|
dprint-plugin-typescript = "0.58.1"
|
||||||
encoding_rs = "0.8.28"
|
encoding_rs = "0.8.29"
|
||||||
env_logger = "0.8.4"
|
env_logger = "0.8.4"
|
||||||
fancy-regex = "0.7.1"
|
fancy-regex = "0.7.1"
|
||||||
http = "0.2.4"
|
http = "0.2.4"
|
||||||
|
|
|
@ -17,7 +17,7 @@ path = "lib.rs"
|
||||||
async-trait = "0.1.51"
|
async-trait = "0.1.51"
|
||||||
base64 = "0.13.0"
|
base64 = "0.13.0"
|
||||||
deno_core = { version = "0.105.0", path = "../../core" }
|
deno_core = { version = "0.105.0", path = "../../core" }
|
||||||
encoding_rs = "0.8.28"
|
encoding_rs = "0.8.29"
|
||||||
serde = "1.0.129"
|
serde = "1.0.129"
|
||||||
tokio = { version = "1.10.1", features = ["full"] }
|
tokio = { version = "1.10.1", features = ["full"] }
|
||||||
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
||||||
|
|
|
@ -63,7 +63,7 @@ deno_webstorage = { version = "0.18.0", path = "../ext/webstorage" }
|
||||||
|
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
dlopen = "0.1.8"
|
dlopen = "0.1.8"
|
||||||
encoding_rs = "0.8.28"
|
encoding_rs = "0.8.29"
|
||||||
filetime = "0.2.15"
|
filetime = "0.2.15"
|
||||||
fs3 = "0.5.0"
|
fs3 = "0.5.0"
|
||||||
http = "0.2.4"
|
http = "0.2.4"
|
||||||
|
|
|
@ -6063,28 +6063,8 @@
|
||||||
"textdecoder-fatal.any.worker.html": true,
|
"textdecoder-fatal.any.worker.html": true,
|
||||||
"textdecoder-ignorebom.any.html": true,
|
"textdecoder-ignorebom.any.html": true,
|
||||||
"textdecoder-ignorebom.any.worker.html": true,
|
"textdecoder-ignorebom.any.worker.html": true,
|
||||||
"textdecoder-labels.any.html": [
|
"textdecoder-labels.any.html": true,
|
||||||
"unicode11utf8 => UTF-8",
|
"textdecoder-labels.any.worker.html": true,
|
||||||
"unicode20utf8 => UTF-8",
|
|
||||||
"x-unicode20utf8 => UTF-8",
|
|
||||||
"unicodefffe => UTF-16BE",
|
|
||||||
"csunicode => UTF-16LE",
|
|
||||||
"iso-10646-ucs-2 => UTF-16LE",
|
|
||||||
"ucs-2 => UTF-16LE",
|
|
||||||
"unicode => UTF-16LE",
|
|
||||||
"unicodefeff => UTF-16LE"
|
|
||||||
],
|
|
||||||
"textdecoder-labels.any.worker.html": [
|
|
||||||
"unicode11utf8 => UTF-8",
|
|
||||||
"unicode20utf8 => UTF-8",
|
|
||||||
"x-unicode20utf8 => UTF-8",
|
|
||||||
"unicodefffe => UTF-16BE",
|
|
||||||
"csunicode => UTF-16LE",
|
|
||||||
"iso-10646-ucs-2 => UTF-16LE",
|
|
||||||
"ucs-2 => UTF-16LE",
|
|
||||||
"unicode => UTF-16LE",
|
|
||||||
"unicodefeff => UTF-16LE"
|
|
||||||
],
|
|
||||||
"textdecoder-streaming.any.html": true,
|
"textdecoder-streaming.any.html": true,
|
||||||
"textdecoder-streaming.any.worker.html": true,
|
"textdecoder-streaming.any.worker.html": true,
|
||||||
"textdecoder-utf16-surrogates.any.html": true,
|
"textdecoder-utf16-surrogates.any.html": true,
|
||||||
|
@ -9288,4 +9268,4 @@
|
||||||
"Pattern: [] Inputs: []"
|
"Pattern: [] Inputs: []"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue