-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
91 lines (78 loc) · 1.69 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[package]
name = "imdl"
version = "0.1.14"
description = "📦 A 40' shipping container for the internet"
authors = ["Casey Rodarmor <[email protected]>"]
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 = "2021"
default-run = "imdl"
[features]
default = []
[dependencies]
ansi_term = "0.12.0"
atty = "0.2.0"
chrono = "0.4.1"
console = "0.15.7"
globset = "0.4.0"
hex = "0.4.2"
ignore = "0.4.14"
lazy_static = "1.4.0"
lexiclean = "0.0.1"
libc = "0.2.0"
log = "0.4.8"
md5 = "0.7.0"
open = "5.0.1"
pretty_assertions = "1.4.0"
pretty_env_logger = "0.5.0"
rand = "0.8.5"
rayon = "1.8.0"
regex = "1.10.2"
serde-hex = "0.1.0"
serde_bytes = "0.11.0"
serde_json = "1.0.57"
serde_with = "3.4.0"
sha1 = "0.6.0"
snafu = "0.6.0"
static_assertions = "1.0.0"
strum = "0.25.0"
strum_macros = "0.25.3"
tempfile = "3.0.0"
unicode-width = "0.1.0"
[dependencies.bendy]
version = "0.3.0"
features = ["serde"]
[dependencies.indicatif]
version = "0.14.0"
package = "imdl-indicatif"
[dependencies.serde]
version = "1.0.103"
features = ["derive"]
[dependencies.structopt]
version = "0.3.0"
features = ["default", "wrap_help"]
[dependencies.url]
version = "2.1.1"
features = ["serde"]
[dev-dependencies]
criterion = "0.5.1"
temptree = "0.2.0"
[workspace]
members = [
# generate documentation
"bin/gen",
# run commands for demo animation
"bin/demo",
# update changelog contributor credits
"bin/update-contributors",
]
[[bench]]
name = "hasher"
harness = false
# enable release build link time optimization
[profile.release]
lto = true