[package]
edition = "2021"
rust-version = "1.78.0"
name = "jitter"
version = "0.1.0"
authors = ["kako-jun"]
build = false
exclude = [
".github/",
"target/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Add natural handwriting-like variation to digital text"
homepage = "https://github.com/kako-jun/jitter"
documentation = "https://docs.rs/jitter"
readme = "README.md"
keywords = [
"font",
"text",
"glyph",
"handwriting",
"jitter",
]
categories = [
"command-line-utilities",
"graphics",
]
license = "MIT"
repository = "https://github.com/kako-jun/jitter"
[[bin]]
name = "jitter"
path = "src/main.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.rand]
version = "0.8"
[dependencies.skrifa]
version = "0.26"
[dev-dependencies.cargo-husky]
version = "1"
features = ["user-hooks"]
default-features = false
[profile.release]
lto = true
codegen-units = 1
panic = "abort"