tig-monorepo/tig-binary/Cargo.toml
2025-04-30 14:13:37 +01:00

23 lines
623 B
TOML

[package]
name = "tig-binary"
version = "0.1.0"
readme = "README.md"
license = "https://github.com/tig-foundation/tig-monorepo/tree/main/docs/agreements/end_user_license_agreement.pdf"
authors.workspace = true
repository.workspace = true
edition.workspace = true
[lib]
crate-type = ["cdylib", "staticlib", "rlib"]
[dependencies]
cudarc = { version = "0.16.2", features = [
"cuda-version-from-build-system",
], optional = true }
tig-challenges = { path = "../tig-challenges" }
tig-algorithms = { path = "../tig-algorithms" }
[features]
entry_point = []
cuda = ["cudarc", "tig-algorithms/cuda", "tig-challenges/cuda"]