This commit is contained in:
parent
8076af0e4e
commit
671f74cff8
2
.cargo/config.toml
Normal file
2
.cargo/config.toml
Normal file
@ -0,0 +1,2 @@
|
||||
[profile.dev.package."*"]
|
||||
opt-level = 2
|
25
.gitea/workflows/build.yaml
Normal file
25
.gitea/workflows/build.yaml
Normal 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
73
Cargo.lock
generated
@ -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",
|
||||
]
|
||||
|
||||
|
@ -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]
|
||||
|
Loading…
x
Reference in New Issue
Block a user