Compare commits
2 commits
44ecf2b07b
...
a6825a0ee1
Author | SHA1 | Date | |
---|---|---|---|
a6825a0ee1 | |||
1524e4f143 |
2 changed files with 6 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uwurandom-rs"
|
name = "uwurandom-rs"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
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
|
# 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]
|
[dependencies]
|
||||||
rand_core = "0.6.4"
|
rand_core = "0.6.4"
|
||||||
uwurandom-proc-macros = { version = "0.1.0", path = "uwurandom-proc-macros" }
|
uwurandom-proc-macros = "1.0.0"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = ["uwurandom-proc-macros"]
|
members = ["uwurandom-proc-macros"]
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uwurandom-proc-macros"
|
name = "uwurandom-proc-macros"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
description = "proc macros for uwurandom-rs"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
proc-macro = true
|
proc-macro = true
|
||||||
|
|
Loading…
Reference in a new issue