pastebin/Cargo.toml

40 lines
989 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-12-11 15:06:39 +00:00
base64 = "0.11.0"
chrono = "0.4.10"
diesel = { version = "1.4.3", features = ["chrono", "postgres", "r2d2"] }
2019-06-29 12:23:32 +00:00
diesel_migrations = "1.4.0"
2019-12-11 15:06:39 +00:00
env_logger = { version = "0.7.1", default-features = false }
futures = "0.1.29"
2019-11-07 18:59:42 +00:00
futures03 = { version = "0.3.1", package = "futures", features = ["compat"] }
2019-12-11 15:06:39 +00:00
itertools = "0.8.2"
log = "0.4.8"
2020-01-16 11:34:05 +00:00
mime = "0.3.16"
2020-01-17 15:21:30 +00:00
once_cell = "1.3.1"
2019-12-11 15:06:39 +00:00
pulldown-cmark = "0.6.1"
2020-01-16 12:25:23 +00:00
rand = "0.7.3"
2020-01-16 14:50:48 +00:00
reqwest = "0.9.24"
2020-01-16 15:42:31 +00:00
serde = { version = "1.0.104", features = ["derive"] }
2020-01-23 01:03:17 +00:00
serde_json = "1.0.45"
time-parse = "0.1.2"
2019-12-11 15:06:39 +00:00
tokio-executor = { version = "=0.2.0-alpha.6", features = ["blocking"] }
warp = "0.1.20"
2019-04-17 07:41:33 +00:00
[build-dependencies]
2020-01-25 21:38:27 +00:00
ructe = { version = "0.9.2", features = ["mime03", "warp"] }
2019-08-09 09:45:34 +00:00
[dev-dependencies]
2019-12-11 15:06:39 +00:00
scraper = "0.11.0"
[features]
database_tests = []
2019-11-24 11:43:02 +00:00
sandbox_tests = []