Make example binaries proper cargo examples (#7019)

Should not be built by default with `cargo build`
Instead are compiled with `cargo test` to avoid bitrot
Run with `cargo run -p ... --example ...`
This commit is contained in:
Stefan Holderbach
2022-11-06 20:39:27 +01:00
committed by GitHub
parent 5ee7847035
commit 5ea245badf
6 changed files with 0 additions and 14 deletions

View File

@ -9,10 +9,6 @@ license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "ps"
path = "src/main.rs"
[dependencies]
libc = "0.2"
log = "0.4"