mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2024-12-12 19:18:24 +02:00
22 lines
596 B
TOML
22 lines
596 B
TOML
|
[package]
|
||
|
name = "wincolor"
|
||
|
version = "0.1.0" #:version
|
||
|
authors = ["Andrew Gallant <jamslam@gmail.com>"]
|
||
|
description = """
|
||
|
A simple Windows specific API for controlling text color in a Windows console.
|
||
|
"""
|
||
|
documentation = "https://docs.rs/wincolor"
|
||
|
homepage = "https://github.com/BurntSushi/ripgrep/tree/master/wincolor"
|
||
|
repository = "https://github.com/BurntSushi/ripgrep/tree/master/wincolor"
|
||
|
readme = "README.md"
|
||
|
keywords = ["windows", "win", "color", "ansi", "console"]
|
||
|
license = "Unlicense/MIT"
|
||
|
|
||
|
[lib]
|
||
|
name = "wincolor"
|
||
|
bench = false
|
||
|
|
||
|
[dependencies]
|
||
|
kernel32-sys = "0.2.2"
|
||
|
winapi = "0.2.8"
|