[package]
edition = "2021"
name = "rhymomatic"
version = "0.1.4"
authors = ["Caleb Hattingh <caleb.hattingh@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, phoneme-aware rhyme, alliteration, and assonance finder for the command line."
homepage = "https://github.com/cjrh/rhymomatic"
readme = "README.md"
keywords = [
"rhyme",
"phoneme",
"cmudict",
"cli",
"poetry",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "Apache-2.0"
repository = "https://github.com/cjrh/rhymomatic"
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.tar.gz"
pkg-fmt = "tgz"
bin-dir = "{ bin }{ binary-ext }"
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-{ target }.zip"
pkg-fmt = "zip"
[package.metadata.release]
tag-name = "v{{version}}"
tag-message = "Release {{crate_name}} {{version}}"
publish = true
push = true
[lib]
name = "rhymomatic"
path = "src/lib.rs"
[[bin]]
name = "rhymomatic"
path = "src/main.rs"
[[example]]
name = "regexperf"
path = "examples/regexperf.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.regex]
version = "1.12"