Release 0.2.0-rc.0

ctranslate2-bindings@0.2.0-rc.0
http-api-bindings@0.2.0-rc.0
llama-cpp-bindings@0.2.0-rc.0
tabby@0.2.0-rc.0
tabby-common@0.2.0-rc.0
tabby-download@0.2.0-rc.0
tabby-inference@0.2.0-rc.0
tabby-scheduler@0.2.0-rc.0

Generated by cargo-workspaces
release-0.2 tabby-inference@0.2.0-rc.0
Meng Zhang 2023-10-02 19:14:12 -07:00
parent 6306bb3f01
commit 692c2fe0fd
10 changed files with 18 additions and 18 deletions

16
Cargo.lock generated
View File

@ -690,7 +690,7 @@ dependencies = [
[[package]] [[package]]
name = "ctranslate2-bindings" name = "ctranslate2-bindings"
version = "0.1.0" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"async-stream", "async-stream",
"async-trait", "async-trait",
@ -1319,7 +1319,7 @@ dependencies = [
[[package]] [[package]]
name = "http-api-bindings" name = "http-api-bindings"
version = "0.1.0" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"futures", "futures",
@ -1651,7 +1651,7 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]] [[package]]
name = "llama-cpp-bindings" name = "llama-cpp-bindings"
version = "0.1.0" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"async-stream", "async-stream",
"async-trait", "async-trait",
@ -3086,7 +3086,7 @@ dependencies = [
[[package]] [[package]]
name = "tabby" name = "tabby"
version = "0.1.1" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-stream", "async-stream",
@ -3131,7 +3131,7 @@ dependencies = [
[[package]] [[package]]
name = "tabby-common" name = "tabby-common"
version = "0.1.0" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"filenamify", "filenamify",
@ -3146,7 +3146,7 @@ dependencies = [
[[package]] [[package]]
name = "tabby-download" name = "tabby-download"
version = "0.1.0" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",
@ -3165,7 +3165,7 @@ dependencies = [
[[package]] [[package]]
name = "tabby-inference" name = "tabby-inference"
version = "0.1.0" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"async-stream", "async-stream",
"async-trait", "async-trait",
@ -3178,7 +3178,7 @@ dependencies = [
[[package]] [[package]]
name = "tabby-scheduler" name = "tabby-scheduler"
version = "0.1.0" version = "0.2.0-rc.0"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"file-rotate", "file-rotate",

View File

@ -13,7 +13,7 @@ members = [
] ]
[workspace.package] [workspace.package]
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
authors = ["Meng Zhang"] authors = ["Meng Zhang"]
homepage = "https://github.com/TabbyML/tabby" homepage = "https://github.com/TabbyML/tabby"

View File

@ -1,6 +1,6 @@
[package] [package]
name = "ctranslate2-bindings" name = "ctranslate2-bindings"
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "http-api-bindings" name = "http-api-bindings"
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
@ -9,7 +9,7 @@ futures.workspace = true
reqwest = { workspace = true, features = ["json"] } reqwest = { workspace = true, features = ["json"] }
serde = { workspace = true, features = ["derive"] } serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true } serde_json = { workspace = true }
tabby-inference = { version = "0.1.0", path = "../tabby-inference" } tabby-inference = { version = "0.2.0-rc.0", path = "../tabby-inference" }
[dev-dependencies] [dev-dependencies]
tokio = { workspace = true, features = ["full"] } tokio = { workspace = true, features = ["full"] }

View File

@ -1,6 +1,6 @@
[package] [package]
name = "llama-cpp-bindings" name = "llama-cpp-bindings"
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
[build-dependencies] [build-dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tabby-common" name = "tabby-common"
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tabby-download" name = "tabby-download"
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tabby-inference" name = "tabby-inference"
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tabby-scheduler" name = "tabby-scheduler"
version = "0.1.0" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -1,6 +1,6 @@
[package] [package]
name = "tabby" name = "tabby"
version = "0.1.1" version = "0.2.0-rc.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]