pastebin/Cargo.toml

36 lines
992 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>"]
2022-05-06 06:13:24 +00:00
edition = "2021"
2019-03-02 16:42:26 +00:00
license = "AGPL-3.0-or-later"
build = "buildSrc/build.rs"
2019-03-02 16:35:05 +00:00
[dependencies]
chrono = "0.4.23"
2021-06-13 19:31:20 +00:00
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
log = "0.4.14"
prometheus = { version = "0.13.3", features = [
"process",
], default-features = false }
2021-06-13 19:31:20 +00:00
rand = "0.8.3"
reqwest = { version = "0.11.14", features = ["json"] }
2022-05-09 20:44:49 +00:00
rocket = { version = "=0.5.0-rc.2", features = ["json"] }
rocket_dyn_templates = { version = "=0.1.0-rc.2", features = ["tera"] }
rocket_sync_db_pools = { version = "=0.1.0-rc.2", features = [
"diesel_postgres_pool",
] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
serde_with = "2.2.0"
tokio = { version = "1.25.0", features = ["rt"] }
2022-05-07 16:47:33 +00:00
[build-dependencies]
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.93"
2022-05-07 16:47:33 +00:00
[features]
database_tests = []
sandbox_tests = []