rust/landgen/Cargo.toml
author unC0Rr
Mon, 30 Jan 2023 15:50:14 +0100
branchtransitional_engine
changeset 15912 6e22f4390b7e
parent 14207 bb2f301d4fe0
child 15913 c5684cc62de8
permissions -rw-r--r--
Add basics of wavefront collapse algorithm
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13908
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     1
[package]
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     2
name = "landgen"
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     3
version = "0.1.0"
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     4
authors = ["Andrey Korotaev <a.korotaev@hedgewars.org>"]
15912
6e22f4390b7e Add basics of wavefront collapse algorithm
unC0Rr
parents: 14207
diff changeset
     5
edition = "2021"
13908
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     6
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     7
[dependencies]
13938
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13908
diff changeset
     8
integral-geometry = { path = "../integral-geometry" }
14026
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13938
diff changeset
     9
land2d = { path = "../land2d" }
14051
8a0d69c16cad Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents: 14026
diff changeset
    10
itertools = "0.7.8"