Skip to content

Commit b7b2821

Browse files
authored
Merge pull request #59 from marshallpierce/mp/ort-1.6
Update to onnxruntime 1.6.0
2 parents 54ada2e + 3665cb0 commit b7b2821

File tree

9 files changed

+1246
-370
lines changed

9 files changed

+1246
-370
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,5 @@
55
onnxruntime.git
66
Cargo.lock
77
**/synset.txt
8+
9+
/.idea

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Changed
1111

1212
- Prevent session from being built a temporary environment resulting in segfault ([#46](https://github.com/nbigaouette/onnxruntime-rs/pull/46))
13+
- Update onnxruntime to 1.6.0
1314

1415
### Added
1516

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![codecov](https://codecov.io/gh/nbigaouette/onnxruntime-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/nbigaouette/onnxruntime-rs)
88

99
This is an attempt at a Rust wrapper for
10-
[Microsoft's ONNX Runtime](https://github.com/microsoft/onnxruntime) (version 1.5).
10+
[Microsoft's ONNX Runtime](https://github.com/microsoft/onnxruntime) (version 1.6).
1111

1212
This project consist on two crates:
1313

onnxruntime-sys/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use std::{
1111
/// WARNING: If version is changed, bindings for all platforms will have to be re-generated.
1212
/// To do so, run this:
1313
/// cargo build --package onnxruntime-sys --features generate-bindings
14-
const ORT_VERSION: &str = "1.5.2";
14+
const ORT_VERSION: &str = "1.6.0";
1515

1616
/// Base Url from which to download pre-built releases/
1717
const ORT_RELEASE_BASE_URL: &str = "https://github.com/microsoft/onnxruntime/releases/download";

0 commit comments

Comments
 (0)