diff --git a/onnxruntime-sys/Cargo.toml b/onnxruntime-sys/Cargo.toml index 9c9b7920..ada149c7 100644 --- a/onnxruntime-sys/Cargo.toml +++ b/onnxruntime-sys/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Nicolas Bigaouette "] edition = "2018" name = "onnxruntime-sys" -version = "0.0.3" +version = "0.0.4" description = "Unsafe wrapper around Microsoft's ONNX Runtime" documentation = "https://docs.rs/onnxruntime-sys" diff --git a/onnxruntime/Cargo.toml b/onnxruntime/Cargo.toml index c23cc35f..177ac589 100644 --- a/onnxruntime/Cargo.toml +++ b/onnxruntime/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Nicolas Bigaouette "] edition = "2018" name = "onnxruntime" -version = "0.0.3" +version = "0.0.4" description = "Wrapper around Microsoft's ONNX Runtime" documentation = "https://docs.rs/onnxruntime" @@ -17,5 +17,5 @@ keywords = ["neuralnetworks", "onnx", "bindings"] [dependencies] lazy_static = "1.4" ndarray = "0.13" -onnxruntime-sys = {version = "0.0.3", path = "../onnxruntime-sys"} +onnxruntime-sys = {version = "0.0.4", path = "../onnxruntime-sys"} thiserror = "1.0"