21 lines
656 B
TOML
21 lines
656 B
TOML
# SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
[package]
|
|
name = "yr-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = "0.6.20"
|
|
dotenvy = "0.15.7"
|
|
reqwest = "0.11.22"
|
|
serde = { version = "1.0.190", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
sqlx = { version = "0.7.2", features = ["runtime-tokio", "postgres", "macros", "migrate", "uuid", "chrono", "json"] }
|
|
tokio = { version = "1.33.0", features = ["full"] }
|
|
uuid = { version = "1.5.0", features = ["v4", "serde"] }
|