[package]
edition = "2021"
rust-version = "1.89"
name = "cuda-async"
version = "0.0.1"
authors = ["Melih Elibol"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Async CUDA support via Async Rust."
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/nvlabs/cutile-rs"
[lib]
name = "cuda_async"
path = "src/lib.rs"
[[test]]
name = "concurrent_capture"
path = "tests/concurrent_capture.rs"
[[test]]
name = "cuda_graph"
path = "tests/cuda_graph.rs"
[[test]]
name = "error_handling"
path = "tests/error_handling.rs"
[[test]]
name = "execute_once"
path = "tests/execute_once.rs"
[dependencies.anyhow]
version = "1"
[dependencies.cuda-core]
version = "0.0.1"
[dependencies.futures]
version = "0.3"
[dependencies.half]
version = "2"
[dependencies.thiserror]
version = "1"