[package]
name = "scope-bca"
version = "0.2.2"
edition = "2024"
authors = ["Jon Machen <jon@palmusd.com>"]
description = "Scope Blockchain Analysis - A production-grade tool for blockchain data analysis, portfolio tracking, and transaction investigation"
license = "MIT"
readme = "README.md"
repository = "https://github.com/robot-accomplice/scope-blockchain-analysis"
homepage = "https://github.com/robot-accomplice/scope-blockchain-analysis"
keywords = ["blockchain", "ethereum", "cli", "analysis", "crypto"]
categories = ["command-line-utilities", "cryptography::cryptocurrencies"]
exclude = [
".github/",
"tests/fixtures/",
"*.md",
"justfile",
]
[lib]
name = "scope"
path = "src/lib.rs"
[[bin]]
name = "scope"
path = "src/main.rs"
[dependencies]
clap = { version = "4.0", features = ["derive", "cargo"] }
tokio = { version = "1.0", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_json = "1.0"
reqwest = { version = "0.12", features = ["json"] }
thiserror = "1.0"
anyhow = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dirs = "5.0"
async-trait = "0.1"
bs58 = "0.5"
chrono = { version = "0.4", features = ["serde"] }
textplots = "0.8"
urlencoding = "2.1"
rustyline = "14"
ratatui = "0.30"
crossterm = "0.29"
sha2 = "0.10.9"
[dev-dependencies]
tokio-test = "0.4"
tempfile = "3.10"
mockito = "1.2"
assert_cmd = "2.0"
predicates = "3.0"