dungeon-game/Cargo.toml

17 lines
326 B
TOML
Raw Normal View History

2021-12-18 11:58:33 -06:00
[package]
name = "dungeon_game"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-01-02 12:56:42 -06:00
specs = "0.17.0"
specs-derive = "0.4.1"
2021-12-18 12:06:50 -06:00
pancurses = "0.17.0"
rand = "0.8.4"
grid = "0.6.0"
2021-12-28 20:12:45 -06:00
float-ord = "0.3.2"
2022-01-02 12:56:42 -06:00
pathfinding = "3"
2022-03-03 12:21:32 -06:00
thiserror = "1"