[package]
name = "ringkernel-accnet"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "GPU-accelerated accounting network analytics with real-time visualization"
keywords = ["gpu", "accounting", "graph-analytics", "fraud-detection", "visualization"]
categories = ["visualization", "finance", "science"]
readme = "README.md"
[dependencies]
ringkernel-core = { version = "0.4.0", path = "../ringkernel-core" }
ringkernel-derive = { version = "0.4.0", path = "../ringkernel-derive" }
ringkernel-cpu = { version = "0.4.0", path = "../ringkernel-cpu" }
ringkernel-cuda-codegen = { version = "0.4.0", path = "../ringkernel-cuda-codegen", optional = true }
syn = { version = "2.0", features = ["full", "parsing"], optional = true }
tokio = { version = "1.35", features = ["full", "sync", "time", "macros", "rt-multi-thread"] }
futures = "0.3"
rkyv = { version = "0.7", features = ["validation", "strict", "uuid"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
eframe = { version = "0.29", default-features = false, features = ["default_fonts", "glow", "persistence"] }
egui = "0.29"
egui_plot = "0.29"
nalgebra = "0.33"
rand = "0.8"
rand_distr = "0.4"
statrs = "0.17"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.6", features = ["v4", "serde"] }
thiserror = "2.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
parking_lot = "0.12"
dashmap = "6.0"
env_logger = "0.11"
log = "0.4"
ringkernel-cuda = { version = "0.4.0", path = "../ringkernel-cuda", optional = true, features = ["cuda"] }
cudarc = { workspace = true, optional = true }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1.4"
[features]
default = []
cuda = ["ringkernel-cuda", "ringkernel-cuda-codegen", "syn", "cudarc"]
[[bin]]
name = "accnet"
path = "src/bin/accnet.rs"
[[bin]]
name = "accnet-benchmark"
path = "src/bin/accnet_benchmark.rs"
[[bench]]
name = "kernel_benchmarks"
harness = false