2024-11-14 13:46:38 +01:00
|
|
|
[package]
|
|
|
|
name = "ghost-eye"
|
2024-12-06 16:17:46 +01:00
|
|
|
authors = ["str3tch <stretch@ghostchain.io>"]
|
|
|
|
description = "Application for interacting with Casper/Ghost nodes that are exposing RPC only to the localhost"
|
|
|
|
version = "0.2.6"
|
2024-11-14 13:46:38 +01:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
better-panic = "0.3.0"
|
|
|
|
chrono = "0.4.38"
|
|
|
|
clap = { version = "4.5.20", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] }
|
|
|
|
codec = { version = "3.6.12", package = "parity-scale-codec" }
|
|
|
|
color-eyre = "0.6.3"
|
|
|
|
config = "0.14.0"
|
|
|
|
crossterm = { version = "0.28.1", features = ["serde", "event-stream"] }
|
|
|
|
derive_builder = "0.20.2"
|
|
|
|
derive_deref = "1.1.1"
|
|
|
|
directories = "5.0.1"
|
|
|
|
font8x8 = "0.3.1"
|
|
|
|
futures = "0.3.31"
|
|
|
|
hex = "0.4.3"
|
|
|
|
human-panic = "2.0.2"
|
|
|
|
json5 = "0.4.1"
|
|
|
|
lazy_static = "1.5.0"
|
|
|
|
libc = "0.2.159"
|
|
|
|
ratatui = { version = "0.28.1", features = ["serde", "macros"] }
|
|
|
|
serde = { version = "1.0.210", features = ["derive"] }
|
|
|
|
signal-hook = "0.3.17"
|
|
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
2024-12-02 12:16:39 +01:00
|
|
|
subxt = { version = "0.38.0", features = ["substrate-compat"] }
|
2024-11-14 13:46:38 +01:00
|
|
|
tokio = { version = "1.40.0", features = ["full"] }
|
|
|
|
tokio-util = "0.7.12"
|
|
|
|
tracing = "0.1.37"
|
|
|
|
tracing-error = "0.2.0"
|
|
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "serde"] }
|
2024-12-02 15:51:37 +01:00
|
|
|
unicode-width = "0.2.0"
|
2024-11-14 13:46:38 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
anyhow = "1.0.91"
|
|
|
|
vergen-gix = { version = "1.0.2", features = ["build", "cargo"] }
|