Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "truss"
version = "0.13.2"
version = "0.13.3"
description = "A seamless bridge from model development to model delivery"
authors = [
{ name = "Pankaj Gupta", email = "no-reply@baseten.co" },
Expand Down Expand Up @@ -43,7 +43,7 @@ dependencies = [
"ruff>=0.4.8",
"tenacity>=8.0.1",
"watchfiles>=0.19.0,<0.20",
"truss-transfer>=0.0.37,<0.0.40",
"truss-transfer>=0.0.40,<0.0.44",
]

[project.urls]
Expand Down
180 changes: 165 additions & 15 deletions truss-transfer/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions truss-transfer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "truss_transfer"
version = "0.0.39"
version = "0.0.41"
edition = "2021"

[lib]
Expand All @@ -14,10 +14,14 @@ chrono = { version = "0.4", features = ["serde"] }
futures-util = "0.3"
bytes = "1.5"
pyo3 = { version = "0.24.1", features = ["extension-module", "abi3-py38"] }
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
numpy = "0.24"
base64 = "0.22"
tempfile = "3.19"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
tokio = { version = "1.47", features = ["rt-multi-thread", "macros", "fs"] }
tokio = { version = "1.47", features = ["rt-multi-thread", "macros", "fs", "process"] }
rand = "0.9"
fs2 = "0.4"
reqwest = { version = "0.12.23", default-features = false, features = ["blocking", "stream", "http2", "rustls-tls", "json"] }
Expand Down
Loading
Loading