19 lines
456 B
TOML
19 lines
456 B
TOML
[package]
|
|
name = "brass-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0"
|
|
authors = ["Max Hohlfeld <maxhohlfeld@posteo.de>"]
|
|
|
|
[[bin]]
|
|
name = "db"
|
|
path = "src/db.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.23", features = ["derive"] }
|
|
brass-config = { path = "../config" }
|
|
async-std = { version = "1.13.0", features = ["attributes"] }
|
|
sqlx = { version = "0.8.2", features = ["runtime-async-std", "postgres"] }
|
|
anyhow = "1.0.94"
|
|
chrono = "0.4.41"
|