dungeon-game/Cargo.toml

17 lines
326 B
TOML
Raw Normal View History

2021-12-18 17:58:33 +00: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 18:56:42 +00:00
specs = "0.17.0"
specs-derive = "0.4.1"
2021-12-18 18:06:50 +00:00
pancurses = "0.17.0"
rand = "0.8.4"
grid = "0.6.0"
2021-12-29 02:12:45 +00:00
float-ord = "0.3.2"
2022-01-02 18:56:42 +00:00
pathfinding = "3"
2022-03-03 18:21:32 +00:00
thiserror = "1"