pastebin/Cargo.toml

40 lines
959 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]
2020-03-10 05:22:28 +00:00
ammonia = "3.1.0"
2020-05-06 14:28:42 +00:00
base64 = "0.12.1"
2020-03-07 21:20:44 +00:00
chrono = "0.4.11"
2019-12-11 15:06:39 +00:00
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"
2020-03-07 21:21:17 +00:00
itertools = "0.9.0"
2019-12-11 15:06:39 +00:00
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"
pulldown-cmark = "0.7.0"
2020-01-16 12:25:23 +00:00
rand = "0.7.3"
2020-03-04 02:48:30 +00:00
reqwest = { version = "0.10.4", features = ["json"] }
2020-01-16 15:42:31 +00:00
serde = { version = "1.0.104", features = ["derive"] }
2020-02-13 06:39:56 +00:00
serde_json = "1.0.48"
time-parse = "0.1.2"
2020-02-28 22:39:52 +00:00
tokio = { version = "0.2.13", features = ["blocking", "macros"] }
2020-03-14 22:03:52 +00:00
warp = { version = "0.2.2", default-features = false }
2019-04-17 07:41:33 +00:00
[build-dependencies]
2020-05-04 23:43:50 +00:00
ructe = "0.11.4"
2019-08-09 09:45:34 +00:00
[dev-dependencies]
2020-05-04 21:56:54 +00:00
scraper = "0.12.0"
[features]
database_tests = []
2019-11-24 11:43:02 +00:00
sandbox_tests = []