add dual impl for bitboard (bitvec and standard)

This commit is contained in:
2025-02-18 21:51:13 -05:00
parent a759f9f615
commit 5499628be0
3 changed files with 62 additions and 8 deletions

View File

@@ -18,9 +18,12 @@ debug = true
lto = true
[features]
bitvec = [ "dep:bitvec" ]
[dependencies]
arrayvec = "0.7"
bitvec = "1"
bitvec = { version = "1", optional = true }
either = "1.13"
indicatif = "0.17"
lazy_static = "1.5"