1[package] 2name = "ex1-volume-rs" 3version = "0.1.0" 4edition = "2021" 5 6[profile.dev] 7panic = "abort" 8 9[profile.release] 10panic = "abort" 11 12# Compiles the crate as a lib (for GPU) and staticlib (for CPU) 13[lib] 14crate-type = ["staticlib"] 15 16[dependencies] 17ndarray = {version = "0.16.1", default-features = false} 18