mirror of
https://github.com/mimblewimble/grin.git
synced 2025-01-21 11:31:08 +03:00
1195071f5b
* Replace logging backend to flexi-logger and add log rotation * Changed flexi_logger to log4rs * Disable logging level filtering in Root logger * Support different logging levels for file and stdout * Don't log messages from modules other than Grin-related * Fix formatting * Place backed up compressed log copies into log file directory * Increase default log file size to 16 MiB * Add comment to config file on log_max_size option
34 lines
687 B
TOML
34 lines
687 B
TOML
[package]
|
|
name = "grin_api"
|
|
version = "0.4.0"
|
|
authors = ["Grin Developers <mimblewimble@lists.launchpad.net>"]
|
|
workspace = ".."
|
|
publish = false
|
|
|
|
[dependencies]
|
|
failure = "0.1.1"
|
|
failure_derive = "0.1.1"
|
|
hyper = "0.12"
|
|
lazy_static = "1"
|
|
regex = "1"
|
|
ring = "0.13"
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
serde_json = "1"
|
|
log = "0.4"
|
|
tokio = "0.1.7"
|
|
tokio-core = "0.1.17"
|
|
tokio-tcp = "0.1"
|
|
tokio-rustls = "0.7"
|
|
http = "0.1.5"
|
|
hyper-rustls = "0.14"
|
|
futures = "0.1.21"
|
|
rustls = "0.13"
|
|
url = "1.7.0"
|
|
|
|
grin_core = { path = "../core" }
|
|
grin_chain = { path = "../chain" }
|
|
grin_p2p = { path = "../p2p" }
|
|
grin_pool = { path = "../pool" }
|
|
grin_store = { path = "../store" }
|
|
grin_util = { path = "../util" }
|