2019-05-24 10:25:55 +02:00
|
|
|
[package]
|
|
|
|
name = "imdl"
|
2020-10-03 04:54:29 +02:00
|
|
|
version = "0.1.12"
|
2019-05-24 10:25:55 +02: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-17 05:35:23 +01:00
|
|
|
default-run = "imdl"
|
2019-05-24 10:25:55 +02:00
|
|
|
|
2020-05-26 09:09:16 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
bench = ["rand"]
|
|
|
|
|
2019-05-24 10:25:55 +02:00
|
|
|
[dependencies]
|
2020-02-14 09:12:49 +01:00
|
|
|
ansi_term = "0.12.0"
|
|
|
|
atty = "0.2.0"
|
2020-02-04 16:55:50 +01:00
|
|
|
chrono = "0.4.1"
|
2020-09-07 05:15:03 +02:00
|
|
|
console = "0.12.0"
|
2020-02-14 09:12:49 +01:00
|
|
|
globset = "0.4.0"
|
2020-10-03 05:28:17 +02:00
|
|
|
hex = "0.4.2"
|
2020-04-22 08:03:27 +02:00
|
|
|
ignore = "0.4.14"
|
2020-03-17 11:02:02 +01:00
|
|
|
lazy_static = "1.4.0"
|
2020-04-22 09:50:55 +02:00
|
|
|
lexiclean = "0.0.1"
|
2020-02-14 09:12:49 +01:00
|
|
|
libc = "0.2.0"
|
2020-03-17 11:02:02 +01:00
|
|
|
log = "0.4.8"
|
2020-02-14 09:12:49 +01:00
|
|
|
md5 = "0.7.0"
|
2020-03-20 22:55:42 +01:00
|
|
|
open = "1.4.0"
|
2020-02-14 09:12:49 +01: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"
|
2020-09-19 04:57:46 +02:00
|
|
|
serde_json = "1.0.57"
|
2020-02-14 09:12:49 +01:00
|
|
|
serde_with = "1.4.0"
|
|
|
|
sha1 = "0.6.0"
|
|
|
|
snafu = "0.6.0"
|
|
|
|
static_assertions = "1.0.0"
|
2020-09-07 05:15:03 +02:00
|
|
|
strum = "0.19.0"
|
|
|
|
strum_macros = "0.19.0"
|
2020-02-14 09:12:49 +01:00
|
|
|
tempfile = "3.0.0"
|
|
|
|
unicode-width = "0.1.0"
|
2019-05-24 10:25:55 +02:00
|
|
|
|
2020-02-11 12:08:57 +01:00
|
|
|
[dependencies.bendy]
|
2020-03-13 23:46:32 +01:00
|
|
|
version = "0.3.0"
|
2020-02-11 12:08:57 +01:00
|
|
|
features = ["serde"]
|
|
|
|
|
2020-03-12 08:23:16 +01:00
|
|
|
[dependencies.indicatif]
|
|
|
|
version = "0.14.0"
|
2020-03-16 07:02:26 +01:00
|
|
|
package = "imdl-indicatif"
|
2020-03-12 08:23:16 +01:00
|
|
|
|
2019-05-24 10:25:55 +02:00
|
|
|
[dependencies.serde]
|
2020-01-31 10:54:46 +01:00
|
|
|
version = "1.0.103"
|
2019-05-24 10:25:55 +02:00
|
|
|
features = ["derive"]
|
2020-01-17 05:35:23 +01:00
|
|
|
|
2020-01-21 09:04:56 +01:00
|
|
|
[dependencies.structopt]
|
2020-02-14 09:12:49 +01:00
|
|
|
version = "0.3.0"
|
2020-01-21 09:04:56 +01:00
|
|
|
features = ["default", "wrap_help"]
|
|
|
|
|
2020-05-03 10:24:36 +02:00
|
|
|
[dependencies.url]
|
|
|
|
version = "2.1.1"
|
|
|
|
features = ["serde"]
|
|
|
|
|
2020-05-26 09:09:16 +02:00
|
|
|
[dependencies.rand]
|
|
|
|
version = "0.7.3"
|
|
|
|
optional = true
|
|
|
|
|
2020-02-14 09:12:49 +01:00
|
|
|
[dev-dependencies]
|
2020-05-26 09:09:16 +02:00
|
|
|
criterion = "0.3.0"
|
|
|
|
temptree = "0.0.0"
|
2020-02-14 09:12:49 +01:00
|
|
|
|
2020-01-21 06:41:39 +01:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2020-04-16 13:16:40 +02:00
|
|
|
# generate documentation
|
|
|
|
"bin/gen",
|
|
|
|
|
2020-03-28 11:56:08 +01:00
|
|
|
# run commands for demo animation
|
|
|
|
"bin/demo",
|
2020-01-21 06:41:39 +01:00
|
|
|
]
|
2020-05-26 09:09:16 +02:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "hasher"
|
|
|
|
harness = false
|
2020-09-07 05:15:03 +02:00
|
|
|
|
|
|
|
# enable release build link time optimization
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|