[package]
edition = "2024"
name = "zukan"
version = "0.2.12"
build = "build.rs"
exclude = [
".github/**",
"Makefile",
"DEVELOPING.md",
"docs/**",
"assets/**",
"rustfmt.toml",
"target/**",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Monster Hunter bestiary in your terminal"
homepage = "https://github.com/lazywalker/zukan"
readme = "README.md"
keywords = [
"monster-hunter",
"cli",
"terminal",
"sprites",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/lazywalker/zukan"
[package.metadata.deb]
maintainer = "lazywalker <lazywalker@example.com>"
section = "utils"
priority = "optional"
extended-description = """
zukan renders Monster Hunter creature and item icons as half-block ANSI art
in the terminal, with an optional neofetch-style info card. All icon and data
assets are embedded at compile time — a single offline binary."""
depends = "$auto"
assets = [
[
"target/release/zukan",
"usr/bin/",
"755",
],
[
"README.md",
"usr/share/doc/zukan/README",
"644",
],
[
"LICENSE",
"usr/share/doc/zukan/LICENSE",
"644",
],
]
[[bin]]
name = "zukan"
path = "src/main.rs"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.image]
version = "0.25"
features = ["png"]
default-features = false
[dependencies.rand]
version = "0.9"
[dependencies.rust-embed]
version = "8"
features = ["interpolate-folder-path"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[build-dependencies.flate2]
version = "1"
[build-dependencies.tar]
version = "0.4"
[build-dependencies.ureq]
version = "3"
features = [
"rustls",
"gzip",
]
default-features = false
[profile.release]
opt-level = "z"
lto = "thin"
codegen-units = 1
strip = "symbols"