memo-cli/Cargo.toml

32 lines
1,000 B
TOML
Raw Permalink Normal View History

2022-03-13 20:13:13 +01:00
[package]
name = "memo-cli"
version = "0.2.0"
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"
sha2 = "0.10.2"
2022-03-20 23:48:33 +01:00
base64 = "0.13.0"
2022-03-16 02:10:22 +01:00
colored = "2.0.0"
rpassword = "6.0.1"
tempfile = "3.3.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
notify-rust = "4"
serde = "1.0.136"
serde_json = "1.0"
chrono = { version = "0.4.19", features = ["serde"] }
uuid = { version = "0.8.2", features = ["v4", "serde"] }
clap = { version = "3.1.6", features = ["derive"] }
rusqlite = { version="0.27.0", features=["bundled-sqlcipher", "chrono", "backup"] }
dirs = "4.0.0" # cross-platform paths
2022-03-20 23:48:33 +01:00
ureq = { version="2.4.0", features=["json"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.