# 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 = "markovgen" version = "0.2.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A library for building markov chain graphs from text datasets and performantly generating text sequences by traversing them, includes an accompanying CLI application." readme = "README.md" keywords = [ "graph", "markov", "probability", "generation", "procedural", ] categories = [ "mathematics", "command-line-utilities", ] license = "MIT" repository = "https://github.com/sysrqmagician/markovgen" [profile.release] lto = true [lib] name = "markovgen" path = "src/lib.rs" [[bin]] name = "markovcli" path = "src/bin/cli.rs" required-features = ["serde"] [[bin]] name = "example" path = "src/bin/example.rs" [[bench]] name = "first_names" path = "benches/first_names.rs" harness = false [dependencies.bincode] version = "1.3.3" [dependencies.clap] version = "4.5.2" features = ["derive"] [dependencies.clap_complete] version = "4.5.1" [dependencies.rand] version = "0.8.5" [dependencies.serde] version = "1.0.197" features = [ "derive", "rc", ] optional = true [dependencies.smartstring] version = "1.0.1" [dev-dependencies.cargo-edit] version = "0.12.2" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.flamegraph] version = "0.6.5" [features] cli_no_print = [] serde = ["dep:serde"]