rust/mapgen/Cargo.toml
author unC0Rr
Mon, 27 Jan 2025 15:48:24 +0100
changeset 16094 33f09636018b
parent 16089 3f73daa3f212
child 16101 a4cbc6926439
permissions -rw-r--r--
Switch to toml for WFC templates
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
15932
230dc46487ea Update mapgen to take into account actual values for 'zero' and 'basic' colors
unC0Rr
parents: 14181
diff changeset
    13
rand = "0.8"
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"