memo-cli/Cargo.toml

19 lines
544 B
TOML
Raw Normal View History

2022-03-13 20:13:13 +01:00
[package]
name = "memo-cli"
version = "0.1.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]
regex = "1"
2022-03-13 20:13:13 +01:00
chrono = "0.4.19"
clap = { version = "3.1.6", features = ["derive"] }
2022-03-13 20:13:13 +01:00
rusqlite = { version="0.27.0", features=["chrono"] }
[profile.release]
strip = true # Automatically strip symbols from the binary.