rust/land_dump/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Sat, 02 Nov 2019 13:01:28 +0100
changeset 15506 5a30396f8fb2
parent 14133 b04dac00e8e2
permissions -rw-r--r--
ClimbHome: Change misleading Seed assignment to nil value This was "Seed = ClimbHome", but ClimbHome was a nil value. This code still worked as the engine interpreted the nil value as empty string. But it can be very misleading. This changeset makes the Seed assignment more explicit by assigning the empty string directly. The compability has been tested.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14126
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" }
14133
b04dac00e8e2 add command arguments to use a template from file into land_dump
alfadur
parents: 14126
diff changeset
    10
mapgen = { path = "../mapgen" }
14126
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"