memo-cli/Cargo.toml

24 lines
748 B
TOML

[package]
name = "memo-cli"
version = "0.1.1"
authors = ["alemidev <me@alemi.dev>"]
description = "A simple CLI tool to help you remember things"
repository = "https://github.com/alemidev/memo-cli"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1.5.5"
base64 = "0.13.0"
chrono = "0.4.19"
colored = "2.0.0"
git-version = "0.3.5" # ughh just for git hash
const_format = "0.2.22" # ughh just for git hash
libnotify = "1.0.3"
clap = { version = "3.1.6", features = ["derive"] }
rusqlite = { version="0.27.0", features=["chrono"] }
ureq = { version="2.4.0", features=["json"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.