Include a serde feature in the shared crate

This commit is contained in:
2024-03-23 13:36:28 +01:00
parent 3d93bf0fda
commit f1962503b8
22 changed files with 134 additions and 281 deletions

View File

@@ -7,8 +7,10 @@ edition = "2021"
[dependencies]
enum-map = "2.4.2"
itertools = { version = "0.10.5", optional = true }
itertools = { version = "0.12.1", optional = true }
rand = "0.8.5"
serde = { version = "1.0.197", features = ["derive"], optional = true }
[features]
ai = ["itertools"]
ai = ["dep:itertools"]
serde = ["dep:serde"]