From 645d3f8d22136d58d65f034fc15ea748d751eb96 Mon Sep 17 00:00:00 2001 From: Alexander van Ratingen <470642+alvra@users.noreply.github.com> Date: Thu, 21 Apr 2022 22:16:02 +0200 Subject: Initial commit --- lib/Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 lib/Cargo.toml (limited to 'lib/Cargo.toml') 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" -- cgit v1.2.3