[package]
edition = "2021"
rust-version = "1.75"
name = "ringkernel"
version = "0.4.0"
authors = ["Michael Ivertowski <mivertowski@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "GPU-native persistent actor model framework - Rust port of DotCompute Ring Kernel"
homepage = "https://github.com/mivertowski/RustCompute"
documentation = "https://docs.rs/ringkernel"
readme = "README.md"
keywords = [
"gpu",
"actor",
"cuda",
"wgpu",
"distributed",
]
categories = [
"concurrency",
"asynchronous",
"hardware-support",
]
license = "Apache-2.0"
repository = "https://github.com/mivertowski/RustCompute"
[features]
all-backends = [
"cpu",
"cuda",
"wgpu",
"metal",
]
cpu = []
cuda = ["ringkernel-cuda/cuda"]
default = ["cpu"]
k2k-messaging = []
metal = ["ringkernel-metal/metal"]
multi-gpu = ["cuda"]
telemetry = []
topic-pubsub = []
wgpu = ["ringkernel-wgpu/wgpu"]
[lib]
name = "ringkernel"
path = "src/lib.rs"
[[example]]
name = "enterprise_runtime"
path = "examples/enterprise_runtime.rs"
[[example]]
name = "pagerank_reduction"
path = "examples/pagerank_reduction.rs"
[[example]]
name = "ping_pong"
path = "examples/ping_pong.rs"
[[example]]
name = "vector_add"
path = "examples/vector_add.rs"
[[test]]
name = "control_block"
path = "tests/control_block.rs"
[[test]]
name = "cpu_backend"
path = "tests/cpu_backend.rs"
[[test]]
name = "cuda_backend"
path = "tests/cuda_backend.rs"
[[test]]
name = "hlc"
path = "tests/hlc.rs"
[[test]]
name = "k2k_integration"
path = "tests/k2k_integration.rs"
[[bench]]
name = "claims_validation"
path = "benches/claims_validation.rs"
harness = false
[[bench]]
name = "hlc"
path = "benches/hlc.rs"
harness = false
[[bench]]
name = "k2k_messaging"
path = "benches/k2k_messaging.rs"
harness = false
[[bench]]
name = "latency"
path = "benches/latency.rs"
harness = false
[[bench]]
name = "memory_layout"
path = "benches/memory_layout.rs"
harness = false
[[bench]]
name = "message_queue"
path = "benches/message_queue.rs"
harness = false
[[bench]]
name = "serialization"
path = "benches/serialization.rs"
harness = false
[[bench]]
name = "startup"
path = "benches/startup.rs"
harness = false
[dependencies.async-trait]
version = "0.1"
[dependencies.cfg-if]
version = "1.0"
[dependencies.futures]
version = "0.3"
[dependencies.inventory]
version = "0.3"
[dependencies.ringkernel-codegen]
version = "0.4.0"
[dependencies.ringkernel-core]
version = "0.4.0"
[dependencies.ringkernel-cpu]
version = "0.4.0"
[dependencies.ringkernel-cuda]
version = "0.4.0"
optional = true
[dependencies.ringkernel-derive]
version = "0.4.0"
[dependencies.ringkernel-metal]
version = "0.4.0"
optional = true
[dependencies.ringkernel-wgpu]
version = "0.4.0"
optional = true
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.48"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.async-stream]
version = "0.3"
[dev-dependencies.axum]
version = "0.7"
[dev-dependencies.bytemuck]
version = "1.14"
features = ["derive"]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.crossterm]
version = "0.28"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.prost]
version = "0.13"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false
[dev-dependencies.ringkernel-cuda]
version = "0.4.0"
[dev-dependencies.ringkernel-cuda-codegen]
version = "0.4.0"
[dev-dependencies.rkyv]
version = "0.7"
features = [
"validation",
"strict",
]
[dev-dependencies.serde]
version = "1.0"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
"full",
"parsing",
]
[dev-dependencies.tokio]
version = "1.48"
features = [
"full",
"test-util",
"macros",
"rt-multi-thread",
]
[dev-dependencies.toml]
version = "0.8"
[dev-dependencies.tonic]
version = "0.12"
[dev-dependencies.tower]
version = "0.5"
[dev-dependencies.tower-http]
version = "0.6"
features = [
"cors",
"trace",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.zerocopy]
version = "0.7"
features = ["derive"]