pastebin/Cargo.toml

40 lines
918 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 }
2019-12-11 13:32:21 +00:00
extension-trait = "0.2.1"
2019-12-15 20:36:40 +00:00
futures = "0.3.1"
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-02-11 09:02:40 +00:00
reqwest = { version = "0.10.1", features = ["json"] }
2020-01-16 15:42:31 +00:00
serde = { version = "1.0.104", features = ["derive"] }
2020-02-07 20:23:18 +00:00
serde_json = "1.0.47"
time-parse = "0.1.2"
2020-02-11 10:27:59 +00:00
tokio = { version = "0.2.11", features = ["blocking", "macros"] }
2020-02-11 09:08:43 +00:00
warp = "0.2.1"
2019-04-17 07:41:33 +00:00
[build-dependencies]
2020-02-11 09:02:40 +00:00
ructe = "0.9.2"
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 = []