[package] name = "lmarkov" description = "A simple Markov chain library for text." version = "0.1.0" authors = ["Andrew Abbott "] edition = "2018" license = "MIT OR Apache-2.0" repository = "https://github.com/mirrexagon/lmarkov" [features] serialization = ["serde", "serde_json"] [dependencies] rand = "0.7" serde = { version = "1.0", features = ["derive"], optional = true } serde_json = { version = "1.0", optional = true }