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
2023-02-04 00:57:48 -08:00

21 lines
522 B
TOML

[package]
name = "personal-site"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Core
tokio = { version = "1.25.0", features = ["full"] }
tracing-subscriber = "0.3.16"
# Database
sea-orm = { version = "0.11.0-rc.1", features = ["sqlx-mysql", "runtime-tokio-rustls", "macros"] }
migration = { path = "./migration" }
# Web
axum = "0.6.4"
askama = { version = "0.11.1", features = ["with-axum"] }
askama_axum = "0.2.1"