hanabi.rs/Cargo.toml
Felix Bauckholt 9364a06862 Improve ask_question strategy
I also replaced the callback architecture behind
`PublicInformation.ask_questions()` with a simpler method
`PublicInformation.ask_question()` that gets called repeatedly.

To make all float-based sorts easier, I used the `float-ord` package.
I also used it to clean up some of the sorting in `decide_wrapped()`.
2019-03-15 13:45:17 +01:00

13 lines
194 B
TOML

[package]
name = "rust_hanabi"
version = "0.1.0"
authors = ["Jeff Wu <wuthefwasthat@gmail.com>"]
[dependencies]
rand = "*"
log = "*"
getopts = "*"
fnv = "*"
float-ord = "*"
crossbeam = "0.2.5"