author | unC0Rr |
Mon, 27 Jan 2025 15:48:24 +0100 | |
changeset 16065 | 33f09636018b |
parent 16060 | 3f73daa3f212 |
child 16072 | a4cbc6926439 |
permissions | -rw-r--r-- |
14127
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"] |
16059
2acea266d297
Fix generation in corners by extending outline edge definitions
unC0Rr
parents:
15903
diff
changeset
|
5 |
edition = "2021" |
14127
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] |
14160 | 8 |
vec2d = { path = "../vec2d" } |
14127
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 |
|
15903
230dc46487ea
Update mapgen to take into account actual values for 'zero' and 'basic' colors
unC0Rr
parents:
14160
diff
changeset
|
13 |
rand = "0.8" |
14127
0c5b9cfda9ab
add a higher level map generation lib to load yaml templates into somewhere
alfadur
parents:
diff
changeset
|
14 |
serde = "1.0" |
16059
2acea266d297
Fix generation in corners by extending outline edge definitions
unC0Rr
parents:
15903
diff
changeset
|
15 |
serde_yaml = "0.9" |
14151 | 16 |
serde_derive = "1.0" |
16060 | 17 |
png = "0.17" |
16065 | 18 |
toml = "0.8" |