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 <noreply@anthropic.com>
This commit is contained in:
Bryan Helmkamp 2026-03-08 00:25:35 -05:00
parent 23cff7db70
commit 916e95764c
2 changed files with 5 additions and 5 deletions

6
Cargo.lock generated
View file

@ -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",

View file

@ -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]