Skip to content

Commit

Permalink
Specify version so that cargo publish works
Browse files Browse the repository at this point in the history
  • Loading branch information
psibi committed Oct 3, 2023
1 parent 0ffaeb5 commit 2036be0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions pid1-exe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,16 @@ name = "pid1-exe"
version = "0.1.0"
edition = "2021"
readme = "../README.md"

homepage = "https://github.com/fpco/amber"
repository = "https://github.com/fpco/amber"
license = "MIT"
description = "pid1 handling library for proper signal and zombie reaping of the PID1 process"
keywords = ["init", "pid1", "process", "cli"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pid1 = { path = "../pid1"}
pid1 = { path = "../pid1", version = "0.1.0" }
signal-hook = "0.3.17"
clap = { version = "4.4.6", default-features = false, features = ["std", "derive", "help"]}

Expand Down

0 comments on commit 2036be0

Please sign in to comment.