This repository has been archived on 2025-02-09. You can view files and clone it, but cannot push or open issues or pull requests.
kyanite/Cargo.toml

36 lines
775 B
TOML
Raw Normal View History

2023-02-03 03:07:04 -08:00
[package]
2023-02-04 23:46:54 -08:00
name = "kyanite"
2023-02-07 02:18:01 -08:00
version = "0.2.0"
2023-02-03 03:07:04 -08:00
edition = "2021"
2023-02-04 23:46:54 -08:00
repository = "https://git.gaycatgirl.sex/evie/kyanite"
license = "Apache-2.0"
2023-02-03 03:07:04 -08:00
[dependencies]
2023-02-03 03:48:29 -08:00
# Core
tokio = { version = "1.25.0", features = ["full"] }
tracing-subscriber = "0.3.16"
2023-02-04 05:31:00 -08:00
serde = { version = "1.0.152", features = ["derive"] }
2023-02-05 02:52:19 -08:00
log = "0.4.17"
2023-02-03 03:48:29 -08:00
# Database
2023-02-04 05:31:00 -08:00
sea-orm = { version = "0.11.0-rc.1", features = ["sqlx-postgres", "runtime-tokio-rustls", "macros"] }
2023-02-05 03:07:53 -08:00
sea-orm-migration = "0.10.7"
2023-02-04 00:57:48 -08:00
migration = { path = "./migration" }
2023-02-03 03:48:29 -08:00
# Web
axum = "0.6.4"
2023-02-04 05:31:00 -08:00
askama = { features = ["with-axum", "markdown"], git = "https://github.com/djc/askama.git" }
askama_axum = { git = "https://github.com/djc/askama.git" }
serde_json = "1.0.91"
2023-02-05 02:52:19 -08:00
2023-02-10 07:10:21 -08:00
# RSS
rss = "2.0.2"
2023-02-05 02:52:19 -08:00
# Development
dotenvy = "0.15.6"
# Misc
chrono = "0.4.23"