1
0
mirror of https://github.com/BurntSushi/ripgrep.git synced 2025-05-13 21:26:27 +02:00

termcolor: release 0.3.4

This commit is contained in:
Andrew Gallant 2018-02-11 13:39:12 -05:00
parent 7718ee362e
commit 5d15f49f0c
No known key found for this signature in database
GPG Key ID: B2E3A4923F8B0D44
3 changed files with 5 additions and 5 deletions

4
Cargo.lock generated
View File

@ -242,7 +242,7 @@ dependencies = [
"num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)",
"same-file 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", "same-file 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"termcolor 0.3.3", "termcolor 0.3.4",
"winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
@ -274,7 +274,7 @@ dependencies = [
[[package]] [[package]]
name = "termcolor" name = "termcolor"
version = "0.3.3" version = "0.3.4"
dependencies = [ dependencies = [
"wincolor 0.1.6", "wincolor 0.1.6",
] ]

View File

@ -47,7 +47,7 @@ memmap = "0.6"
num_cpus = "1" num_cpus = "1"
regex = "0.2.4" regex = "0.2.4"
same-file = "1" same-file = "1"
termcolor = { version = "0.3.3", path = "termcolor" } termcolor = { version = "0.3.4", path = "termcolor" }
[dependencies.clap] [dependencies.clap]
version = "2.29.4" version = "2.29.4"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "termcolor" name = "termcolor"
version = "0.3.3" #:version version = "0.3.4" #:version
authors = ["Andrew Gallant <jamslam@gmail.com>"] authors = ["Andrew Gallant <jamslam@gmail.com>"]
description = """ description = """
A simple cross platform library for writing colored text to a terminal. A simple cross platform library for writing colored text to a terminal.
@ -17,4 +17,4 @@ name = "termcolor"
bench = false bench = false
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
wincolor = { version = "0.1.3", path = "../wincolor" } wincolor = { version = "0.1.6", path = "../wincolor" }