2017-04-06 09:41:49 +03:00
|
|
|
[package]
|
|
|
|
name = "grin"
|
2018-10-15 13:34:33 +03:00
|
|
|
version = "0.4.0"
|
2018-03-20 21:21:29 +03:00
|
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
2017-09-21 03:07:40 +03:00
|
|
|
exclude = ["**/*.grin", "**/*.grin2"]
|
2018-03-20 21:21:29 +03:00
|
|
|
publish = false
|
2018-06-26 16:03:37 +03:00
|
|
|
autobins = false
|
2018-03-23 13:28:15 +03:00
|
|
|
build = "src/build/build.rs"
|
2017-04-06 09:41:49 +03:00
|
|
|
|
|
|
|
[workspace]
|
2018-04-12 12:11:24 +03:00
|
|
|
members = ["api", "chain", "config", "core", "keychain", "p2p", "servers", "store", "util", "pool", "wallet"]
|
2017-04-25 04:55:01 +03:00
|
|
|
|
2017-12-22 21:46:28 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "grin"
|
|
|
|
path = "src/bin/grin.rs"
|
|
|
|
|
2017-04-25 04:55:01 +03:00
|
|
|
[dependencies]
|
Idiomatic cargo toml (#862)
* Specify versions SemVer-style
- slog and serde
* Comments for not update-able pre-1.0 crates:
- urlencoded at "0.5" since 0.6+ lacks trait `plugin::Plugin<iron::Request<'_, '_>>`
* alpha-sort deps
* Specify versions SemVer-style
- backtrace, bitflags, blake2-rfc, bodyparser, built, byteorder
- chrono, clap, demonize, enum_primitive, env_logger
- failure, failure_derive, futures
- hyper, iron, itertools, lazy_static, libc
- memmap, mount, net2, num_bigint, prettytable-rs
- rand, regex, rocksdb, router, siphasher
- term, time, tokio-core, tokio-retry, urlencoded, uuid, walkdir, zip
2018-03-25 20:44:27 +03:00
|
|
|
blake2-rfc = "0.2"
|
2018-07-30 11:33:28 +03:00
|
|
|
chrono = "0.4.4"
|
2018-06-05 20:26:32 +03:00
|
|
|
clap = "2.31"
|
2018-06-21 06:16:02 +03:00
|
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
2018-08-31 13:35:31 +03:00
|
|
|
cursive = "0.9.0"
|
2018-10-17 20:01:42 +03:00
|
|
|
humansize = "1.1.0"
|
2018-06-05 20:26:32 +03:00
|
|
|
daemonize = "0.3"
|
Idiomatic cargo toml (#862)
* Specify versions SemVer-style
- slog and serde
* Comments for not update-able pre-1.0 crates:
- urlencoded at "0.5" since 0.6+ lacks trait `plugin::Plugin<iron::Request<'_, '_>>`
* alpha-sort deps
* Specify versions SemVer-style
- backtrace, bitflags, blake2-rfc, bodyparser, built, byteorder
- chrono, clap, demonize, enum_primitive, env_logger
- failure, failure_derive, futures
- hyper, iron, itertools, lazy_static, libc
- memmap, mount, net2, num_bigint, prettytable-rs
- rand, regex, rocksdb, router, siphasher
- term, time, tokio-core, tokio-retry, urlencoded, uuid, walkdir, zip
2018-03-25 20:44:27 +03:00
|
|
|
serde = "1"
|
|
|
|
serde_json = "1"
|
2018-09-17 05:47:48 +03:00
|
|
|
slog = { version = "~2.3", features = ["max_level_trace", "release_max_level_trace"] }
|
2018-06-05 20:26:32 +03:00
|
|
|
term = "0.5"
|
2018-03-20 21:21:29 +03:00
|
|
|
|
|
|
|
grin_api = { path = "./api" }
|
|
|
|
grin_config = { path = "./config" }
|
|
|
|
grin_core = { path = "./core" }
|
|
|
|
grin_keychain = { path = "./keychain" }
|
|
|
|
grin_p2p = { path = "./p2p"}
|
2018-04-12 12:11:24 +03:00
|
|
|
grin_servers = { path = "./servers" }
|
2018-03-20 21:21:29 +03:00
|
|
|
grin_util = { path = "./util"}
|
|
|
|
grin_wallet = { path = "./wallet" }
|
|
|
|
|
2017-09-21 03:07:40 +03:00
|
|
|
# TODO - once "patch" is available we should be able to clean up the workspace dependencies
|
|
|
|
# [patch.crate-io]
|
|
|
|
# secp256k1zkp = { git = "https://github.com/mimblewimble/rust-secp256k1-zkp" }
|
2018-03-23 13:28:15 +03:00
|
|
|
|
|
|
|
[build-dependencies]
|
2018-06-05 20:26:32 +03:00
|
|
|
built = "0.3"
|
2018-09-19 20:43:56 +03:00
|
|
|
reqwest = "0.9"
|
2018-08-17 20:51:50 +03:00
|
|
|
flate2 = "1.0"
|
|
|
|
tar = "0.4"
|