Feature action (#144)

* ci: 👷 整合github action配置文件

* docs: 📝 贡献文档修改

* style: 💄 更新版本

* style: 💄 cargo.lock版本更新
This commit is contained in:
LOG1997
2025-12-29 16:50:53 +08:00
committed by GitHub
parent 746747db77
commit 8f0c3848d0
4 changed files with 8 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
{ {
"name": "log-lottery", "name": "log-lottery",
"private": true, "private": true,
"version": "0.0.4", "version": "0.5.0",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
"scripts": { "scripts": {

2
src-tauri/Cargo.lock generated
View File

@@ -77,7 +77,7 @@ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
[[package]] [[package]]
name = "app" name = "app"
version = "0.1.0" version = "0.5.0"
dependencies = [ dependencies = [
"log", "log",
"serde", "serde",

View File

@@ -1,8 +1,8 @@
[package] [package]
name = "app" name = "app"
version = "0.1.0" version = "0.5.0"
description = "A Tauri App" description = "A Tauri App"
authors = [ "you" ] authors = ["you"]
license = "" license = ""
repository = "" repository = ""
edition = "2021" edition = "2021"
@@ -12,18 +12,14 @@ rust-version = "1.77.2"
[lib] [lib]
name = "app_lib" name = "app_lib"
crate-type = [ crate-type = ["staticlib", "cdylib", "rlib"]
"staticlib",
"cdylib",
"rlib"
]
[build-dependencies] [build-dependencies]
tauri-build = { version = "2.5.3", features = [] } tauri-build = { version = "2.5.3", features = [] }
[dependencies] [dependencies]
serde_json = "1.0" serde_json = "1.0"
serde = { version = "1.0", features = [ "derive" ] } serde = { version = "1.0", features = ["derive"] }
log = "0.4" log = "0.4"
tauri = { version = "2.9.4", features = [] } tauri = { version = "2.9.4", features = [] }
tauri-plugin-log = "2" tauri-plugin-log = "2"

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "log-lottery", "productName": "log-lottery",
"version": "0.0.4", "version": "0.5.0",
"identifier": "to2026.xyz", "identifier": "to2026.xyz",
"build": { "build": {
"frontendDist": "../dist", "frontendDist": "../dist",