flabild 0.1.0

A fast Markov chain-based fake word generator that produces pronounceable pseudo-words
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.93"
name = "flabild"
version = "0.1.0"
authors = ["Eric Avdey <eiri@eiri.ca>"]
build = false
exclude = [
    ".github/",
    "src/bin/",
    "mise.toml",
    "cog.toml",
    "hk.pkl",
    ".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "flabild"
description = "A fast Markov chain-based fake word generator that produces pronounceable pseudo-words"
homepage = "https://github.com/eiri/flabild-rs"
documentation = "https://docs.rs/flabild"
readme = "README.md"
keywords = [
    "generator",
    "fake",
    "words",
    "markov",
    "random",
]
categories = [
    "text-processing",
    "algorithms",
    "command-line-utilities",
]
license = "MIT"
repository = "https://github.com/eiri/flabild-rs"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
cli = [
    "dep:clap",
    "dep:rayon",
]
default = ["cli"]

[lib]
name = "flabild"
path = "src/lib.rs"

[[bin]]
name = "flabild"
path = "src/main.rs"
required-features = ["cli"]

[dependencies.anyhow]
version = "1.0"

[dependencies.clap]
version = "4.5.57"
features = ["derive"]
optional = true

[dependencies.rayon]
version = "1.11.0"
optional = true

[dependencies.serde_cbor]
version = "0.11"

[dependencies.weighted_rand]
version = "0.4"

[profile.dev]
opt-level = 0
debug = 2

[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true