# 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 = "markov_str" version = "0.2.0" authors = ["brogolem35"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Markov Chain implementation optimized for text generation." readme = "README.md" keywords = [ "markov", "markov-chain", "text-generation", ] categories = [ "text-processing", "data-structures", ] license = "MIT" repository = "https://github.com/Brogolem35/markov_str" [package.metadata.clippy] deny = ["clippy::pedantic"] [lib] name = "markov_str" path = "src/lib.rs" [[example]] name = "main" path = "examples/main.rs" [[test]] name = "chain" path = "tests/chain.rs" [[test]] name = "regex" path = "tests/regex.rs" [dependencies.hashbrown] version = "0.14.5" [dependencies.lasso] version = "0.7.3" features = [ "ahasher", "inline-more", ] [dependencies.rand] version = "0.8.5" [dependencies.regex] version = "1.10.6" [dependencies.serde] version = "1.0.210" features = ["derive"] optional = true [dependencies.serde_json_any_key] version = "2.0.0" optional = true [dependencies.serde_regex] version = "1.1.0" optional = true [dev-dependencies.serde_json] version = "1.0.62" [features] serialize = [ "serde", "serde_regex", "serde_json_any_key", "hashbrown/serde", "lasso/serialize", ]