lipsum 0.8.0

Lipsum is a lorem ipsum text generation library. Use this if you need some filler text for your application. The text is generated using a simple Markov chain, which you can also instantiate to generate your own pieces of pseudo-random text.
Documentation
[package]
name = "lipsum"
version = "0.8.0"
authors = ["Martin Geisler <martin@geisler.net>"]
description = """
Lipsum is a lorem ipsum text generation library. Use this if you need
some filler text for your application.

The text is generated using a simple Markov chain, which you can also
instantiate to generate your own pieces of pseudo-random text.
"""
documentation = "https://docs.rs/lipsum/"
repository = "https://github.com/mgeisler/lipsum/"
readme = "README.md"
keywords = ["lorem-ipsum", "lorem", "ipsum", "text", "typography"]
categories = ["text-processing"]
license = "MIT"
edition = "2018"
exclude = [".dir-locals.el"]

[dependencies]
rand = "0.8"
rand_chacha = "0.3"

[dev-dependencies]
version-sync = "0.9"