# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "ncpig" version = "0.4.0" authors = ["Ryan Crisanti "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Non-Cooperative Perfect Information Games, and algorithms to play them." documentation = "https://docs.rs/ncpig" readme = "README.md" keywords = [ "game", "ai", "machine-learning", "monte-carlo", "maxn", ] categories = [ "algorithms", "science", "mathematics", "game-development", "simulation", ] license = "GPL-3.0-only" repository = "https://git.sr.ht/~ryguy/ncpig" [lib] name = "ncpig" path = "src/lib.rs" bench = false [[example]] name = "dots_and_boxes_maxn" path = "examples/dots_and_boxes_maxn.rs" [[example]] name = "mcts_numberclaim" path = "examples/mcts_numberclaim.rs" [[example]] name = "rolit_vs_two_bots" path = "examples/rolit_vs_two_bots.rs" [[example]] name = "tic_tac_toe_random" path = "examples/tic_tac_toe_random.rs" [[example]] name = "user_vs_machine" path = "examples/user_vs_machine.rs" [[test]] name = "maxn" path = "tests/maxn.rs" [[test]] name = "mcts" path = "tests/mcts.rs" [[test]] name = "random" path = "tests/random.rs" [[bench]] name = "search" path = "benches/search.rs" [dependencies.anyhow] version = "1.0.86" [dependencies.itertools] version = "0.13.0" [dependencies.log] version = "0.4.21" [dependencies.petgraph] version = "0.6.5" [dependencies.rand] version = "0.8.5" [dependencies.thiserror] version = "1.0.61" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.criterion-macro] version = "0.4.0" [dev-dependencies.env_logger] version = "0.11.3" [dev-dependencies.fickle] version = "0.2.1" [dev-dependencies.textwrap] version = "0.16.1"