jp2a ripoff
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..36582e6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,25 @@ +[package] +name = "pascii" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +anyhow = "1.0.71" +clap = { version = "4.3.3", features = ["derive"] } +image = { version = "0.24.6", features = [ + "png", + "jpeg_rayon", +], default-features = false } +rayon = { version = "1.7.0", optional = true } +rgb2ansi256 = "0.1.1" + +[profile.release] +lto = true +opt-level = 3 +strip = true + +[features] +rayon = ["dep:rayon"] +default = [] |