Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rust bindings #12606

Merged
merged 28 commits into from
Feb 8, 2023
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3845ab5
[rust] Add low-level -sys bindings
boydjohnson Jul 12, 2022
e7372ab
[rust] Add Rust specific .gitignores
boydjohnson Jul 13, 2022
a9e7b1e
[rust] Build ORT with cmake and build.rs
boydjohnson Jul 19, 2022
75f2d12
[rust] Add onnxruntime high-level bindings
boydjohnson Jul 20, 2022
365a37f
[rust] Add bindings licenses, README.md
boydjohnson Jul 20, 2022
2788a24
[rust] Add bindings test onnx model
boydjohnson Jul 29, 2022
775e76e
[rust] Fix clippy::pedantic lint
boydjohnson Jul 30, 2022
cb2dfbe
[rust] Remove lazy_static usage where calls are cheap
boydjohnson Aug 8, 2022
fc69d37
[rust] Fix lack of call to free char* pointer
boydjohnson Aug 8, 2022
7a9809e
[rust] Sort dependencies in Cargo.tomls
boydjohnson Aug 8, 2022
10ef1f2
[rust] Bump zip version
boydjohnson Aug 8, 2022
4218e65
[rust] Move release of env_ptr to EnvironmentSingleton
boydjohnson Aug 8, 2022
0ce7756
[rust] Remove reference in Session, make Sync + Send
boydjohnson Aug 8, 2022
4896963
[rust] Add _RUST_ to rust environment variables
boydjohnson Aug 13, 2022
04857ed
[rust] Make compile the default strategy in build.rs
boydjohnson Aug 13, 2022
e3b9b60
[rust] Remove checked-in code, generate it with build.rs
boydjohnson Aug 13, 2022
5dc5478
[rust] Add BUILD.md
boydjohnson Aug 16, 2022
522c7d8
[rust] Update method names to match *-sys API
boydjohnson Sep 15, 2022
b98fc3d
[rust] Update naming in build script, Gpu -> Cuda
boydjohnson Sep 22, 2022
7bad5a3
[rust] Make Environment name a CString
boydjohnson Sep 24, 2022
57cc343
[rust] Change inputs and outputs to session.run
boydjohnson Sep 21, 2022
836ffc9
[rust] Remove wrapper.h file, use included file
boydjohnson Oct 5, 2022
0027024
[rust] Bump dependencies
boydjohnson Jan 6, 2023
fe4000a
[rust] Use ONNXRuntime instead of ONNX to be clear
boydjohnson Jan 9, 2023
4d6acfc
[rust] Fix links to repo in Cargo.toml
boydjohnson Jan 9, 2023
656b3dc
[rust] Add libloading support
boydjohnson Jan 16, 2023
fc5c080
[rust] Change formatting of imports
boydjohnson Jan 23, 2023
05c9af2
Add libonnxruntime.so in BUILD.md to clarify
boydjohnson Jan 25, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[rust] Fix links to repo in Cargo.toml
  • Loading branch information
boydjohnson committed Feb 7, 2023
commit 4d6acfc52e937af3c40c303a75883434335021e5
4 changes: 2 additions & 2 deletions rust/onnxruntime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -6,10 +6,10 @@ version = "0.0.14"

description = "Wrapper around Microsoft's ONNX Runtime"
documentation = "https://docs.rs/onnxruntime"
homepage = "https://github.com/nbigaouette/onnxruntime-rs"
homepage = "https://onnxruntime.ai/"
license = "MIT OR Apache-2.0"
readme = "../README.md"
repository = "https://github.com/nbigaouette/onnxruntime-rs"
repository = "https://github.com/microsoft/onnxruntime"

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@RyanUnderhill MS mandates that internal build makes use of internal crates repository.

categories = ["science"]
keywords = ["neuralnetworks", "onnx", "bindings"]