1
0
Fork 0
forked from wry/wry

utils: move damage algorithms to algorithm crate

This commit is contained in:
Julian Orth 2022-06-03 21:01:20 +02:00
parent 259340938b
commit 6e244a08ab
12 changed files with 710 additions and 542 deletions

9
algorithms/Cargo.toml Normal file
View file

@ -0,0 +1,9 @@
[package]
name = "algorithms"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
smallvec = { version = "1.8.0", features = ["const_generics", "const_new", "union"] }