ddnet-map-gen/Cargo.toml

26 lines
632 B
TOML
Raw Normal View History

2022-03-14 13:29:05 +00:00
[package]
name = "ddnet-map-gen"
2022-03-22 07:04:04 +00:00
authors = ["Edgar <git@edgarluque.com>"]
description = "A DDraceNetwork map generator."
2022-10-28 10:29:51 +00:00
version = "0.2.0"
2022-03-14 13:29:05 +00:00
edition = "2021"
2022-03-22 07:05:35 +00:00
license = "AGPL-3.0-only"
2022-03-22 07:04:04 +00:00
keywords = ["ddnet", "teeworlds", "mapgen"]
2022-03-14 13:29:05 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-10-28 10:29:51 +00:00
clap = { version = "4.0.18", features = ["cargo", "derive"] }
color-eyre = "0.6.2"
eyre = "0.6.8"
fixed = "1.19.0"
2022-03-14 13:29:05 +00:00
irrgarten = "0.1.1"
2022-10-28 10:29:51 +00:00
itertools = "0.10.5"
ndarray = "0.15.6"
owo-colors = "3.5.0"
2022-03-14 13:29:05 +00:00
rand = "0.8.5"
2022-10-28 10:29:51 +00:00
rand_chacha = "0.3.1"
2022-03-14 13:29:05 +00:00
rand_distr = "0.4.3"
2022-10-28 10:29:51 +00:00
rand_seeder = "0.2.3"
twmap = "0.9.0"