Skip to content

Commit

Permalink
Update tract to 0.21 (#54)
Browse files Browse the repository at this point in the history
By updating to `tract` version `0.21` we fix compatibility with nightly
rust, since tract `0.20` indirectly depends on old version of `ahash`
(via `tract` -> `string-interner` -> `hashbrown` -> `ahash`) which does
not build with currently nightly rust - see
tkaitchuck/aHash#200.
  • Loading branch information
fornwall authored Feb 12, 2024
1 parent 095c060 commit 39c881c
Show file tree
Hide file tree
Showing 3 changed files with 91 additions and 48 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- next-header -->
## [Unreleased] - ReleaseDate
- Upgrade to `perchance` v0.5
- Upgrade `tract` to 0.21.0

## [0.5.1] - 2024-01-18
- Do not ignore output shapes when constructing `onnx`-based inference models.
Expand Down
130 changes: 86 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ exclude = [ "benchmarks/perf-test" ]
resolver = "2"

[workspace.dependencies]
tract-core = { version = "0.20" }
tract-hir = { version = "0.20" }
tract-nnef = { version = "0.20" }
tract-onnx = { version = "0.20" }
tract-core = { version = "0.21" }
tract-hir = { version = "0.21" }
tract-nnef = { version = "0.21" }
tract-onnx = { version = "0.21" }

0 comments on commit 39c881c

Please sign in to comment.