# 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 = "markovish" version = "0.2.1" authors = ["Emil Jonathan Eriksson "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Simple Markov chain implementation for text generation" readme = "README.md" keywords = [ "parsing", "text", "language", ] categories = ["text-processing"] license = "MPL-2.0" repository = "https://github.com/ginger51011/markovish/" [lib] name = "markovish" path = "src/lib.rs" [[example]] name = "generate_from_file" path = "examples/generate_from_file/main.rs" [dependencies.hashbrown] version = "0.15" features = ["default-hasher"] default-features = false [dependencies.itertools] version = "0.13" [dependencies.rand] version = "0.8" [dependencies.rand_distr] version = "0.4" [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.unicode-segmentation] version = "1.11" [features] default = ["inline-more"] inline-more = ["hashbrown/inline-more"] serde = [ "dep:serde", "hashbrown/serde", "rand_distr/serde1", ]