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

13
Cargo.lock generated
View file

@ -28,6 +28,13 @@ dependencies = [
"version_check",
]
[[package]]
name = "algorithms"
version = "0.1.0"
dependencies = [
"smallvec",
]
[[package]]
name = "anyhow"
version = "1.0.56"
@ -308,6 +315,7 @@ name = "jay"
version = "0.1.0"
dependencies = [
"ahash",
"algorithms",
"anyhow",
"backtrace",
"bincode",
@ -329,7 +337,6 @@ dependencies = [
"num-traits",
"once_cell",
"pin-project",
"qoi",
"rand",
"repc",
"smallvec",
@ -517,10 +524,6 @@ dependencies = [
"unicode-xid",
]
[[package]]
name = "qoi"
version = "0.1.0"
[[package]]
name = "quote"
version = "1.0.16"