Skip to content

Commit ac5839c

Browse files
committed
chore: bump deps, bun
1 parent 242b146 commit ac5839c

9 files changed

Lines changed: 34 additions & 34 deletions

File tree

bun.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"dependencies": {
3-
"@types/bun": "^1.3.12",
3+
"@types/bun": "^1.3.13",
44
"oxfmt": "^0.46.0",
55
"oxlint": "^1.61.0"
66
},

packages/bun.tg.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export const metadata = {
55
license: "MIT",
66
name: "bun",
77
repository: "https://github.com/oven-sh/bun",
8-
version: "1.3.11",
9-
tag: "bun/1.3.11",
8+
version: "1.3.13",
9+
tag: "bun/1.3.13",
1010
provides: {
1111
binaries: ["bun"],
1212
},
@@ -52,13 +52,13 @@ export default self;
5252
// Taken from https://github.com/oven-sh/bun/releases/download/bun-v${version}/SHASUMS256.txt.asc
5353
const binaryChecksums: { [key: string]: tg.Checksum } = {
5454
["aarch64-linux"]:
55-
"sha256:d13944da12a53ecc74bf6a720bd1d04c4555c038dfe422365356a7be47691fdf",
55+
"sha256:70bae41b3908b0a120e1e58c5c8af30e74afae3b8d11b0d3fdd8e787ddfb4b22",
5656
["x86_64-linux"]:
57-
"sha256:8611ba935af886f05a6f38740a15160326c15e5d5d07adef966130b4493607ed",
57+
"sha256:79c0771fa8b92c33aae41e15a0e0d307ea99d0e2f00317c71c6c53237a78e25a",
5858
["aarch64-darwin"]:
59-
"sha256:6f5a3467ed9caec4795bf78cd476507d9f870c7d57b86c945fcb338126772ffc",
59+
"sha256:5467e3f65dba526b9fea98f0cce04efafc0c63e169733ec27b876a3ad32da190",
6060
["x86_64-darwin"]:
61-
"sha256:c4fe2b9247218b0295f24e895aaec8fee62e74452679a9026b67eacbd611a286",
61+
"sha256:e5a6c8b64f419925232d111ecb13e25f0abf55e54f792341f987623fd0778009",
6262
};
6363

6464
export const test = async () => {

packages/rust/tgrustc/Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/rust/tgrustc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ result_large_err = "allow"
2323
[dependencies]
2424
futures = "0.3"
2525
rustix = { version = "1", features = ["stdio"] }
26-
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "b121fb108f4dd437e9a5c7e747a8c27145689b00" }
27-
tangram_futures = { git = "https://github.com/tangramdotdev/tangram", rev = "b121fb108f4dd437e9a5c7e747a8c27145689b00" }
26+
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "3b762b53e4f1d0dc585243cdc09269603b9b9ae4" }
27+
tangram_futures = { git = "https://github.com/tangramdotdev/tangram", rev = "3b762b53e4f1d0dc585243cdc09269603b9b9ae4" }
2828
glob = "0.3"
2929
tangram_std = { path = "../../std" }
3030
toml_edit = "0.23"

packages/rust/tgrustc/src/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ pub(crate) async fn spawn_and_wait(
6666
tracing::info!(%description, "spawning process");
6767

6868
let process: tg::Process = tg::Process::spawn(spawn_arg).await?;
69-
let process_id = process.id().clone();
69+
let process_id = process.id().unwrap_right().clone();
7070

7171
#[cfg(feature = "tracing")]
7272
tracing::info!(?process_id, %description, "spawned process");

packages/std/Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/std/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ paste = "1"
4141
rustix = { version = "1", features = ["all-apis"] }
4242
serde = { version = "1", features = ["derive"] }
4343
serde_json = "1"
44-
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "b121fb108f4dd437e9a5c7e747a8c27145689b00" }
45-
tangram_either = { git = "https://github.com/tangramdotdev/tangram", rev = "b121fb108f4dd437e9a5c7e747a8c27145689b00" }
46-
tangram_serialize = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "b121fb108f4dd437e9a5c7e747a8c27145689b00" }
44+
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "3b762b53e4f1d0dc585243cdc09269603b9b9ae4" }
45+
tangram_either = { git = "https://github.com/tangramdotdev/tangram", rev = "3b762b53e4f1d0dc585243cdc09269603b9b9ae4" }
46+
tangram_serialize = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "3b762b53e4f1d0dc585243cdc09269603b9b9ae4" }
4747
tempfile = "3"
4848
tokio = { version = "1", default-features = false, features = [
4949
"rt",

packages/std/packages/tgcc/src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,11 +368,11 @@ async fn run_proxy(environment: Environment, args: Args) -> tg::Result<()> {
368368
// Spawn and wait for the process.
369369
let spawn_arg = tg::process::spawn::Arg {
370370
cached: None,
371+
cache_location: None,
371372
checksum: None,
372373
command: command_ref,
373-
local: None,
374+
location: None,
374375
parent: None,
375-
remotes: None,
376376
retry: false,
377377
sandbox: Some(tg::Either::Left(tg::sandbox::create::Arg {
378378
network: false,

0 commit comments

Comments
 (0)