markovify-rs 0.1.2

A fast, extensible Rust implementation of a Markov chain text generator, inspired by markovify
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 = "2021"
name = "markovify-rs"
version = "0.1.2"
authors = ["Akin <akinpasha82@gmail.com>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "CHANGELOG.md",
    "examples/**/*",
    "tests/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, extensible Rust implementation of a Markov chain text generator, inspired by markovify"
homepage = "https://github.com/akin01/markov-rs"
documentation = "https://docs.rs/markov-rs"
readme = "README.md"
keywords = [
    "markov",
    "text",
    "generator",
    "chain",
    "nlp",
]
categories = [
    "text-processing",
    "parser-implementations",
]
license = "MIT"
repository = "https://github.com/akin01/markov-rs"

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

[[example]]
name = "basic"
path = "examples/basic.rs"

[[example]]
name = "combine"
path = "examples/combine.rs"

[[example]]
name = "compiled"
path = "examples/compiled.rs"

[[example]]
name = "email_generator"
path = "examples/email_generator.rs"

[[example]]
name = "file_processing"
path = "examples/file_processing.rs"

[[example]]
name = "newline_text"
path = "examples/newline_text.rs"

[[example]]
name = "sentence_with_start"
path = "examples/sentence_with_start.rs"

[[example]]
name = "serialization"
path = "examples/serialization.rs"

[[example]]
name = "tweet_generator"
path = "examples/tweet_generator.rs"

[[test]]
name = "test_basic"
path = "tests/test_basic.rs"

[[test]]
name = "test_combine"
path = "tests/test_combine.rs"

[[test]]
name = "test_splitters"
path = "tests/test_splitters.rs"

[dependencies.fxhash]
version = "0.2"

[dependencies.lazy_static]
version = "1.4"

[dependencies.rand]
version = "0.8"

[dependencies.regex]
version = "1.10"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "1.0"

[dependencies.unicode-segmentation]
version = "1.10"

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.once_cell]
version = "1.19"