tagwiki/Cargo.toml

38 lines
929 B
TOML
Raw Normal View History

2020-03-08 23:36:52 +00:00
[package]
2020-05-01 08:11:21 +00:00
name = "tagwiki"
2020-03-08 23:36:52 +00:00
version = "0.1.0"
2020-05-01 08:11:21 +00:00
authors = ["Dawid Ciężarkiewicz <dpc@dpc.pw>"]
2020-03-08 23:36:52 +00:00
edition = "2018"
readme = "README.md"
description = "A template for Rust programs"
2020-05-01 08:11:21 +00:00
documentation = "https://docs.rs/tagwiki"
repository = "https://github.com/dpc/tagwiki"
homepage = "https://github.com/dpc/tagwiki"
2020-03-08 23:36:52 +00:00
keywords = ["template", "cli", "bin"]
license = "MPL-2.0 OR MIT OR Apache-2.0"
# See more keys and thair definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
structopt = "0.3"
env_logger = { version = "0.7.1", default-features = false, features = ["humantime"]}
log = "0.4"
anyhow = "1.0.26"
2020-05-01 08:11:21 +00:00
pulldown-cmark = "0.7.1"
tokio = { version = "0.2", features = ["macros"] }
warp = "0.2"
rand = "0.6"
regex = "1.3.7"
lazy_static = "*"
2020-09-06 05:47:51 +00:00
blake2 = "0.9"
digest = "0.9"
2020-05-01 08:11:21 +00:00
hex = "*"
walkdir = "*"
2020-05-09 08:06:36 +00:00
async-trait = "0.1.30"
2020-05-10 07:17:03 +00:00
serde = "*"
serde_derive = "*"
2020-05-11 00:54:21 +00:00
horrorshow = "*"
chrono = "*"
2020-05-16 06:34:53 +00:00
itertools = "0.4"