fishctl/Cargo.toml

28 lines
687 B
TOML
Raw Normal View History

2024-06-20 02:07:34 +09:00
[package]
name = "fishctl"
description = "CLI tool for configuring Firefish"
2024-06-20 02:07:34 +09:00
version = "0.1.0-alpha.1"
rust-version = "1.74"
edition = "2021"
license = "MIT"
[dependencies]
2024-06-21 08:39:21 +09:00
chrono = "0.4"
2024-06-20 02:07:34 +09:00
clap = { version = "4.5", features = ["derive"] }
color-print = "0.3"
2024-06-21 09:47:24 +09:00
enum-iterator = "2.1"
2024-06-25 13:09:30 +09:00
redis = { version = "0.25", features = ["tokio-comp"] }
2024-06-20 02:07:34 +09:00
serde = { version = "1.0", features = ["derive"] }
2024-06-21 09:47:24 +09:00
serde_repr = "0.1"
2024-06-20 03:19:20 +09:00
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres"] }
2024-06-25 13:09:30 +09:00
thiserror = "1.0"
2024-06-20 03:19:20 +09:00
tokio = { version = "1.38", features = ["full"] }
2024-06-20 02:07:34 +09:00
toml = "0.8"
2024-06-20 11:42:32 +09:00
url = "2.5"
2024-06-25 11:59:42 +09:00
vapid = "0.6"
2024-06-20 02:07:34 +09:00
validator = { version = "0.18", features = ["derive"] }
yaml-rust = "0.4"
[profile.release]
lto = true