From 916e95764ceaf9f7586e23344f392cf650a5a147 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Sun, 8 Mar 2026 00:25:35 -0500 Subject: [PATCH] Bump daytona-sdk-rust to 03b7c06 (revert envs field) The toolbox API does not support envs in /process/execute, so the SDK now matches the Go SDK: accepts env in options but does not send it. Arc uses export prepending as the workaround. Co-Authored-By: Claude Opus 4.6 --- Cargo.lock | 6 +++--- Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3fa80ec78..2135e1075 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1170,7 +1170,7 @@ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea" [[package]] name = "daytona-api-client" version = "0.1.0" -source = "git+https://github.com/brynary/daytona-sdk-rust?rev=be9adf6#be9adf69438c1c704af56c82c54afa6cefa6efae" +source = "git+https://github.com/brynary/daytona-sdk-rust?rev=03b7c06#03b7c0609422a7d3fa20f8e92fbe6b1cc59fa85e" dependencies = [ "reqwest 0.12.28", "reqwest-middleware", @@ -1184,7 +1184,7 @@ dependencies = [ [[package]] name = "daytona-sdk" version = "0.1.0" -source = "git+https://github.com/brynary/daytona-sdk-rust?rev=be9adf6#be9adf69438c1c704af56c82c54afa6cefa6efae" +source = "git+https://github.com/brynary/daytona-sdk-rust?rev=03b7c06#03b7c0609422a7d3fa20f8e92fbe6b1cc59fa85e" dependencies = [ "daytona-api-client", "daytona-toolbox-client", @@ -1203,7 +1203,7 @@ dependencies = [ [[package]] name = "daytona-toolbox-client" version = "0.1.0" -source = "git+https://github.com/brynary/daytona-sdk-rust?rev=be9adf6#be9adf69438c1c704af56c82c54afa6cefa6efae" +source = "git+https://github.com/brynary/daytona-sdk-rust?rev=03b7c06#03b7c0609422a7d3fa20f8e92fbe6b1cc59fa85e" dependencies = [ "reqwest 0.12.28", "reqwest-middleware", diff --git a/Cargo.toml b/Cargo.toml index 0b26b45e5..d2a0496ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -51,8 +51,8 @@ jsonwebtoken = { version = "10", features = ["aws_lc_rs"] } tokio-tungstenite = { version = "0.26", features = ["rustls-tls-webpki-roots"] } futures-util = "0.3" openssh = "0.11" -daytona-sdk = { git = "https://github.com/brynary/daytona-sdk-rust", rev = "be9adf6", package = "daytona-sdk" } -daytona-api-client = { git = "https://github.com/brynary/daytona-sdk-rust", rev = "be9adf6", package = "daytona-api-client" } +daytona-sdk = { git = "https://github.com/brynary/daytona-sdk-rust", rev = "03b7c06", package = "daytona-sdk" } +daytona-api-client = { git = "https://github.com/brynary/daytona-sdk-rust", rev = "03b7c06", package = "daytona-api-client" } # regex is extremely slow in debug builds (~10s to compile gitleaks patterns) [profile.dev.package.regex]