# 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" rust-version = "1.62" name = "markov-generator" version = "0.1.5" description = "Highly customizable crate for building Markov chains and generating data from them" documentation = "https://docs.rs/markov-generator" readme = "misc/crate-readme.md" keywords = [ "markov", "markov-chain", "markov-text", "random", "serialize", ] categories = [ "data-structures", "no-std", "text-processing", ] license = "GPL-3.0-or-later" repository = "https://github.com/taylordotfish/markov-generator" [package.metadata.docs.rs] features = ["doc_cfg"] [dependencies.rand] version = "0.8" default-features = false [dependencies.serde] version = "1.0" features = [ "alloc", "derive", ] optional = true default-features = false [features] default = [ "serde", "std", "hash", ] doc_cfg = [] hash = ["std"] std = [ "serde?/std", "rand/std", "rand/std_rng", ]