crablog/Cargo.toml

45 lines
847 B
TOML
Raw Normal View History

2018-09-11 05:46:02 +04:00
[package]
name = "rubble"
description = "a slight blog system"
2019-06-05 07:38:43 +04:00
version = "0.3.3"
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-06-18 11:57:15 +04:00
dotenv = "0.14.1"
lazy_static = "1.3.0"
openssl = "0.10.23"
2019-06-02 19:02:39 +04:00
# serde
2019-06-18 11:57:15 +04:00
serde = "1.0.92"
serde_derive = "1.0.92"
2019-06-02 19:02:39 +04:00
2019-06-18 11:57:15 +04:00
r2d2 = "0.8.5"
diesel = { version = "1.4.2", features = ["postgres", "r2d2", "chrono"] }
2019-06-02 19:02:39 +04:00
diesel_derives = "1.4.0"
diesel_migrations = "1.4.0"
2019-06-18 11:57:15 +04:00
tera = "0.11.20"
pulldown-cmark = { version = "0.5.2", default-features = false }
2019-06-02 19:02:39 +04:00
2019-06-18 11:57:15 +04:00
chrono = { version = "0.4.6", features = ["serde"] }
rust-crypto = "0.2.36"
http = "0.1.17"
2019-06-18 11:57:15 +04:00
actix-web= "1.0.2"
actix-files = "0.1.2"
futures = "0.1.27"
2019-06-02 19:02:39 +04:00
# log
log = "0.4.6"
pretty_env_logger = "0.3.0"
2019-06-02 19:02:39 +04:00
2019-04-18 20:42:32 +04:00
time = "0.1.42"
2019-06-02 19:02:39 +04:00
rand = "0.6.5"
2019-06-18 11:57:15 +04:00
rss = "1.8.0"
actix = "0.8.3"
2019-06-03 12:29:18 +04:00
jsonwebtoken = "6.0.1"
2019-06-18 11:57:15 +04:00
actix-cors = "0.1.0"
actix-identity = "0.1.0"