2017-04-06 09:41:49 +03:00
|
|
|
[package]
|
|
|
|
name = "grin"
|
2023-08-02 12:22:25 +03:00
|
|
|
version = "5.2.0-beta.3"
|
2018-03-20 21:21:29 +03:00
|
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
2019-11-19 13:49:32 +03:00
|
|
|
description = "Simple, private and scalable cryptocurrency implementation based on the Mimblewimble chain format."
|
2018-10-26 03:44:50 +03:00
|
|
|
license = "Apache-2.0"
|
|
|
|
repository = "https://github.com/mimblewimble/grin"
|
|
|
|
keywords = [ "crypto", "grin", "mimblewimble" ]
|
|
|
|
readme = "README.md"
|
2017-09-21 03:07:40 +03:00
|
|
|
exclude = ["**/*.grin", "**/*.grin2"]
|
2018-03-23 13:28:15 +03:00
|
|
|
build = "src/build/build.rs"
|
2018-12-08 02:59:40 +03:00
|
|
|
edition = "2018"
|
2017-04-06 09:41:49 +03:00
|
|
|
|
|
|
|
[workspace]
|
2019-02-21 14:57:45 +03:00
|
|
|
members = ["api", "chain", "config", "core", "keychain", "p2p", "servers", "store", "util", "pool"]
|
2018-12-11 04:07:17 +03:00
|
|
|
exclude = ["etc/gen_gen"]
|
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"
|
2020-06-09 00:15:32 +03:00
|
|
|
chrono = "0.4.11"
|
|
|
|
clap = { version = "2.33", features = ["yaml"] }
|
2018-06-21 06:16:02 +03:00
|
|
|
ctrlc = { version = "3.1", features = ["termination"] }
|
2021-03-03 21:47:41 +03:00
|
|
|
cursive_table_view = "0.13.2"
|
2019-06-05 23:29:22 +03:00
|
|
|
humansize = "1.1.0"
|
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"
|
2022-01-07 16:24:54 +03:00
|
|
|
futures = "0.3.19"
|
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_json = "1"
|
2018-10-21 23:30:56 +03:00
|
|
|
log = "0.4"
|
2020-06-09 00:15:32 +03:00
|
|
|
term = "0.6"
|
2018-03-20 21:21:29 +03:00
|
|
|
|
2023-08-02 12:22:25 +03:00
|
|
|
grin_api = { path = "./api", version = "5.2.0-beta.3" }
|
|
|
|
grin_config = { path = "./config", version = "5.2.0-beta.3" }
|
|
|
|
grin_chain = { path = "./chain", version = "5.2.0-beta.3" }
|
|
|
|
grin_core = { path = "./core", version = "5.2.0-beta.3" }
|
|
|
|
grin_keychain = { path = "./keychain", version = "5.2.0-beta.3" }
|
|
|
|
grin_p2p = { path = "./p2p", version = "5.2.0-beta.3" }
|
|
|
|
grin_servers = { path = "./servers", version = "5.2.0-beta.3" }
|
|
|
|
grin_util = { path = "./util", version = "5.2.0-beta.3" }
|
2018-03-23 13:28:15 +03:00
|
|
|
|
2020-04-17 22:41:55 +03:00
|
|
|
[dependencies.cursive]
|
2021-03-03 21:47:41 +03:00
|
|
|
version = "0.16"
|
2020-04-17 22:41:55 +03:00
|
|
|
default-features = false
|
|
|
|
features = ["pancurses-backend"]
|
2019-02-13 16:29:44 +03:00
|
|
|
|
2018-03-23 13:28:15 +03:00
|
|
|
[build-dependencies]
|
2020-06-09 00:15:32 +03:00
|
|
|
built = { version = "0.4", features = ["git2"]}
|
2018-12-07 20:18:33 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-08-02 12:22:25 +03:00
|
|
|
grin_chain = { path = "./chain", version = "5.2.0-beta.3" }
|
|
|
|
grin_store = { path = "./store", version = "5.2.0-beta.3" }
|