ahecha_cli 0.0.1

Ahecha cli tool
Documentation
[package]
name = "ahecha_cli"
version = "0.0.1"
edition = "2021"
license = "MIT"
description = "Ahecha cli tool"
homepage = "https://github.com/ahecha-co/ahecha"
documentation = "https://docs.rs/ahecha"
repository = "https://github.com/ahecha-co/ahecha"
readme = "README.md"

[[bin]]
name = "ahecha"
path = "src/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
dotenv = "0.15"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sqlx = { version = "0.6", default-features = false, features = [
  "any",
  "macros",
  "postgres",
  "runtime-tokio-rustls"
] }
tokio = { version = "1.20", features = ["macros", "rt", "rt-multi-thread"] }