Merge pull request #3806 from roc-lang/dependabot/cargo/encode_unicode-1.0.0

Bump encode_unicode from 0.3.6 to 1.0.0
This commit is contained in:
Ayaz 2022-08-15 08:16:49 -05:00 committed by GitHub
commit 0d96f4fc7d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

10
Cargo.lock generated
View File

@ -635,7 +635,7 @@ version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89eab4d20ce20cea182308bca13088fecea9c05f6776cf287205d41a0ed3c847"
dependencies = [
"encode_unicode",
"encode_unicode 0.3.6",
"libc",
"once_cell",
"terminal_size",
@ -1273,6 +1273,12 @@ version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encode_unicode"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
[[package]]
name = "endian-type"
version = "0.1.2"
@ -3889,7 +3895,7 @@ version = "0.0.1"
dependencies = [
"bumpalo",
"criterion",
"encode_unicode",
"encode_unicode 1.0.0",
"indoc",
"pretty_assertions",
"quickcheck",

View File

@ -13,7 +13,7 @@ roc_collections = { path = "../collections" }
roc_region = { path = "../region" }
roc_module = { path = "../module" }
bumpalo = { version = "3.8.0", features = ["collections"] }
encode_unicode = "0.3.6"
encode_unicode = "1.0.0"
[dev-dependencies]
criterion = { git = "https://github.com/Anton-4/criterion.rs", features = ["html_reports"]}