21 lines
479 B
TOML
21 lines
479 B
TOML
[package]
|
|
name = "shared"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
bitflags = "2.10.0"
|
|
bumpalo = "3.19.1"
|
|
bytemuck = { version = "1.24.0", features = ["derive"] }
|
|
enum_dispatch = "0.3.13"
|
|
log = "0.4.29"
|
|
num = "0.4.3"
|
|
num-integer = "0.1.46"
|
|
num-traits = "0.2.19"
|
|
once_cell = "1.21.3"
|
|
smallvec = "1.15.1"
|
|
cuda_std = { git = "https://github.com/Rust-GPU/Rust-CUDA", branch = "main", default-features = false, optional = true }
|
|
|
|
[features]
|
|
use_f64 = []
|
|
cuda = ["cuda_std"]
|