hacknote 0.3.2

CLI for HackNote — manage notes from the command line
[package]
name = "hacknote"
version = "0.3.2"
edition = "2024"
description = "CLI for HackNote — manage notes from the command line"
license = "MIT"
repository = "https://github.com/xinxiaotech/hacknote-cli"
keywords = ["cli", "hacknote", "notes"]
categories = ["command-line-utilities"]

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

[dependencies]
clap = { version = "4", features = ["derive"] }
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
tokio = { version = "1", features = ["rt", "macros"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
comfy-table = "7"
dirs = "6"
anyhow = "1"

[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = "z"