author | unC0Rr |
Tue, 28 Jan 2025 10:37:46 +0100 | |
changeset 16101 | a4cbc6926439 |
parent 16094 | 33f09636018b |
permissions | -rw-r--r-- |
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 | 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 | 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 | 16 |
serde_derive = "1.0" |
16089 | 17 |
png = "0.17" |
16094 | 18 |
toml = "0.8" |