2018-09-11 05:46:02 +04:00
|
|
|
[package]
|
|
|
|
name = "rubble"
|
|
|
|
description = "a slight blog system"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Kilerd Chan <blove694@gmail.com>"]
|
|
|
|
license = "MIT"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
rocket = "0.3.16"
|
2018-09-13 20:35:12 +04:00
|
|
|
rocket_codegen = "0.3.16"
|
2018-10-10 11:19:33 +04:00
|
|
|
rocket_contrib = { version = "0.3.17", default-features = true, features = ["tera_templates"] }
|
2018-10-11 19:35:09 +04:00
|
|
|
diesel = { version = "1.0.0", features = ["postgres", "r2d2", "chrono"] }
|
2018-09-13 20:35:12 +04:00
|
|
|
dotenv = "0.9.0"
|
|
|
|
r2d2 = "0.8"
|
|
|
|
lazy_static = "1.1"
|
|
|
|
serde = "1.0"
|
2018-10-06 11:29:08 +04:00
|
|
|
serde_derive = "1.0"
|
|
|
|
tera = "*"
|
2018-10-11 19:35:09 +04:00
|
|
|
pulldown-cmark = { version = "0.1.2", default-features = false }
|
2018-10-13 20:55:20 +04:00
|
|
|
chrono = { version = "*", features = ["serde"] }
|
|
|
|
rust-crypto = "^0.2"
|