pastebin/Cargo.toml

41 lines
1004 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-10-24 12:15:53 +00:00
base64 = "0.10.1"
chrono = "0.4.9"
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"
2019-11-07 18:59:42 +00:00
futures03 = { version = "0.3.1", package = "futures", features = ["compat"] }
2019-11-04 09:13:22 +00:00
itertools = "0.8.1"
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-12-11 14:05:14 +00:00
once_cell = "1.2.0"
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-08-10 14:36:05 +00:00
reqwest = "0.9.19"
2019-03-02 16:35:05 +00:00
serde = { version = "1.0.88", features = ["derive"] }
2019-11-22 20:37:27 +00:00
serde_json = "1.0.41"
time-parse = "0.1.2"
2019-09-16 21:03:48 +00:00
tokio-executor = { version = "0.2.0-alpha.4", features = ["blocking"] }
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"] }
walkdir = "2.2.9"
2019-08-09 09:45:34 +00:00
[dev-dependencies]
scraper = "0.10.1"
[features]
database_tests = []
2019-11-24 11:43:02 +00:00
sandbox_tests = []