crablog/Cargo.toml

48 lines
1.3 KiB
TOML
Raw Normal View History

2018-09-11 05:46:02 +04:00
[package]
2023-10-13 18:11:23 +04:00
name = "crablog"
2018-09-11 05:46:02 +04:00
description = "a slight blog system"
2023-10-13 18:11:23 +04:00
version = "0.4.0"
authors = ["Andrey Tkachenko <andrey@aidev.ru>", "Kilerd Chan <blove694@gmail.com>"]
2018-09-11 05:46:02 +04:00
license = "MIT"
2023-10-13 18:11:23 +04:00
edition = "2021"
build = "build.rs"
2018-09-11 05:46:02 +04:00
[dependencies]
dotenv = "0.15.0"
openssl = "0.10.27"
2019-06-02 19:02:39 +04:00
# serde
2023-10-13 18:11:23 +04:00
serde = "1.0"
serde_derive = "1.0"
2019-06-02 19:02:39 +04:00
2023-10-13 18:11:23 +04:00
diesel = { version = "2.1.3", features = ["postgres", "postgres_backend", "chrono"] }
diesel_derives = "2.1.2"
diesel_migrations = "2.1.0"
2019-06-02 19:02:39 +04:00
2023-10-13 18:11:23 +04:00
tera = "1.19.1"
pulldown-cmark = { version = "0.9.3", default-features = false }
2019-06-02 19:02:39 +04:00
2023-10-13 18:11:23 +04:00
chrono = { version = "0.4.31", features = ["serde"] }
2019-06-18 11:57:15 +04:00
rust-crypto = "0.2.36"
2023-10-13 18:11:23 +04:00
http = "0.2.9"
futures = "0.3.28"
2019-06-02 19:02:39 +04:00
# log
2023-10-13 18:11:23 +04:00
log = "0.4.20"
pretty_env_logger = "0.5.0"
2023-10-13 18:11:23 +04:00
time = "0.3.29"
rand = "0.8.5"
rss = "1.9.0"
derive_more = "0.99.2"
2023-10-13 18:11:23 +04:00
once_cell = "1.18.0"
jsonwebtoken = "8.3.0"
diesel-async = { version = "0.4.1", git = "https://github.com/weiznich/diesel_async.git", features = ["deadpool", "tokio-postgres", "postgres", "async-connection-wrapper"] }
axum = { version = "0.6.20", features = ["tokio"] }
tokio = { version = "1.33.0", features = ["rt", "macros"] }
anyhow = { version = "1.0.75", features = ["backtrace"] }
tower-http = { version = "0.4.4", features = ["fs", "cors", "normalize-path", "tokio", "trace", "auth"] }
thiserror = "1.0"