rust/landgen/Cargo.toml
author nemo
Wed, 07 Nov 2018 14:56:34 -0500
changeset 14184 e337e9920440
parent 14072 8a0d69c16cad
child 14228 bb2f301d4fe0
permissions -rw-r--r--
requires bash
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13929
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>"]
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     5
9a1f1e8170f2 Start work on landgen rust lib
unc0rr
parents:
diff changeset
     6
[dependencies]
13959
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13929
diff changeset
     7
integral-geometry = { path = "../integral-geometry" }
14047
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13959
diff changeset
     8
land2d = { path = "../land2d" }
14072
8a0d69c16cad Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents: 14047
diff changeset
     9
itertools = "0.7.8"