er/Cargo.toml

28 lines
699 B
TOML
Raw Normal View History

# SPDX-FileCopyrightText: 2023 Louis Hollingworth <louis@hollingworth.nl>
#
# SPDX-License-Identifier: GPL-3.0-or-later
[package]
name = "er"
version = "2.0.0"
edition = "2021"
[lib]
[[bin]]
name = "er"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
dotenvy = "0.15.7"
poise = "0.5.6"
reqwest = "0.11.22"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
sqlx = { version = "0.7.2", features = ["postgres", "macros", "uuid", "chrono", "json", "runtime-tokio"] }
thiserror = "1.0.50"
tokio = { version = "1.32.0", features = ["full"] }
uuid = { version = "1.5.0", features = ["v4"] }