Skip to content

Commit

Permalink
point directly at crates.io for candle crates
Browse files Browse the repository at this point in the history
  • Loading branch information
KGrewal1 committed Feb 28, 2024
1 parent 521be46 commit 3a3810f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ exclude = [

[dependencies]

candle-core = { git = "https://github.com/huggingface/candle.git", version = "0.4.0"}
candle-nn = { git = "https://github.com/huggingface/candle.git", version = "0.4.0"}
candle-core = "0.4.0"
candle-nn = "0.4.0"
log = "0.4.20"


[dev-dependencies]
anyhow = { version = "1", features = ["backtrace"] }
assert_approx_eq = "1.1.0"
candle-datasets ={ git = "https://github.com/huggingface/candle.git", version = "0.4.0"}
candle-datasets = "0.4.0"
clap = {version = "4.4.6", features = ["derive"] }
criterion = { version = "0.5.1", features = ["html_reports"] }

Expand Down
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## v0.4.0 (2024-02-28)

* Bump candle requirtement to 0.4.0: this is considered a breaking change due to the reliance of this library on candle-core and candle-nn
* Explicit reliance on the candle crates hosted on crates.io : as cargo does not support git dependecies in published crates, this library now points only to the crates.io releases (previously cargo would default to the crates.io instead of git repo anyway: if the git repo is specifically desired this can be obtained by patching the `Cargo.toml` to point at the candle repo)
* Remove intel-mkl feature: features in this library are mainly used for running examples: any code that uses this library should instead use the features directly from the candle crates

## v0.3.2 (2024-01-07)
Expand Down

0 comments on commit 3a3810f

Please sign in to comment.