This commit is contained in:
Valeria Fadeeva 2025-01-24 11:35:08 +05:00
parent c17751a78d
commit 6081d14a06
3 changed files with 11 additions and 3 deletions

4
Cargo.lock generated
View File

@ -374,9 +374,9 @@ checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
[[package]]
name = "unicode-ident"
version = "1.0.14"
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
[[package]]
name = "wasm-bindgen"

View File

@ -8,6 +8,7 @@ edition = "2021"
[dependencies]
futures = "^0.3"
fltk = { version = "^1.5", features = ["fltk-bundled"] }
# fltk = { version = "^1.5", features = ["fltk-bundled"] }
fltk = "^1.5"
fltk-theme = "^0.7"
chrono = "^0.4"

View File

@ -1,3 +1,10 @@
#!/bin/bash
if [ -f "Cargo.lock" ]; then
rm Cargo.lock
fi
cargo clean
cargo build --release
echo "Finish!"