[package]
name = "ringkernel-txmon"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
rust-version.workspace = true
description = "GPU-accelerated real-time transaction monitoring showcase for RingKernel"
keywords = ["gpu", "monitoring", "fraud-detection", "finance", "ringkernel"]
categories = ["simulation", "finance", "visualization"]
readme = "README.md"
[dependencies]
ringkernel = { version = "0.3.0", path = "../ringkernel" }
ringkernel-core = { version = "0.3.0", path = "../ringkernel-core" }
inventory = { workspace = true }
iced = { version = "0.13", features = ["tokio"] }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
rand = { version = "0.8", features = ["small_rng"] }
bytemuck = { version = "1.24", features = ["derive"] }
ringkernel-cuda = { version = "0.3.0", path = "../ringkernel-cuda", optional = true }
ringkernel-cuda-codegen = { version = "0.3.0", path = "../ringkernel-cuda-codegen", optional = true }
cudarc = { workspace = true, optional = true }
syn = { workspace = true, optional = true }
[dev-dependencies]
criterion = { workspace = true }
[features]
default = ["cpu"]
cpu = ["ringkernel/cpu"]
cuda = ["ringkernel/cuda", "dep:ringkernel-cuda", "dep:cudarc"]
cuda-codegen = ["cuda", "dep:ringkernel-cuda-codegen", "dep:syn"]
[[bin]]
name = "txmon"
path = "src/bin/txmon.rs"
[[bin]]
name = "txmon-benchmark"
path = "src/bin/benchmark.rs"