pastebin/Cargo.toml

24 lines
601 B
TOML
Raw Normal View History

2019-03-02 16:35:05 +00:00
[package]
name = "pastebinrun"
version = "0.1.0"
authors = ["Konrad Borowski <konrad@borowski.pw>"]
edition = "2018"
2019-03-02 16:42:26 +00:00
license = "AGPL-3.0-or-later"
2019-04-17 07:41:33 +00:00
build = "src/build.rs"
2019-03-02 16:35:05 +00:00
[dependencies]
ammonia = "2.1.0"
2019-03-03 11:07:42 +00:00
chrono = "0.4.6"
2019-04-14 17:13:44 +00:00
diesel = { version = "1.4.1", features = ["chrono", "postgres", "r2d2"] }
env_logger = { version = "0.6.0", default-features = false }
lazy_static = "1.3.0"
2019-03-12 07:59:41 +00:00
log = "0.4.6"
2019-04-17 07:41:33 +00:00
mime = "0.3.13"
2019-04-25 14:52:17 +00:00
pulldown-cmark = "0.5.0"
2019-03-02 16:35:05 +00:00
rand = "0.6.5"
serde = { version = "1.0.88", features = ["derive"] }
2019-04-14 17:13:44 +00:00
warp = "0.1.15"
2019-04-17 07:41:33 +00:00
[build-dependencies]
ructe = { version = "0.6.2", features = ["mime03", "warp"] }