Firts Commit: new app

This commit is contained in:
2026-04-14 15:44:14 +08:00
commit ade2b6ba16
11 changed files with 3545 additions and 0 deletions

26
Cargo.toml Normal file
View File

@@ -0,0 +1,26 @@
[package]
name = "memoscli"
version = "0.1.0"
edition = "2021"
authors = ["SidneyZhang<zly@lyzhang.me>"]
description = "A command-line tool to manage memos"
license = "MIT"
[dependencies]
ratatui = "0.28"
crossterm = "0.28"
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
directories = "5.0"
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-appender = "0.2"
clap = { version = "4.5", features = ["derive"] }
[profile.release]
opt-level = 3
lto = true