[package]
edition = "2024"
name = "hdim-render"
version = "0.1.0"
authors = ["Matteo Bosshard <matteobosshard@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal rendering logic for HDIM using half-block characters."
readme = "README.md"
keywords = [
"image",
"tui",
"editor",
"terminal",
"graphics",
]
categories = [
"command-line-utilities",
"multimedia::images",
]
license = "GPL-3.0"
repository = "https://github.com/HardBoss07/hdim"
resolver = "2"
[lib]
name = "hdim_render"
path = "src/lib.rs"
[[test]]
name = "complex_image"
path = "tests/complex_image.rs"
[[test]]
name = "image_file"
path = "tests/image_file.rs"
[[test]]
name = "visuals"
path = "tests/visuals.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.crossterm]
version = "0.29"
[dependencies.hdim-core]
version = "0.1.0"
[dependencies.image]
version = "0.25"
[dev-dependencies.insta]
version = "1.34"