-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b1004b6
commit 41a7d5f
Showing
3 changed files
with
27 additions
and
53 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,15 @@ | |
name = "kurv" | ||
version = "0.0.1" | ||
edition = "2021" | ||
description = "A process manager to deamonize commands and programs. Made with ๐ง from Argentina" | ||
authors = ["Lucas Colombo<[email protected]>"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
description = "A process manager to daemonize commands and programs. Inspired by pm2, but lightweight and not as featureful." | ||
authors = ["Lucas Colombo<[email protected]>"] | ||
license = "MIT" | ||
license-file = "LICENSE" | ||
repository = "https://github.com/lucas-labs/kurv" | ||
categories = ["command-line-utilities"] | ||
readme = "README.md" | ||
homepage = "https://kurv.lucode.ar" | ||
keywords = ["cli", "process", "manager", "daemon", "daemonize"] | ||
|
||
[profile.release] | ||
strip = true | ||
|
@@ -17,7 +22,6 @@ rpath = false | |
overflow-checks = false | ||
debug = 0 | ||
debug-assertions = false | ||
# incremental = true # remove this one | ||
|
||
[dependencies] | ||
anyhow = "1.0.75" | ||
|