2022-03-13 20:13:13 +01:00
|
|
|
[package]
|
|
|
|
name = "memo-cli"
|
2022-03-16 02:08:53 +01:00
|
|
|
version = "0.1.1"
|
2022-03-14 14:26:33 +01:00
|
|
|
authors = ["alemidev <me@alemi.dev>"]
|
|
|
|
description = "A simple CLI tool to help you remember things"
|
|
|
|
repository = "https://github.com/alemidev/memo-cli"
|
2022-03-13 20:13:13 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-16 02:08:53 +01:00
|
|
|
regex = "1.5.5"
|
2022-03-20 23:48:33 +01:00
|
|
|
base64 = "0.13.0"
|
2022-03-13 20:13:13 +01:00
|
|
|
chrono = "0.4.19"
|
2022-03-16 02:10:22 +01:00
|
|
|
colored = "2.0.0"
|
2022-03-15 22:17:24 +01:00
|
|
|
git-version = "0.3.5" # ughh just for git hash
|
|
|
|
const_format = "0.2.22" # ughh just for git hash
|
2022-03-14 23:12:41 +01:00
|
|
|
libnotify = "1.0.3"
|
2022-03-14 03:41:26 +01:00
|
|
|
clap = { version = "3.1.6", features = ["derive"] }
|
2022-03-13 20:13:13 +01:00
|
|
|
rusqlite = { version="0.27.0", features=["chrono"] }
|
2022-03-20 23:48:33 +01:00
|
|
|
ureq = { version="2.4.0", features=["json"] }
|
2022-03-14 14:26:33 +01:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
strip = true # Automatically strip symbols from the binary.
|