mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-03-07 01:08:13 +08:00
26 lines
550 B
TOML
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"]
|