-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
33 lines (29 loc) · 1.01 KB
/
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
29
30
31
32
33
# 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 = "multimarkov"
version = "1.0.0"
authors = ["joeclark-phd <[email protected]>"]
description = """
This is a generic tool for training and using multi-order Markov chains for procedural generation applications
such as generating randomized but authentic-sounding names for characters and locations.
"""
readme = "README.md"
license = "MIT"
repository = "https://github.com/joeclark-phd/multimarkov"
[dependencies]
log = "0.4.22"
[dependencies.rand]
version = "0.8.5"
features = [ "small_rng" ]
[dev-dependencies]
env_logger = "0.11.5"