crablog/Cargo.toml

34 lines
756 B
TOML
Raw Normal View History

2018-09-11 05:46:02 +04:00
[package]
name = "rubble"
description = "a slight blog system"
2019-05-20 07:11:55 +04:00
version = "0.3.1"
2018-09-11 05:46:02 +04:00
authors = ["Kilerd Chan <blove694@gmail.com>"]
license = "MIT"
2018-11-20 06:34:06 +04:00
edition = "2018"
2018-09-11 05:46:02 +04:00
[dependencies]
2019-01-01 18:28:26 +04:00
diesel = { version = "1.3.3", 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"
2019-04-18 17:22:44 +04:00
tera = "0.11.0"
2018-10-11 19:35:09 +04:00
pulldown-cmark = { version = "0.1.2", default-features = false }
chrono = { version = "*", features = ["serde"] }
2018-11-20 06:34:06 +04:00
rust-crypto = "^0.2"
2019-04-18 17:22:44 +04:00
actix-web= "1.0.0-alpha.6"
actix-files = "0.1.0-alpha.6"
actix = "0.8.1"
diesel_migrations = "1.4.0"
2019-04-18 18:22:33 +04:00
futures = "0.1.26"
http = "0.1.17"
2019-04-18 19:21:28 +04:00
rand = "0.6.5"
pretty_env_logger = "0.3.0"
2019-04-18 20:42:32 +04:00
time = "0.1.42"
2019-04-19 07:52:36 +04:00
rss = "1.7.0"
2019-04-19 13:06:30 +04:00
diesel_derives = "1.4.0"
2019-05-11 07:27:21 +04:00
openssl = "0.10.22"
2019-05-27 07:58:51 +04:00
log = "0.4.6"