Firts Commit: new app
This commit is contained in:
26
Cargo.toml
Normal file
26
Cargo.toml
Normal 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
|
||||
Reference in New Issue
Block a user