pastebin/Cargo.toml

28 lines
708 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]
2021-06-13 19:31:20 +00:00
ammonia = "3.1.1"
chrono = "0.4.19"
diesel = { version = "1.4.6", features = ["chrono"] }
2019-06-29 12:23:32 +00:00
diesel_migrations = "1.4.0"
2021-06-13 19:31:20 +00:00
itertools = "0.10.1"
log = "0.4.14"
once_cell = "1.8.0"
pulldown-cmark = "0.8.0"
rand = "0.8.3"
rocket = "0.5.0-rc.1"
rocket_dyn_templates = { version = "0.1.0-rc.1", features = ["tera"] }
rocket_sync_db_pools = { version = "0.1.0-rc.1", features = ["diesel_postgres_pool"] }
2021-06-08 07:01:53 +00:00
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
[features]
database_tests = []
sandbox_tests = []