pastebin/Cargo.toml

28 lines
845 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]
2019-07-31 08:19:26 +00:00
ammonia = "3.0.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"] }
2019-06-29 12:23:32 +00:00
diesel_migrations = "1.4.0"
2019-04-14 17:13:44 +00:00
env_logger = { version = "0.6.0", default-features = false }
2019-08-08 08:28:36 +00:00
futures = "0.1.28"
futures03 = { version = "=0.3.0-alpha.17", package = "futures-preview", features = ["compat"] }
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-08-08 09:18:46 +00:00
rand = "0.7.0"
2019-03-02 16:35:05 +00:00
serde = { version = "1.0.88", features = ["derive"] }
2019-08-08 08:28:36 +00:00
tokio-diesel = { git = "https://github.com/xfix/tokio-diesel.git", branch = "stable-compatibility" }
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"] }