memo-cli/Cargo.toml
alemidev 497879b839
added merge, use keys to sync, encrypt sent db
there's still much to do: server discards symbols in filename but base64
might produce symbols. The edit sync is broken: new memos will be
synched but not edited memos. Also it's pretty janky but I have to start
somewhere.
2022-03-23 02:42:08 +01:00

27 lines
842 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
libnotify = "1.0.3"
uuid = { version = "0.8.2", features = ["v4"] }
clap = { version = "3.1.6", features = ["derive"] }
rusqlite = { version="0.27.0", features=["chrono", "backup"] }
ureq = { version="2.4.0", features=["json"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.