[package]
name = "scope-bca"
version = "0.4.4"
edition = "2024"
authors = ["Jon Machen <robot@accomplice.ch>"]
description = "Scope Blockchain Analysis - A production-grade tool for blockchain data analysis, address management, 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/",
"CHANGELOG.md",
"TESTS.md",
"PR_BODY.md",
"justfile",
]
[lib]
name = "scope"
path = "src/lib.rs"
[[bin]]
name = "scope"
path = "src/main.rs"
[features]
default = []
web = []
[dependencies]
clap = { version = "4.0", features = ["derive", "cargo"] }
clap_complete = "4"
indicatif = "0.17"
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"] }
base64 = "0.22"
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 = { version = "0.29", features = ["event-stream"] }
futures = "0.3"
sha2 = "0.10.9"
axum = { version = "0.7", features = ["json", "ws", "macros"] }
tower-http = { version = "0.6", features = ["cors", "trace"] }
owo-colors = "4.2.3"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[dev-dependencies]
tokio-test = "0.4"
tower = { version = "0.5", features = ["util"] }
tempfile = "3.10"
mockito = "1.2"
assert_cmd = "2.0"
predicates = "3.0"