-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
28 lines (25 loc) · 824 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "lipsum"
version = "0.9.1"
authors = ["Martin Geisler <martin@geisler.net>"]
description = """
Lipsum is a lorem ipsum text generation library. It generates
pseudo-random Latin text. Use this if you need filler or dummy text
for your application.
The text is generated using a simple Markov chain, which you can
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 = ["random", "text", "markov", "typography"]
categories = ["text-processing"]
license = "MIT"
edition = "2021"
rust-version = "1.61"
[dependencies]
rand = {version = "0.8.5", default-features = false, features = ["alloc"]}
rand_chacha = "0.3.1"
[dev-dependencies]
version-sync = "0.9.4"
rand = "0.8.5"