[package]
name = "hacknote"
version = "0.2.0"
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 = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio-tungstenite = { version = "0.26", features = ["rustls-tls-native-roots"] }
futures-util = "0.3"
yrs = "0.21"
comfy-table = "7"
colored = "3"
dirs = "6"
anyhow = "1"
rand = "0.9"
url = "2"
atty = "0.2"