presentation-rust-webapps/simple_text_board/Cargo.toml

17 lines
355 B
TOML
Raw 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-01-12 17:55:25 +01:00
chrono = "0.4"
diesel = { version = "1.4", features = ["sqlite", "chrono"] }
log = "0.4"
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"]