Upgrade terminfo to 0.9.0

Should also fix the macos CI failures
This commit is contained in:
Fabian Boehm 2024-05-08 15:46:41 +02:00
parent 92eee61fb5
commit 01bbdb02ae
2 changed files with 4 additions and 3 deletions

5
Cargo.lock generated
View File

@ -505,8 +505,9 @@ dependencies = [
[[package]] [[package]]
name = "terminfo" name = "terminfo"
version = "0.8.0" version = "0.9.0"
source = "git+https://github.com/meh/rust-terminfo?rev=7259f5aa5786a9d396162da0d993e268f6163fb2#7259f5aa5786a9d396162da0d993e268f6163fb2" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662"
dependencies = [ dependencies = [
"fnv", "fnv",
"nom", "nom",

View File

@ -37,7 +37,7 @@ num-traits = "0.2.15"
once_cell = "1.17.0" once_cell = "1.17.0"
rand = { version = "0.8.5", features = ["small_rng"] } rand = { version = "0.8.5", features = ["small_rng"] }
widestring = "1.0.2" widestring = "1.0.2"
terminfo = { git = "https://github.com/meh/rust-terminfo", rev = "7259f5aa5786a9d396162da0d993e268f6163fb2" } terminfo = "0.9.0"
[dev-dependencies] [dev-dependencies]
rand_pcg = "0.3.1" rand_pcg = "0.3.1"