mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-01-09 14:48:08 -05:00
38 lines
820 B
TOML
38 lines
820 B
TOML
[package]
|
|
name = "dnetview"
|
|
description = "P2P network monitoring TUI utility"
|
|
version = "0.4.1"
|
|
edition = "2021"
|
|
authors = ["Dyne.org foundation <foundation@dyne.org>"]
|
|
license = "AGPL-3.0-only"
|
|
homepage = "https://dark.fi"
|
|
repository = "https://github.com/darkrenaissance/darkfi"
|
|
|
|
[dependencies.darkfi]
|
|
path = "../../"
|
|
features = ["rpc"]
|
|
|
|
[dependencies]
|
|
# Tui
|
|
termion = "2.0.1"
|
|
tui = {version = "0.19.0", features = ["termion"]}
|
|
|
|
# Async
|
|
smol = "1.3.0"
|
|
async-std = {version = "1.12.0", features = ["attributes"]}
|
|
easy-parallel = "3.3.0"
|
|
async-channel = "1.8.0"
|
|
|
|
# Misc
|
|
clap = {version = "4.3.2", features = ["derive"]}
|
|
rand = "0.8.5"
|
|
simplelog = "0.12.1"
|
|
log = "0.4.18"
|
|
url = "2.4.0"
|
|
thiserror = "1.0.40"
|
|
|
|
# Encoding and parsing
|
|
serde_json = "1.0.96"
|
|
serde = {version = "1.0.163", features = ["derive"]}
|
|
hex = "0.4.3"
|