Files
simul/Cargo.toml

35 lines
758 B
TOML

[workspace]
resolver = "2"
members = [
"simul-core",
"simul-euclidean",
"simul-io",
"simul", "simul-lattice",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
repository = "https://github.com/example/simul"
[workspace.dependencies]
# Core dependencies
nalgebra = "0.33"
thiserror = "2"
rand = "0.9"
rand_distr = "0.5"
# Compute (CubeCL all-in: CPU SIMD, CUDA, wgpu, Vulkan)
cubecl = { version = "0.10.0-pre.2", default-features = false }
cubecl-runtime = { version = "0.10.0-pre.2", default-features = false }
# Testing
approx = "0.5"
# Internal crates
simul-core = { path = "simul-core" }
simul-euclidean = { path = "simul-euclidean" }
simul-io = { path = "simul-io" }
simul-lattice = { path = "simul-lattice" }