Skip to content

Commit 3c44e31

Browse files
committed
chore: update tangram deps to f4c764f9
1 parent 3c1885b commit 3c44e31

8 files changed

Lines changed: 91 additions & 91 deletions

File tree

bun.lock

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"dependencies": {
33
"@types/bun": "^1.3.11",
4-
"oxfmt": "^0.44.0",
5-
"oxlint": "^1.59.0"
4+
"oxfmt": "^0.45.0",
5+
"oxlint": "^1.60.0"
66
},
77
"scripts": {
88
"auto": "bun scripts/package_automation.ts $@",

packages/rust/tgrustc/Cargo.lock

Lines changed: 20 additions & 20 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 = "4498a3caeae356d1a1bbb4569253391a3471dd90" }
27-
tangram_futures = { git = "https://github.com/tangramdotdev/tangram", rev = "4498a3caeae356d1a1bbb4569253391a3471dd90" }
26+
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "f4c764f9f97ce0f55c5d57add4c31a6d4001eac1" }
27+
tangram_futures = { git = "https://github.com/tangramdotdev/tangram", rev = "f4c764f9f97ce0f55c5d57add4c31a6d4001eac1" }
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
@@ -72,7 +72,7 @@ pub(crate) async fn spawn_and_wait(
7272
#[cfg(feature = "tracing")]
7373
tracing::info!(%description, "spawning process");
7474

75-
let process = tg::Process::spawn(tg, spawn_arg).await?;
75+
let process: tg::Process = tg::Process::spawn(tg, spawn_arg).await?;
7676
let process_id = process.id().clone();
7777

7878
#[cfg(feature = "tracing")]

packages/std/Cargo.lock

Lines changed: 20 additions & 20 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 = "4498a3caeae356d1a1bbb4569253391a3471dd90" }
45-
tangram_either = { git = "https://github.com/tangramdotdev/tangram", rev = "4498a3caeae356d1a1bbb4569253391a3471dd90" }
46-
tangram_serialize = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "4498a3caeae356d1a1bbb4569253391a3471dd90" }
44+
tangram_client = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "f4c764f9f97ce0f55c5d57add4c31a6d4001eac1" }
45+
tangram_either = { git = "https://github.com/tangramdotdev/tangram", rev = "f4c764f9f97ce0f55c5d57add4c31a6d4001eac1" }
46+
tangram_serialize = { default-features = false, git = "https://github.com/tangramdotdev/tangram", rev = "f4c764f9f97ce0f55c5d57add4c31a6d4001eac1" }
4747
tempfile = "3"
4848
tokio = { version = "1", default-features = false, features = [
4949
"rt",

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ async fn run_proxy(environment: Environment, args: Args) -> tg::Result<()> {
385385
tty: None,
386386
};
387387

388-
let process = tg::Process::spawn(tg, spawn_arg).await?;
388+
let process: tg::Process = tg::Process::spawn(tg, spawn_arg).await?;
389389
let wait = process.wait(tg, tg::process::wait::Arg::default()).await?;
390390

391391
let build_directory = wait

0 commit comments

Comments
 (0)