[package]
edition = "2021"
name = "swappy"
version = "2.0.0"
authors = ["Nathan Long <him@nathanmlong.com>"]
build = false
exclude = ["test_support/*"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An anagram generator"
homepage = "https://gitlab.com/nathanl/swappy.rs"
readme = "README.md"
keywords = [
"anagrams",
"words",
"text",
"generator",
]
license = "MIT OR Apache-2.0"
repository = "https://gitlab.com/nathanl/swappy.rs"
[features]
benchmark = []
[lib]
name = "swappy"
path = "src/lib.rs"
[[bin]]
name = "swappy"
path = "src/main.rs"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.regex]
version = "1.12.2"
[dependencies.shellexpand]
version = "3.1.0"
features = ["default"]