diff options
author | Alexander van Ratingen <470642+alvra@users.noreply.github.com> | 2022-04-21 22:16:02 +0200 |
---|---|---|
committer | Alexander van Ratingen <470642+alvra@users.noreply.github.com> | 2022-04-21 22:16:02 +0200 |
commit | 645d3f8d22136d58d65f034fc15ea748d751eb96 (patch) | |
tree | bf55549077f17e9167194f6cb21fed41ec30ba03 /lib/Cargo.toml | |
download | generate-random-645d3f8d22136d58d65f034fc15ea748d751eb96.tar.xz |
Initial commit
Diffstat (limited to 'lib/Cargo.toml')
-rw-r--r-- | lib/Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/Cargo.toml b/lib/Cargo.toml new file mode 100644 index 0000000..8050d42 --- /dev/null +++ b/lib/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "generate-random" +version = "0.1.0" +edition = "2021" +license = "MIT OR Apache-2.0" +authors = ["Alexander van Ratingen"] +homepage = "https://github.com/alvra/generate-random" +repository = "https://github.com/alvra/generate-random" +documentation = "https://docs.rs/generate-random" +description = "Generate random data" +readme = "README.md" +keywords = ["random"] + +[dependencies] +rand = "0.8.5" +generate-random-macro = { path = "../derive-macro" } + +[dev-dependencies] +rand_chacha = "0.3.1" |