[package] name = "npc-engine-utils" version = "0.1.0" authors = ["Sven Knobloch ", "David Enderlin ", "Stéphane Magnenat "] edition = "2021" license = "MIT OR Apache-2.0" description = "The utility module of the NPC engine, providing re-usable support code" repository = "https://github.com/ethz-gtc/npc-engine" homepage = "https://github.com/ethz-gtc/npc-engine" readme = "README.md" keywords = ["MCTS", "AI", "multi-agent", "simulation", "game"] categories = ["algorithms", "science", "simulation", "game-development"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] npc-engine-core = { version = "0.1", path = "../npc-engine-core", features = ["graphviz"] } log = "0.4" ansi_term = "0.12" rand = "0.8" serde = { version = "1", features = [ "derive" ] } [dev-dependencies] env_logger = "0.9.0"