diff --git a/Cargo.toml b/Cargo.toml index 5720b70..92ce493 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,6 +3,7 @@ name = "uwurandom-rs" version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" +description = "a no-std library to generate uwurandom" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -11,7 +12,7 @@ rand_pcg = "0.3.1" [dependencies] rand_core = "0.6.4" -uwurandom-proc-macros = { version = "0.1.0", path = "uwurandom-proc-macros" } +uwurandom-proc-macros = "1.0.0" [workspace] members = ["uwurandom-proc-macros"] diff --git a/uwurandom-proc-macros/Cargo.toml b/uwurandom-proc-macros/Cargo.toml index bcc5fa7..bca60e3 100644 --- a/uwurandom-proc-macros/Cargo.toml +++ b/uwurandom-proc-macros/Cargo.toml @@ -3,6 +3,7 @@ name = "uwurandom-proc-macros" version = "1.0.0" edition = "2021" license = "MIT OR Apache-2.0" +description = "proc macros for uwurandom-rs" [lib] proc-macro = true