2019-05-24 01:25:55 -07:00
|
|
|
[package]
|
|
|
|
name = "imdl"
|
2020-04-10 15:29:41 -07:00
|
|
|
version = "0.1.4"
|
2019-05-24 01:25:55 -07:00
|
|
|
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"
|
2020-01-16 20:35:23 -08:00
|
|
|
default-run = "imdl"
|
2019-05-24 01:25:55 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2020-02-14 00:12:49 -08:00
|
|
|
ansi_term = "0.12.0"
|
|
|
|
atty = "0.2.0"
|
2020-02-04 07:55:50 -08:00
|
|
|
chrono = "0.4.1"
|
2020-03-11 22:44:14 -07:00
|
|
|
console = "0.10.0"
|
2020-02-14 00:12:49 -08:00
|
|
|
globset = "0.4.0"
|
2020-03-17 03:02:02 -07:00
|
|
|
lazy_static = "1.4.0"
|
2020-02-14 00:12:49 -08:00
|
|
|
libc = "0.2.0"
|
2020-03-17 03:02:02 -07:00
|
|
|
log = "0.4.8"
|
2020-02-14 00:12:49 -08:00
|
|
|
md5 = "0.7.0"
|
2020-03-20 14:55:42 -07:00
|
|
|
open = "1.4.0"
|
2020-02-14 00:12:49 -08:00
|
|
|
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"
|
2020-03-27 18:41:35 -07:00
|
|
|
strum = "0.18.0"
|
|
|
|
strum_macros = "0.18.0"
|
2020-02-11 03:08:57 -08:00
|
|
|
syn = "1.0.14"
|
2020-02-14 00:12:49 -08:00
|
|
|
tempfile = "3.0.0"
|
|
|
|
unicode-width = "0.1.0"
|
2020-04-06 17:28:48 -07:00
|
|
|
url = "2.1.1"
|
2020-02-14 00:12:49 -08:00
|
|
|
walkdir = "2.1.0"
|
2019-05-24 01:25:55 -07:00
|
|
|
|
2020-02-11 03:08:57 -08:00
|
|
|
[dependencies.bendy]
|
2020-03-13 15:46:32 -07:00
|
|
|
version = "0.3.0"
|
2020-02-11 03:08:57 -08:00
|
|
|
features = ["serde"]
|
|
|
|
|
2020-03-12 00:23:16 -07:00
|
|
|
[dependencies.indicatif]
|
|
|
|
version = "0.14.0"
|
2020-03-15 23:02:26 -07:00
|
|
|
package = "imdl-indicatif"
|
2020-03-12 00:23:16 -07:00
|
|
|
|
2019-05-24 01:25:55 -07:00
|
|
|
[dependencies.serde]
|
2020-01-31 01:54:46 -08:00
|
|
|
version = "1.0.103"
|
2019-05-24 01:25:55 -07:00
|
|
|
features = ["derive"]
|
2020-01-16 20:35:23 -08:00
|
|
|
|
2020-01-21 00:04:56 -08:00
|
|
|
[dependencies.structopt]
|
2020-02-14 00:12:49 -08:00
|
|
|
version = "0.3.0"
|
2020-01-21 00:04:56 -08:00
|
|
|
features = ["default", "wrap_help"]
|
|
|
|
|
2020-02-14 00:12:49 -08:00
|
|
|
[dev-dependencies]
|
2020-03-17 03:02:02 -07:00
|
|
|
claim = "0.3.1"
|
2020-02-14 00:12:49 -08:00
|
|
|
temptree = "0.0.0"
|
|
|
|
|
2020-01-20 21:41:39 -08:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2020-03-28 03:56:08 -07:00
|
|
|
# run commands for demo animation
|
|
|
|
"bin/demo",
|
2020-04-06 17:28:48 -07:00
|
|
|
|
2020-01-20 21:41:39 -08:00
|
|
|
# generate table of contents and table of supported BEPs in README.md
|
2020-02-04 19:59:06 -08:00
|
|
|
"bin/update-readme",
|
2020-04-06 17:28:48 -07:00
|
|
|
|
|
|
|
# generate the changelog from git commits
|
|
|
|
"bin/changelog",
|
2020-04-08 12:19:50 -07:00
|
|
|
|
|
|
|
# generate man page
|
|
|
|
"bin/man"
|
2020-01-20 21:41:39 -08:00
|
|
|
]
|