rust/mapgen/Cargo.toml
author unC0Rr
Tue, 28 Jan 2025 10:37:46 +0100
changeset 16101 a4cbc6926439
parent 16094 33f09636018b
permissions -rw-r--r--
- Adopt newest version of rand crate - Rework fill_bytes() method to use full generated values
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14148
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
     1
[package]
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
     2
name = "mapgen"
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
     3
version = "0.1.0"
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
     4
authors = ["Hedgewars Project"]
16088
2acea266d297 Fix generation in corners by extending outline edge definitions
unC0Rr
parents: 15932
diff changeset
     5
edition = "2021"
14148
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
     6
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
     7
[dependencies]
14181
c24a76f131d6 implement basic land texturing
alfadur
parents: 14172
diff changeset
     8
vec2d = { path = "../vec2d" }
14148
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
     9
land2d = { path = "../land2d" }
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
    10
landgen = { path = "../landgen" }
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
    11
integral-geometry = { path = "../integral-geometry" }
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
    12
16101
a4cbc6926439 - Adopt newest version of rand crate
unC0Rr
parents: 16094
diff changeset
    13
rand = "0.9"
14148
0c5b9cfda9ab add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff changeset
    14
serde = "1.0"
16088
2acea266d297 Fix generation in corners by extending outline edge definitions
unC0Rr
parents: 15932
diff changeset
    15
serde_yaml = "0.9"
14172
3c8a33ba06ba start loading theme textures
alfadur
parents: 14148
diff changeset
    16
serde_derive = "1.0"
16089
3f73daa3f212 Adopt newer version of png lib
unC0Rr
parents: 16088
diff changeset
    17
png = "0.17"
16094
33f09636018b Switch to toml for WFC templates
unC0Rr
parents: 16089
diff changeset
    18
toml = "0.8"