d1f8f24d8e
Colored output can be controlled on the command line with `--use-color auto|always|never`. The default is `auto`, which enables color if `imdl` detects that it is printing to a terminal. Color can be disabled entirely by setting the `NO_COLOR` environment variable. type: added
34 lines
900 B
TOML
34 lines
900 B
TOML
[package]
|
|
name = "imdl"
|
|
version = "0.0.0"
|
|
description = "📦 A 40' shipping container for the internet"
|
|
authors = ["Casey Rodarmor <casey@rodarmor.com>"]
|
|
license = "CC0-1.0"
|
|
readme = "README.md"
|
|
keywords = ["p2p", "sharing", "bittorrent", "torrent"]
|
|
categories = ["command-line-utilities"]
|
|
homepage = "https://github.com/casey/intermodal"
|
|
repository = "https://github.com/casey/intermodal"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12"
|
|
atty = "0.2"
|
|
env_logger = "0.7"
|
|
libc = "0.2"
|
|
md5 = "0.7"
|
|
regex = "1"
|
|
serde_bencode = "0.2"
|
|
serde_bytes = "0.11"
|
|
sha1 = "0.6"
|
|
snafu = "0.6"
|
|
static_assertions = "1"
|
|
structopt = "0.3"
|
|
tempfile = "3"
|
|
url = "2"
|
|
walkdir = "2"
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = ["derive"]
|