b25b389ae6
Making it specific to output allows us to be more specific in the display message, and possibly add output-specific code in the future. type: reform
62 lines
1.5 KiB
TOML
62 lines
1.5 KiB
TOML
[package]
|
|
name = "imdl"
|
|
version = "0.0.1"
|
|
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"
|
|
default-run = "imdl"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.12.0"
|
|
atty = "0.2.0"
|
|
chrono = "0.4.1"
|
|
console = "0.10.0"
|
|
globset = "0.4.0"
|
|
indicatif = "0.14.0"
|
|
libc = "0.2.0"
|
|
md5 = "0.7.0"
|
|
pretty_assertions = "0.6.0"
|
|
pretty_env_logger = "0.4.0"
|
|
regex = "1.0.0"
|
|
serde-hex = "0.1.0"
|
|
serde_bytes = "0.11.0"
|
|
serde_with = "1.4.0"
|
|
sha1 = "0.6.0"
|
|
snafu = "0.6.0"
|
|
static_assertions = "1.0.0"
|
|
syn = "1.0.14"
|
|
tempfile = "3.0.0"
|
|
unicode-width = "0.1.0"
|
|
url = "2.0.0"
|
|
walkdir = "2.1.0"
|
|
lazy_static = "1.4.0"
|
|
|
|
[dependencies.bendy]
|
|
version = "0.2.2"
|
|
git = "https://github.com/casey/bendy.git"
|
|
branch = "serde"
|
|
features = ["serde"]
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.103"
|
|
features = ["derive"]
|
|
|
|
[dependencies.structopt]
|
|
version = "0.3.0"
|
|
features = ["default", "wrap_help"]
|
|
|
|
[dev-dependencies]
|
|
temptree = "0.0.0"
|
|
|
|
[workspace]
|
|
members = [
|
|
# generate table of contents and table of supported BEPs in README.md
|
|
"bin/update-readme",
|
|
]
|