mirror of
https://github.com/huggingface/candle.git
synced 2025-06-15 18:28:24 +00:00

* Fixes for the yolo-v8 layout. * Bugfixes. * Another silly bugfix. * Remove the hf-hub dependency. * Remove the transformers dependency.
25 lines
770 B
TOML
25 lines
770 B
TOML
[package]
|
|
name = "candle-transformers"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
accelerate-src = { workspace = true, optional = true }
|
|
candle = { path = "../candle-core", version = "0.1.2", package = "candle-core" }
|
|
candle-nn = { path = "../candle-nn", version = "0.1.2" }
|
|
intel-mkl-src = { workspace = true, optional = true }
|
|
rand = { workspace = true }
|
|
wav = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
accelerate = ["dep:accelerate-src", "candle/accelerate", "candle-nn/accelerate"]
|
|
cuda = ["candle/cuda", "candle-nn/cuda"]
|
|
mkl = ["dep:intel-mkl-src", "candle/mkl", "candle-nn/mkl"]
|