From 671f74cff88f066df4fab07263af77d7c021932a Mon Sep 17 00:00:00 2001 From: Silas Bartha Date: Wed, 19 Mar 2025 07:13:24 -0400 Subject: [PATCH] Added build action --- .cargo/config.toml | 2 + .gitea/workflows/build.yaml | 25 +++++++++++++ Cargo.lock | 73 ++++++++++++------------------------- Cargo.toml | 9 +++-- 4 files changed, 55 insertions(+), 54 deletions(-) create mode 100644 .cargo/config.toml create mode 100644 .gitea/workflows/build.yaml diff --git a/.cargo/config.toml b/.cargo/config.toml new file mode 100644 index 0000000..62d8a86 --- /dev/null +++ b/.cargo/config.toml @@ -0,0 +1,2 @@ +[profile.dev.package."*"] +opt-level = 2 diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..06dad8b --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 442de86..8db6dad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -44,8 +44,8 @@ dependencies = [ "hashbrown 0.15.2", "paste", "static_assertions", - "windows 0.58.0", - "windows-core 0.58.0", + "windows", + "windows-core", ] [[package]] @@ -383,7 +383,7 @@ dependencies = [ "console_error_panic_hook", "ctrlc", "derive_more 1.0.0", - "downcast-rs", + "downcast-rs 1.2.1", "wasm-bindgen", "web-sys", ] @@ -410,7 +410,7 @@ dependencies = [ "crossbeam-channel", "derive_more 1.0.0", "disqualified", - "downcast-rs", + "downcast-rs 1.2.1", "either", "futures-io", "futures-lite", @@ -440,7 +440,6 @@ dependencies = [ [[package]] name = "bevy_basic_interaction" version = "0.2.0" -source = "git+https://git.exvacuum.dev/bevy_basic_interaction?tag=v0.2.0#cc3e723b25bb3f867be889a80ee9a41f45ddb106" dependencies = [ "bevy", ] @@ -531,8 +530,7 @@ dependencies = [ [[package]] name = "bevy_dither_post_process" version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33f3318ee0fd8667a911def5aedec7c7e4a36b0d4d7c78de6a8be357c1658132" +source = "git+https://git.soaos.dev/bevy_dither_post_process#e9e2e7e7f8a06949bf2e5d8c5b89d70edb0ab4e0" dependencies = [ "bevy", ] @@ -878,7 +876,7 @@ dependencies = [ "bevy_utils", "derive_more 1.0.0", "disqualified", - "downcast-rs", + "downcast-rs 1.2.1", "erased-serde", "glam", "serde", @@ -929,7 +927,7 @@ dependencies = [ "bytemuck", "codespan-reporting", "derive_more 1.0.0", - "downcast-rs", + "downcast-rs 1.2.1", "encase", "futures-lite", "image", @@ -1024,14 +1022,14 @@ dependencies = [ [[package]] name = "bevy_terminal_dialog" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "arbitrary-chunks", "bevy", "bevy_basic_interaction", "bevy_terminal_display", - "downcast-rs", + "downcast-rs 2.0.1", "lazy_static", "textwrap", "unicode-segmentation", @@ -1042,8 +1040,6 @@ dependencies = [ [[package]] name = "bevy_terminal_display" version = "0.6.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6dfdb22cdf98fd2f2539f0a2b2d570aa6e4a37687079adfaf85c28f69fa84c5c" dependencies = [ "bevy", "bevy_dither_post_process", @@ -1051,7 +1047,7 @@ dependencies = [ "color-eyre", "crossbeam-channel", "crossterm", - "downcast-rs", + "downcast-rs 2.0.1", "leafwing-input-manager", "once_cell", "ratatui", @@ -1891,6 +1887,12 @@ version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" +[[package]] +name = "downcast-rs" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf" + [[package]] name = "dpi" version = "0.1.1" @@ -2229,7 +2231,7 @@ dependencies = [ "vec_map", "wasm-bindgen", "web-sys", - "windows 0.54.0", + "windows", ] [[package]] @@ -2315,7 +2317,7 @@ dependencies = [ "log", "presser", "thiserror", - "windows 0.54.0", + "windows", ] [[package]] @@ -4667,8 +4669,8 @@ dependencies = [ "wasm-bindgen", "web-sys", "wgpu-types", - "windows 0.58.0", - "windows-core 0.58.0", + "windows", + "windows-core", ] [[package]] @@ -4713,33 +4715,13 @@ version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" 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]] name = "windows" version = "0.58.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6" dependencies = [ - "windows-core 0.58.0", - "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-core", "windows-targets 0.52.6", ] @@ -4751,7 +4733,7 @@ checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99" dependencies = [ "windows-implement", "windows-interface", - "windows-result 0.2.0", + "windows-result", "windows-strings", "windows-targets 0.52.6", ] @@ -4778,15 +4760,6 @@ dependencies = [ "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]] name = "windows-result" version = "0.2.0" @@ -4802,7 +4775,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10" dependencies = [ - "windows-result 0.2.0", + "windows-result", "windows-targets 0.52.6", ] diff --git a/Cargo.toml b/Cargo.toml index 0bbc7c8..189b3fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,21 +1,22 @@ [package] name = "bevy_terminal_dialog" -version = "0.2.0" +version = "0.2.2" edition = "2021" [dependencies] -bevy_terminal_display = "0.6" textwrap = "0.16" zalgo = "0.2" arbitrary-chunks = "0.4" unicode-segmentation = "1.12" anyhow = "1.0" -downcast-rs = "1.2" +downcast-rs = "2.0" lazy_static = "1.5" +[dependencies.bevy_terminal_display] +git = "https://git.soaos.dev/soaos/bevy_terminal_display" [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" [dependencies.yarnspinner]