mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-02-22 19:07:50 +08:00
23 lines
623 B
TOML
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"]
|