mirror of
https://git.alemi.dev/memo-cli.git
synced 2024-11-22 10:34:50 +01:00
strip release binary, added some more info
This commit is contained in:
parent
f44d4db3cb
commit
fe9dabed7b
1 changed files with 6 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
||||||
[package]
|
[package]
|
||||||
name = "memo-cli"
|
name = "memo-cli"
|
||||||
version = "0.1.0"
|
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"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
@ -10,3 +13,6 @@ regex = "1"
|
||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
clap = { version = "3.1.6", features = ["derive"] }
|
clap = { version = "3.1.6", features = ["derive"] }
|
||||||
rusqlite = { version="0.27.0", features=["chrono"] }
|
rusqlite = { version="0.27.0", features=["chrono"] }
|
||||||
|
|
||||||
|
[profile.release]
|
||||||
|
strip = true # Automatically strip symbols from the binary.
|
||||||
|
|
Loading…
Reference in a new issue