You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by jr...@apache.org on 2021/03/31 04:52:22 UTC

[tvm] 07/23: Fix Cargo verisions for pre-release

This is an automated email from the ASF dual-hosted git repository.

jroesch pushed a commit to branch ci-docker-staging
in repository https://gitbox.apache.org/repos/asf/tvm.git

commit cabc9a7726f1321747353e73020792fde63df535
Author: Jared Roesch <jr...@octoml.ai>
AuthorDate: Mon Feb 22 22:56:56 2021 -0800

    Fix Cargo verisions for pre-release
---
 rust/tvm-graph-rt/Cargo.toml | 4 ++--
 rust/tvm-rt/Cargo.toml       | 4 ++--
 rust/tvm/Cargo.toml          | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/rust/tvm-graph-rt/Cargo.toml b/rust/tvm-graph-rt/Cargo.toml
index f81853f..922f3e4 100644
--- a/rust/tvm-graph-rt/Cargo.toml
+++ b/rust/tvm-graph-rt/Cargo.toml
@@ -38,8 +38,8 @@ nom = "5.0"
 num_cpus = "1.10"
 serde = { version = "^1.0", features = ["derive"] }
 serde_json = "^1.0"
-tvm-sys = { version = "0.1", path = "../tvm-sys" }
-tvm-macros = { version = "0.1", path = "../tvm-macros" }
+tvm-sys = { version = "0.1.0-alpha", path = "../tvm-sys" }
+tvm-macros = { version = "0.1.1-alpha", path = "../tvm-macros" }
 
 [target.'cfg(not(any(target_arch = "wasm32", target_env = "sgx")))'.dependencies]
 libloading = "0.5"
diff --git a/rust/tvm-rt/Cargo.toml b/rust/tvm-rt/Cargo.toml
index 3ca2a90..831a16b 100644
--- a/rust/tvm-rt/Cargo.toml
+++ b/rust/tvm-rt/Cargo.toml
@@ -38,14 +38,14 @@ blas = ["ndarray/blas"]
 thiserror = "^1.0"
 ndarray = "0.12"
 num-traits = "0.2"
-tvm-macros = { version = "0.1", path = "../tvm-macros" }
+tvm-macros = { version = "0.1.1-alpha", path = "../tvm-macros" }
 paste = "0.1"
 mashup = "0.1"
 once_cell = "^1.3.1"
 memoffset = "0.5.6"
 
 [dependencies.tvm-sys]
-version = "0.1"
+version = "0.1.0-alpha"
 default-features = false
 path = "../tvm-sys/"
 
diff --git a/rust/tvm/Cargo.toml b/rust/tvm/Cargo.toml
index 5a02925..ca32226 100644
--- a/rust/tvm/Cargo.toml
+++ b/rust/tvm/Cargo.toml
@@ -36,7 +36,7 @@ blas = ["ndarray/blas"]
 python = ["pyo3"]
 
 [dependencies.tvm-rt]
-version = "0.1"
+version = "0.1.0-alpha"
 default-features = false
 path = "../tvm-rt/"
 
@@ -46,7 +46,7 @@ anyhow = "^1.0"
 lazy_static = "1.1"
 ndarray = "0.12"
 num-traits = "0.2"
-tvm-macros = { version = "*", path = "../tvm-macros/" }
+tvm-macros = { version = "0.1.1-alpha", path = "../tvm-macros/" }
 paste = "0.1"
 mashup = "0.1"
 once_cell = "^1.3.1"