rust/land_dump/Cargo.toml
author Wuzzy <Wuzzy2@mail.ru>
Sun, 09 Dec 2018 22:28:46 +0100
changeset 14397 f9a3cfdec1df
parent 14128 b04dac00e8e2
permissions -rw-r--r--
Hide most HUD elements in cinematic mode
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"