rust/landgen/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Mon, 16 Sep 2019 17:33:49 +0200
changeset 15415 8504fee3b601
parent 14212 bb2f301d4fe0
permissions -rw-r--r--
Racer: Fix weird water splashes after waypoint placement Does not affect official racer, as only waypoint placement is touched. The reason was that the air attack gear sometimes was not deleted fast enough so it might occassionally drop some air bombs (these are deleted now). Also, the airplane position was set to water level, which caused another water splash.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13913
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>"]
14212
bb2f301d4fe0 2018ize everything
alfadur
parents: 14056
diff changeset
     5
edition = "2018"
13913
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]
13943
1fa905aa4cdb move point struct into integral-geometry and use it to refactor a bit
alfadur
parents: 13913
diff changeset
     8
integral-geometry = { path = "../integral-geometry" }
14031
3b3d97ed2286 Start land generators implementation
unc0rr
parents: 13943
diff changeset
     9
land2d = { path = "../land2d" }
14056
8a0d69c16cad Implement OutlinePoints for land generators, some ground work for template based landgen
unc0rr
parents: 14031
diff changeset
    10
itertools = "0.7.8"