diff options
author | gennyble <gen@nyble.dev> | 2023-10-09 20:20:16 -0500 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2023-10-09 20:20:16 -0500 |
commit | 3ad73998fe7bbb146aa124bc22729afe98d77c4c (patch) | |
tree | 6840a9bc9efc682df8133ca53274cffcb3654a86 /squash | |
parent | db422e0c983d7543d4d5e742630b29e36c55cbd4 (diff) | |
download | colorsquash-3ad73998fe7bbb146aa124bc22729afe98d77c4c.tar.gz colorsquash-3ad73998fe7bbb146aa124bc22729afe98d77c4c.zip |
some docs
Diffstat (limited to 'squash')
-rw-r--r-- | squash/Cargo.toml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/squash/Cargo.toml b/squash/Cargo.toml index 921f937..68fe712 100644 --- a/squash/Cargo.toml +++ b/squash/Cargo.toml @@ -1,14 +1,22 @@ [package] name = "squash" version = "0.1.0" +authors = ["gennyble <gen@nyble.dev>"] edition = "2021" +license = "ISC" +description = "CLI tool for quantizing colours" +repository = "https://github.com/gennyble/colorsquash/tree/main/squash" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] +# the meat 'o the thing! the meaning behind it all colorsquash = { path = "..", version = "0.1.0" } + +# just useful tools for writing binaries anyhow = "1.0.75" camino = "1.1.6" + # time of writing: # png has a change to ignore extra iCCP blocks my test image needed. it hasn't # been released yet, so we're using the git here. the commit we require is e4b4811 |