"docs/guides/vscode:/vscode.git/clone" did not exist on "403344e53492bef1c5ba844912b80533e2fffcd7"
Commit 2e409565 authored by Anant Sharma's avatar Anant Sharma Committed by GitHub
Browse files

chore: update rust versions to v0.2.0 (#155)


Co-authored-by: default avatarRyan McCormick <rmccormick@nvidia.com>
parent 20b36843
...@@ -48,7 +48,7 @@ jobs: ...@@ -48,7 +48,7 @@ jobs:
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
path: ~/.cargo/bin path: ~/.cargo/bin
key: ${{ runner.os }}-cargo-tools-${{ hashFiles('**/Cargo.lock') }} key: ${{ runner.os }}-cargo-tools-${{ github.head_ref || github.ref_name }}-${{ hashFiles('**/Cargo.lock') }}
- name: Set up Rust Toolchain Components - name: Set up Rust Toolchain Components
run: rustup component add rustfmt clippy run: rustup component add rustfmt clippy
- name: Run Cargo Check - name: Run Cargo Check
......
# This file is automatically @generated by Cargo. # This file is automatically @generated by Cargo.
# It is not intended for manual editing. # It is not intended for manual editing.
version = 3 version = 4
[[package]] [[package]]
name = "addr2line" name = "addr2line"
...@@ -2839,7 +2839,7 @@ dependencies = [ ...@@ -2839,7 +2839,7 @@ dependencies = [
[[package]] [[package]]
name = "triton-distributed" name = "triton-distributed"
version = "0.1.3" version = "0.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-nats", "async-nats",
...@@ -2877,7 +2877,7 @@ dependencies = [ ...@@ -2877,7 +2877,7 @@ dependencies = [
[[package]] [[package]]
name = "triton-llm" name = "triton-llm"
version = "0.1.3" version = "0.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-stream", "async-stream",
......
...@@ -20,7 +20,7 @@ members = [ ...@@ -20,7 +20,7 @@ members = [
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.1.3" version = "0.2.0"
edition = "2021" edition = "2021"
authors = ["NVIDIA"] authors = ["NVIDIA"]
license = "Apache-2.0" license = "Apache-2.0"
...@@ -30,7 +30,7 @@ repository = "https://github.com/triton-inference-server/triton_distributed" ...@@ -30,7 +30,7 @@ repository = "https://github.com/triton-inference-server/triton_distributed"
[workspace.dependencies] [workspace.dependencies]
# local or crates.io # local or crates.io
triton-distributed = { version = "0.1.3", path = "../../runtime/rust" } triton-distributed = { version = "0.2.0", path = "../../runtime/rust" }
# crates.io # crates.io
anyhow = { version = "1" } anyhow = { version = "1" }
......
...@@ -2417,7 +2417,7 @@ dependencies = [ ...@@ -2417,7 +2417,7 @@ dependencies = [
[[package]] [[package]]
name = "triton-distributed" name = "triton-distributed"
version = "0.1.3" version = "0.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"assert_matches", "assert_matches",
......
...@@ -17,7 +17,7 @@ ...@@ -17,7 +17,7 @@
name = "triton-distributed" name = "triton-distributed"
description = "Distributed GenAI Inference Framework" description = "Distributed GenAI Inference Framework"
readme = "README.md" readme = "README.md"
version = "0.1.3" # TODO: Centralize Version Automation version = "0.2.0" # TODO: Centralize Version Automation
edition = "2021" edition = "2021"
authors = ["NVIDIA"] authors = ["NVIDIA"]
license = "Apache-2.0" license = "Apache-2.0"
......
...@@ -2614,7 +2614,7 @@ dependencies = [ ...@@ -2614,7 +2614,7 @@ dependencies = [
[[package]] [[package]]
name = "triton-distributed" name = "triton-distributed"
version = "0.1.3" version = "0.2.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-nats", "async-nats",
...@@ -2652,7 +2652,7 @@ dependencies = [ ...@@ -2652,7 +2652,7 @@ dependencies = [
[[package]] [[package]]
name = "triton_distributed_py3" name = "triton_distributed_py3"
version = "0.1.3" version = "0.2.0"
dependencies = [ dependencies = [
"futures", "futures",
"once_cell", "once_cell",
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
[package] [package]
name = "triton_distributed_py3" name = "triton_distributed_py3"
version = "0.1.3" version = "0.2.0"
edition = "2021" edition = "2021"
authors = ["NVIDIA"] authors = ["NVIDIA"]
license = "Apache-2.0" license = "Apache-2.0"
...@@ -30,7 +30,7 @@ crate-type = ["cdylib"] ...@@ -30,7 +30,7 @@ crate-type = ["cdylib"]
[dependencies] [dependencies]
triton-distributed = { version = "0.1.3", path = "../" } triton-distributed = { version = "0.2.0", path = "../" }
futures = "0.3" futures = "0.3"
once_cell = "1.20.3" once_cell = "1.20.3"
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
[project] [project]
name = "triton-distributed-rs" name = "triton-distributed-rs"
version = "0.1.3" version = "0.2.0"
description = "Distributed LLM Framework" description = "Distributed LLM Framework"
# readme = "README.md" # readme = "README.md"
authors = [ authors = [
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment