intermodal/Cargo.toml
Casey Rodarmor b0f449b6ae
Drop serde_bencode in favor of bendy
For now depend on my branch on Github, until serde support and the value
type land in the main repo.

type: reform
2020-04-07 19:01:05 -07:00

56 lines
1.4 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"
atty = "0.2"
chrono = "0.4.1"
env_logger = "0.7"
globset = "0.4"
libc = "0.2"
md5 = "0.7"
pretty_assertions = "0.6"
regex = "1"
serde_bencode = "0.2"
serde_bytes = "0.11"
serde_with = "1.4"
sha1 = "0.6"
snafu = "0.6"
static_assertions = "1"
syn = "1.0.14"
tempfile = "3"
unicode-width = "0.1"
url = "2"
walkdir = "2.1"
[dependencies.bendy]
version = "0.2.2"
git = "https://github.com/casey/bendy.git"
branch = "value"
features = ["serde"]
[dependencies.serde]
version = "1.0.103"
features = ["derive"]
[dependencies.structopt]
version = "0.3"
features = ["default", "wrap_help"]
[workspace]
members = [
# generate table of contents and table of supported BEPs in README.md
"bin/update-readme",
]