presentation-rust-webapps/simpler_text_board/Cargo.toml
2021-04-14 23:02:09 +02:00

19 lines
483 B
TOML

[package]
name = "simpler_text_board"
version = "0.1.0"
authors = ["finga <finga@onders.org>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = "0.4"
diesel = { version = "1.4", features = ["sqlite"] }
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
[dependencies.rocket_contrib]
version = "0.4"
default-features = false
features = ["diesel_sqlite_pool", "tera_templates"]