[package] name = "memo-cli" version = "0.2.0" authors = ["alemidev "] 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" colored = "2.0.0" rpassword = "6.0.1" tempfile = "3.3.0" 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 ureq = { version="2.4.0", features=["json"] } [profile.release] strip = true # Automatically strip symbols from the binary.