fediblog/Cargo.toml

34 lines
996 B
TOML
Raw Permalink Normal View History

# SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
[package]
name = "fediblog"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
[[bin]]
name = "fediblog"
[dependencies]
argon2 = { version = "0.5.2", features = ["password-hash", "std"] }
axum = {version = "0.6.20", features = ["macros"]}
chrono = {version = "0.4.31", features = ["serde"]}
crypto = { version = "0.5.1", features = ["password-hash"] }
dotenvy = "0.15.7"
rand = "0.8.5"
serde = { version = "1.0.189", features = ["derive"] }
serde_json = "1.0.107"
tokio = { version = "1.33.0", features = ["full"] }
uuid = { version = "1.0.0", features = ["serde", "v4", "v7"] }
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres", "macros", "migrate", "uuid", "chrono", "json"] }
anyhow = "1.0.75"
thiserror = "1.0.50"
[profile.dev.package.sqlx-macros]
opt-level = 3