rust/land_dump/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Mon, 16 Sep 2019 17:33:49 +0200
changeset 15431 8504fee3b601
parent 14149 b04dac00e8e2
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:
14142
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     1
[package]
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     2
name = "land_dump"
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     3
version = "0.1.0"
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     4
authors = ["Andrei Korotaev <andrey.korotaev@aptomar.com>"]
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     5
edition = "2018"
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     6
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     7
[dependencies]
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     8
land2d = { path = "../land2d" }
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
     9
landgen = { path = "../landgen" }
14149
b04dac00e8e2 add command arguments to use a template from file into land_dump
alfadur
parents: 14142
diff changeset
    10
mapgen = { path = "../mapgen" }
14142
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
    11
lfprng = { path = "../lfprng" }
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
    12
integral-geometry = { path = "../integral-geometry" }
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
    13
png = "0.13"
69db1d2e4cec land_dump app for testing templated landgen
unc0rr
parents:
diff changeset
    14
structopt ="0.2.13"