From 01bbdb02aebd47da7c1edb6938df0e2a1ed9934f Mon Sep 17 00:00:00 2001 From: Fabian Boehm Date: Wed, 8 May 2024 15:46:41 +0200 Subject: [PATCH] Upgrade terminfo to 0.9.0 Should also fix the macos CI failures --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fb4a99d82..ed46edcb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -505,8 +505,9 @@ dependencies = [ [[package]] name = "terminfo" -version = "0.8.0" -source = "git+https://github.com/meh/rust-terminfo?rev=7259f5aa5786a9d396162da0d993e268f6163fb2#7259f5aa5786a9d396162da0d993e268f6163fb2" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4ea810f0692f9f51b382fff5893887bb4580f5fa246fde546e0b13e7fcee662" dependencies = [ "fnv", "nom", diff --git a/Cargo.toml b/Cargo.toml index ba3098614..986141356 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ num-traits = "0.2.15" once_cell = "1.17.0" rand = { version = "0.8.5", features = ["small_rng"] } widestring = "1.0.2" -terminfo = { git = "https://github.com/meh/rust-terminfo", rev = "7259f5aa5786a9d396162da0d993e268f6163fb2" } +terminfo = "0.9.0" [dev-dependencies] rand_pcg = "0.3.1"