✨🧪💩➕➖ workspace, vanth, varo: Add varo
crate and Root
struct, update dependencies
- Replaced `bitcode` crate with `bincode` in workspace dependencies. - Added new crate `varo` for random optimization with `Varo` trait, `Distribution`, and `optimize` function. - Defined `Root` world struct placeholder in `vanth` crate. - Created `reference.rs` test module in `vanth` with custom components and events. - Added TODOs in `varo` for RNG implementation and `optimize` function.
This commit is contained in:
parent
a1cc9b6e04
commit
5614cfe95f
7 changed files with 120 additions and 5 deletions
19
crates/varo/Cargo.toml
Normal file
19
crates/varo/Cargo.toml
Normal file
|
@ -0,0 +1,19 @@
|
|||
[package]
|
||||
name = "varo"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
|
||||
[lib]
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
digest.workspace = true
|
||||
serde.workspace = true
|
||||
serde_json.workspace = true
|
||||
blake3.workspace = true
|
||||
vanth = { path = "../vanth" }
|
||||
vanth_derive = { path = "../vanth_derive" }
|
||||
rand_core.workspace = true
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = { workspace = true }
|
Loading…
Add table
Add a link
Reference in a new issue