pretty_assertions migrated away from ansi-termi

this closes #1290
This commit is contained in:
extrawurst 2022-08-30 13:46:06 +02:00
parent 0879c2ff9e
commit 8c32ec53ee
5 changed files with 15 additions and 15 deletions

View file

@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
* submodules support ([#1087](https://github.com/extrawurst/gitui/issues/1087))
### Fixes
* remove insecure dependency `ansi_term` ([#1290](https://github.com/extrawurst/gitui/issues/1290))
## [0.21.0] - 2021-08-17
**popup stacking**

21
Cargo.lock generated
View file

@ -46,15 +46,6 @@ dependencies = [
"libc",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
[[package]]
name = "anyhow"
version = "1.0.62"
@ -1139,14 +1130,14 @@ dependencies = [
[[package]]
name = "pretty_assertions"
version = "1.2.1"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c89f989ac94207d048d92db058e4f6ec7342b0971fc58d1271ca148b799b3563"
checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755"
dependencies = [
"ansi_term",
"ctor",
"diff",
"output_vt100",
"yansi",
]
[[package]]
@ -1886,3 +1877,9 @@ name = "windows_x86_64_msvc"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"

View file

@ -57,7 +57,7 @@ which = "4.2"
pprof = { version = "0.10", features = ["flamegraph"], optional = true }
[dev-dependencies]
pretty_assertions = "1.0"
pretty_assertions = "1.3"
[badges]
maintenance = { status = "actively-developed" }

View file

@ -29,7 +29,7 @@ url = "2.2"
[dev-dependencies]
invalidstring = { path = "../invalidstring", version = "0.1" }
pretty_assertions = "1.0"
pretty_assertions = "1.3"
serial_test = "0.9"
tempfile = "3.2"

View file

@ -16,4 +16,4 @@ scopetime = { path = "../scopetime", version = "0.1" }
thiserror = "1.0"
[dev-dependencies]
pretty_assertions = "1.0"
pretty_assertions = "1.3"