tig-monorepo/tig-algorithms/Cargo.toml
2024-09-20 00:12:31 +08:00

26 lines
550 B
TOML

[package]
name = "tig-algorithms"
version = "0.1.0"
readme = "README.md"
authors.workspace = true
repository.workspace = true
edition.workspace = true
[dependencies]
anyhow = "1.0.81"
cudarc = { version = "0.12.0", features = [
"cuda-version-from-build-system",
], optional = true }
ndarray = "0.15.6"
rand = { version = "0.8.5", default-features = false, features = [
"std_rng",
"small_rng",
] }
tig-challenges = { path = "../tig-challenges" }
[lib]
crate-type = ["cdylib", "rlib"]
[features]
cuda = ["cudarc", "tig-challenges/cuda"]