Skip to content

Commit bdcd1aa

Browse files
authored
chore: update dependencies and improve build script (#78)
1 parent d752810 commit bdcd1aa

File tree

6 files changed

+5
-12
lines changed

6 files changed

+5
-12
lines changed

.yarn/install-state.gz

2 Bytes
Binary file not shown.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
[workspace]
22
members = ["apps/counter"]
3-
resolver = "2"
43
[workspace.package]
5-
edition = "2021"
4+
edition = "2024"

apps/counter/Cargo.toml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,4 @@ iced = { version = "0.13.1", features = ["debug"] }
1212
tracing-subscriber = "0.3"
1313

1414
[target.'cfg(target_arch = "wasm32")'.dependencies]
15-
iced = { version = "0.13.1", features = [
16-
"debug",
17-
"wgpu",
18-
"tiny-skia",
19-
"webgl",
20-
"fira-sans",
21-
] }
15+
iced = { version = "0.13.1", features = ["debug", "webgl"] }

apps/counter/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use iced::widget::{button, column, row, text, Column, Row};
1+
use iced::widget::{button, column, row, text, Column};
22
use iced::Center;
33

44
pub fn main() -> iced::Result {

etc/templates/skeleton/etc/workflow-runtime/src/workflow_runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime {
2020
WithExec([]string{"apt-get", "update"}).
2121
WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils", "pkg-config", "libssl-dev"}).
2222
// curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.35.3 --yes
23-
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.44.1 --yes"}).
23+
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.51.4 --yes"}).
2424
WithEnvVariable("PROTO_HOME", "/root/.proto", dagger.ContainerWithEnvVariableOpts{Expand: true}).
2525
WithEnvVariable("PATH", "$PATH:$PROTO_HOME/shims:$PROTO_HOME/bin", dagger.ContainerWithEnvVariableOpts{Expand: true})
2626

etc/workflow-runtime/src/workflow_runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime {
2020
WithExec([]string{"apt-get", "update"}).
2121
WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils", "pkg-config", "libssl-dev"}).
2222
// curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.35.3 --yes
23-
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.44.1 --yes"}).
23+
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.51.4 --yes"}).
2424
WithEnvVariable("PROTO_HOME", "/root/.proto", dagger.ContainerWithEnvVariableOpts{Expand: true}).
2525
WithEnvVariable("PATH", "$PATH:$PROTO_HOME/shims:$PROTO_HOME/bin", dagger.ContainerWithEnvVariableOpts{Expand: true})
2626

0 commit comments

Comments
 (0)