ppi/Cargo.toml
Pagwin 7d3e456a41
Fixed bug with certain commit hashes and code improvements
The bug was that if a byte in a commit id was less than 16 then it would
have a leading 0 which the format specifier that printed hex would
ignore.

The code improvements were removing instances or reading newlines from
stdin because breakpoints are better and the print statements are
sufficeient as points to break on, it may make sense to replace them
with function calls to functions which noop in future but for now this
is good enough.

In addition ignored some warnings in enum definitions, having error info
is useful in the debugger if nothing else so we're not just going to
throw that away due to a warning.
2024-09-08 14:17:33 -04:00

13 lines
335 B
TOML

[package]
name = "ppi"
version = "1.1.4"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.2.22", features = ["derive", "cargo"] }
dirs = "4.0.0"
git2 = "0.18.0"
serde = { version = "1.0.144", features = ["derive"] }
toml = "0.5.9"