rust/land_dump/Cargo.toml
author nemo
Tue, 30 Apr 2019 09:36:13 -0400
changeset 14859 8d65728c4ed0
parent 14128 b04dac00e8e2
permissions -rw-r--r--
Backed out changeset 13589d529899 So, we only disabled this on the release branch in r29d614a5c9eb due to having discovered it JUST before release. We should fix it properly in default...
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
14121
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" }
14128
b04dac00e8e2 add command arguments to use a template from file into land_dump
alfadur
parents: 14121
diff changeset
    10
mapgen = { path = "../mapgen" }
14121
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"