Added build action
All checks were successful
Build / Build (push) Successful in 1h14m44s

This commit is contained in:
Silas Bartha 2025-03-19 07:13:24 -04:00
parent 8076af0e4e
commit 671f74cff8
Signed by: soaos
GPG Key ID: 9BD3DCC0D56A09B2
4 changed files with 55 additions and 54 deletions

2
.cargo/config.toml Normal file
View File

@ -0,0 +1,2 @@
[profile.dev.package."*"]
opt-level = 2

View File

@ -0,0 +1,25 @@
name: Build
on: [push]
jobs:
Build:
env:
RUNNER_TOOL_CACHE: /toolcache
container: rust:alpine
steps:
- name: Install node
run: apk add nodejs gcc libc-dev pkgconf libx11-dev alsa-lib-dev eudev-dev tar
- name: Check out repository code
uses: actions/checkout@v4
- name: Restore cache
uses: actions/cache@v4
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --release

73
Cargo.lock generated
View File

@ -44,8 +44,8 @@ dependencies = [
"hashbrown 0.15.2", "hashbrown 0.15.2",
"paste", "paste",
"static_assertions", "static_assertions",
"windows 0.58.0", "windows",
"windows-core 0.58.0", "windows-core",
] ]
[[package]] [[package]]
@ -383,7 +383,7 @@ dependencies = [
"console_error_panic_hook", "console_error_panic_hook",
"ctrlc", "ctrlc",
"derive_more 1.0.0", "derive_more 1.0.0",
"downcast-rs", "downcast-rs 1.2.1",
"wasm-bindgen", "wasm-bindgen",
"web-sys", "web-sys",
] ]
@ -410,7 +410,7 @@ dependencies = [
"crossbeam-channel", "crossbeam-channel",
"derive_more 1.0.0", "derive_more 1.0.0",
"disqualified", "disqualified",
"downcast-rs", "downcast-rs 1.2.1",
"either", "either",
"futures-io", "futures-io",
"futures-lite", "futures-lite",
@ -440,7 +440,6 @@ dependencies = [
[[package]] [[package]]
name = "bevy_basic_interaction" name = "bevy_basic_interaction"
version = "0.2.0" version = "0.2.0"
source = "git+https://git.exvacuum.dev/bevy_basic_interaction?tag=v0.2.0#cc3e723b25bb3f867be889a80ee9a41f45ddb106"
dependencies = [ dependencies = [
"bevy", "bevy",
] ]
@ -531,8 +530,7 @@ dependencies = [
[[package]] [[package]]
name = "bevy_dither_post_process" name = "bevy_dither_post_process"
version = "0.3.0" version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "git+https://git.soaos.dev/bevy_dither_post_process#e9e2e7e7f8a06949bf2e5d8c5b89d70edb0ab4e0"
checksum = "33f3318ee0fd8667a911def5aedec7c7e4a36b0d4d7c78de6a8be357c1658132"
dependencies = [ dependencies = [
"bevy", "bevy",
] ]
@ -878,7 +876,7 @@ dependencies = [
"bevy_utils", "bevy_utils",
"derive_more 1.0.0", "derive_more 1.0.0",
"disqualified", "disqualified",
"downcast-rs", "downcast-rs 1.2.1",
"erased-serde", "erased-serde",
"glam", "glam",
"serde", "serde",
@ -929,7 +927,7 @@ dependencies = [
"bytemuck", "bytemuck",
"codespan-reporting", "codespan-reporting",
"derive_more 1.0.0", "derive_more 1.0.0",
"downcast-rs", "downcast-rs 1.2.1",
"encase", "encase",
"futures-lite", "futures-lite",
"image", "image",
@ -1024,14 +1022,14 @@ dependencies = [
[[package]] [[package]]
name = "bevy_terminal_dialog" name = "bevy_terminal_dialog"
version = "0.2.0" version = "0.2.1"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"arbitrary-chunks", "arbitrary-chunks",
"bevy", "bevy",
"bevy_basic_interaction", "bevy_basic_interaction",
"bevy_terminal_display", "bevy_terminal_display",
"downcast-rs", "downcast-rs 2.0.1",
"lazy_static", "lazy_static",
"textwrap", "textwrap",
"unicode-segmentation", "unicode-segmentation",
@ -1042,8 +1040,6 @@ dependencies = [
[[package]] [[package]]
name = "bevy_terminal_display" name = "bevy_terminal_display"
version = "0.6.0" version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6dfdb22cdf98fd2f2539f0a2b2d570aa6e4a37687079adfaf85c28f69fa84c5c"
dependencies = [ dependencies = [
"bevy", "bevy",
"bevy_dither_post_process", "bevy_dither_post_process",
@ -1051,7 +1047,7 @@ dependencies = [
"color-eyre", "color-eyre",
"crossbeam-channel", "crossbeam-channel",
"crossterm", "crossterm",
"downcast-rs", "downcast-rs 2.0.1",
"leafwing-input-manager", "leafwing-input-manager",
"once_cell", "once_cell",
"ratatui", "ratatui",
@ -1891,6 +1887,12 @@ version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
[[package]]
name = "downcast-rs"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
[[package]] [[package]]
name = "dpi" name = "dpi"
version = "0.1.1" version = "0.1.1"
@ -2229,7 +2231,7 @@ dependencies = [
"vec_map", "vec_map",
"wasm-bindgen", "wasm-bindgen",
"web-sys", "web-sys",
"windows 0.54.0", "windows",
] ]
[[package]] [[package]]
@ -2315,7 +2317,7 @@ dependencies = [
"log", "log",
"presser", "presser",
"thiserror", "thiserror",
"windows 0.54.0", "windows",
] ]
[[package]] [[package]]
@ -4667,8 +4669,8 @@ dependencies = [
"wasm-bindgen", "wasm-bindgen",
"web-sys", "web-sys",
"wgpu-types", "wgpu-types",
"windows 0.58.0", "windows",
"windows-core 0.58.0", "windows-core",
] ]
[[package]] [[package]]
@ -4713,33 +4715,13 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows"
version = "0.54.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9252e5725dbed82865af151df558e754e4a3c2c30818359eb17465f1346a1b49"
dependencies = [
"windows-core 0.54.0",
"windows-targets 0.52.6",
]
[[package]] [[package]]
name = "windows" name = "windows"
version = "0.58.0" version = "0.58.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
dependencies = [ dependencies = [
"windows-core 0.58.0", "windows-core",
"windows-targets 0.52.6",
]
[[package]]
name = "windows-core"
version = "0.54.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12661b9c89351d684a50a8a643ce5f608e20243b9fb84687800163429f161d65"
dependencies = [
"windows-result 0.1.2",
"windows-targets 0.52.6", "windows-targets 0.52.6",
] ]
@ -4751,7 +4733,7 @@ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
dependencies = [ dependencies = [
"windows-implement", "windows-implement",
"windows-interface", "windows-interface",
"windows-result 0.2.0", "windows-result",
"windows-strings", "windows-strings",
"windows-targets 0.52.6", "windows-targets 0.52.6",
] ]
@ -4778,15 +4760,6 @@ dependencies = [
"syn", "syn",
] ]
[[package]]
name = "windows-result"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
dependencies = [
"windows-targets 0.52.6",
]
[[package]] [[package]]
name = "windows-result" name = "windows-result"
version = "0.2.0" version = "0.2.0"
@ -4802,7 +4775,7 @@ version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
dependencies = [ dependencies = [
"windows-result 0.2.0", "windows-result",
"windows-targets 0.52.6", "windows-targets 0.52.6",
] ]

View File

@ -1,21 +1,22 @@
[package] [package]
name = "bevy_terminal_dialog" name = "bevy_terminal_dialog"
version = "0.2.0" version = "0.2.2"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
bevy_terminal_display = "0.6"
textwrap = "0.16" textwrap = "0.16"
zalgo = "0.2" zalgo = "0.2"
arbitrary-chunks = "0.4" arbitrary-chunks = "0.4"
unicode-segmentation = "1.12" unicode-segmentation = "1.12"
anyhow = "1.0" anyhow = "1.0"
downcast-rs = "1.2" downcast-rs = "2.0"
lazy_static = "1.5" lazy_static = "1.5"
[dependencies.bevy_terminal_display]
git = "https://git.soaos.dev/soaos/bevy_terminal_display"
[dependencies.bevy_basic_interaction] [dependencies.bevy_basic_interaction]
git = "https://git.exvacuum.dev/bevy_basic_interaction" git = "https://git.soaos.dev/soaos/bevy_basic_interaction"
tag = "v0.2.0" tag = "v0.2.0"
[dependencies.yarnspinner] [dependencies.yarnspinner]