diff options
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" |