memo-cli/Cargo.toml
Francesco Tolomei 212d41221e
improved compatibility (kind of)
windows support is still a loooong way to go
- replaced env!("HOME") with dirs::home_dir()
- replaced libnotify with notify_rust
- set to use bundled libcipher (encryption not implemented yet)
2022-03-23 20:01:24 +01:00

28 lines
899 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"
sha2 = "0.10.2"
base64 = "0.13.0"
chrono = "0.4.19"
colored = "2.0.0"
rpassword = "6.0.1"
git-version = "0.3.5" # ughh just for git hash
const_format = "0.2.22" # ughh just for git hash
notify-rust = "4"
uuid = { version = "0.8.2", features = ["v4"] }
clap = { version = "3.1.6", features = ["derive"] }
rusqlite = { version="0.27.0", features=["bundled-sqlcipher", "chrono", "backup"] }
dirs = "4.0.0" # cross-platform paths
ureq = { version="2.4.0", features=["json"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.