mirror of
https://github.com/tig-foundation/tig-monorepo.git
synced 2026-03-10 18:58:07 +08:00
25 lines
724 B
TOML
25 lines
724 B
TOML
[package]
|
|
name = "tig-runtime"
|
|
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
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.81"
|
|
clap = { version = "4.5.4" }
|
|
cudarc = { version = "0.16.2", features = [
|
|
"cuda-version-from-build-system",
|
|
], optional = true }
|
|
libloading = "0.8.6"
|
|
serde = { version = "1.0.196", features = ["derive"] }
|
|
serde_json = { version = "1.0.113" }
|
|
tig-challenges = { path = "../tig-challenges" }
|
|
tig-structs = { path = "../tig-structs" }
|
|
tig-utils = { path = "../tig-utils" }
|
|
|
|
[features]
|
|
cuda = ["cudarc", "tig-challenges/cuda"]
|