presentation-rust-webapps/simple_text_board/Cargo.toml

19 lines
457 B
TOML
Raw Permalink Normal View History

[package]
name = "simple_text_board"
version = "0.1.0"
authors = ["finga <finga@onders.org>"]
edition = "2018"
[dependencies]
2021-01-11 23:10:26 +01:00
rocket = "0.4"
2021-04-14 17:07:10 +02:00
chrono = { version = "0.4", features = ["serde"] }
2021-01-12 17:55:25 +01:00
diesel = { version = "1.4", features = ["sqlite", "chrono"] }
log = "0.4"
2021-04-14 17:07:10 +02:00
serde = { version = "1.0", features = ["derive"] }
2021-04-14 23:02:09 +02:00
anyhow = "1.0"
2021-01-12 02:10:48 +01:00
[dependencies.rocket_contrib]
version = "0.4"
default-features = false
2021-01-12 17:55:25 +01:00
features = ["diesel_sqlite_pool", "tera_templates"]