pnm decoding and encoding
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..cce3d30 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "pnm" +version = "0.1.0" +edition = "2021" +description = "portable anymap format encoding and decoding" +authors = ["bend-n <[email protected]>"] +license = "MIT" +repository = "https://github.com/bend-n/pnm" +exclude = ["tdata", ".gitignore"] +keywords = ["image", "format", "encoding", "decoding"] +categories = ["multimedia::images", "graphics", "encoding"] + +[dependencies] +atools = "0.1.1" +fimg = { version = "0.4.41", default-features = false } + +[dev-dependencies] +fimg = { version = "0.4.41", features = ["save"], default-features = false } |