grin/config/Cargo.toml
Ivan Sorokin 5c029e3f87 Make grin.toml config optional (#1278)
* Make grin.toml config optional. Mirror exisiting config parameters in grin.toml to source code, so binary can run without a config file. Add test for it.
* fixup! Make grin.toml config optional
2018-07-29 17:48:24 -07:00

19 lines
395 B
TOML

[package]
name = "grin_config"
version = "0.3.0"
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
workspace = ".."
publish = false
[dependencies]
serde = "1"
serde_derive = "1"
toml = "0.4"
grin_servers = { path = "../servers" }
grin_p2p = { path = "../p2p" }
grin_util = { path = "../util" }
grin_wallet = { path = "../wallet"}
[dev-dependencies]
pretty_assertions = "0.5.1"