fix: candle mirror url

closes https://github.com/v0l/route96/issues/1
This commit is contained in:
kieran 2024-11-22 13:37:55 +00:00
parent 791068f274
commit 90eadf890a
No known key found for this signature in database
GPG Key ID: DE71CEB3925BE941
2 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View File

@ -454,7 +454,7 @@ checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50"
[[package]]
name = "candle-core"
version = "0.7.2"
source = "git+https://git.v0l.io/Kieran/candle.git#a01aa897991fbc3da2dfda568b4254f697fdd598"
source = "git+https://git.v0l.io/huggingface/candle.git?tag=0.7.2#3a3c48b14b861da0d275cae44edb1b0191f83bf4"
dependencies = [
"byteorder",
"gemm",
@ -474,7 +474,7 @@ dependencies = [
[[package]]
name = "candle-nn"
version = "0.7.2"
source = "git+https://git.v0l.io/Kieran/candle.git#a01aa897991fbc3da2dfda568b4254f697fdd598"
source = "git+https://git.v0l.io/huggingface/candle.git?tag=0.7.2#3a3c48b14b861da0d275cae44edb1b0191f83bf4"
dependencies = [
"candle-core",
"half",
@ -488,7 +488,7 @@ dependencies = [
[[package]]
name = "candle-transformers"
version = "0.7.2"
source = "git+https://git.v0l.io/Kieran/candle.git#a01aa897991fbc3da2dfda568b4254f697fdd598"
source = "git+https://git.v0l.io/huggingface/candle.git?tag=0.7.2#3a3c48b14b861da0d275cae44edb1b0191f83bf4"
dependencies = [
"byteorder",
"candle-core",

View File

@ -47,7 +47,7 @@ clap = { version = "4.5.18", features = ["derive"] }
libc = { version = "0.2.153", optional = true }
ffmpeg-rs-raw = { git = "https://git.v0l.io/Kieran/ffmpeg-rs-raw.git", rev = "4c3e1dfccc46d5487110dd9de5ba672c4d32697f", optional = true }
candle-core = { git = "https://git.v0l.io/Kieran/candle.git", version = "^0.7.2", optional = true }
candle-nn = { git = "https://git.v0l.io/Kieran/candle.git", version = "^0.7.2", optional = true }
candle-transformers = { git = "https://git.v0l.io/Kieran/candle.git", version = "^0.7.2", optional = true }
candle-core = { git = "https://git.v0l.io/huggingface/candle.git", tag = "0.7.2", optional = true }
candle-nn = { git = "https://git.v0l.io/huggingface/candle.git", tag = "0.7.2", optional = true }
candle-transformers = { git = "https://git.v0l.io/huggingface/candle.git", tag = "0.7.2", optional = true }
sqlx-postgres = { version = "0.8.2", optional = true, features = ["chrono", "uuid"] }