release 0.4.0-alpha.1

This commit is contained in:
2026-05-01 17:01:07 +08:00
parent 166e80a6dc
commit 4bc77ed0c8
5 changed files with 17 additions and 11 deletions

14
Cargo.lock generated
View File

@@ -1474,7 +1474,7 @@ dependencies = [
[[package]] [[package]]
name = "msg_tool" name = "msg_tool"
version = "0.3.1" version = "0.4.0-alpha.1"
dependencies = [ dependencies = [
"adler", "adler",
"aes", "aes",
@@ -1536,7 +1536,9 @@ dependencies = [
[[package]] [[package]]
name = "msg_tool_build" name = "msg_tool_build"
version = "0.3.1" version = "0.4.0-alpha.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03574cc2818bf434ec34795cf6f3d0749a1e6b8ac156b273cb273d75d9391cf2"
dependencies = [ dependencies = [
"json", "json",
"zstd", "zstd",
@@ -1544,7 +1546,9 @@ dependencies = [
[[package]] [[package]]
name = "msg_tool_macro" name = "msg_tool_macro"
version = "0.3.0" version = "0.4.0-alpha.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "177ed201ff17ef103ad65d1f5a679d105e463a4e36e61a977978bdb97b5d04bc"
dependencies = [ dependencies = [
"quote", "quote",
"syn 2.0.117", "syn 2.0.117",
@@ -1552,7 +1556,9 @@ dependencies = [
[[package]] [[package]]
name = "msg_tool_xp3data" name = "msg_tool_xp3data"
version = "0.3.1" version = "0.4.0-alpha.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e255b7528b819118113a7e68e23098b5620d134feed4ee9a18c8585d0cc30a2"
dependencies = [ dependencies = [
"msg_tool_build", "msg_tool_build",
"zstd", "zstd",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "msg_tool" name = "msg_tool"
version = "0.3.1" version = "0.4.0-alpha.1"
edition = "2024" edition = "2024"
repository = "https://github.com/lifegpc/msg-tool" repository = "https://github.com/lifegpc/msg-tool"
description = "A command-line tool for exporting, importing, packing, and unpacking script files." description = "A command-line tool for exporting, importing, packing, and unpacking script files."
@@ -40,8 +40,8 @@ markup5ever = { version = "0.38", optional = true }
md5 = { version = "0.8", optional = true } md5 = { version = "0.8", optional = true }
memchr = { version = "2.7", optional = true } memchr = { version = "2.7", optional = true }
mozjpeg = { version = "0.10", optional = true } mozjpeg = { version = "0.10", optional = true }
msg_tool_macro = { path = "./msg_tool_macro" } msg_tool_macro = { version = "0.4.0-alpha.1" }
msg_tool_xp3data = { path = "./msg_tool_xp3data", optional = true } msg_tool_xp3data = { version = "0.4.0-alpha.1", optional = true }
num_cpus = "1.17" num_cpus = "1.17"
overf = "0.1" overf = "0.1"
parse-size = { version = "1.1", optional = true } parse-size = { version = "1.1", optional = true }

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "msg_tool_build" name = "msg_tool_build"
version = "0.3.1" version = "0.4.0-alpha.1"
edition = "2024" edition = "2024"
repository = "https://github.com/lifegpc/msg-tool" repository = "https://github.com/lifegpc/msg-tool"
description = "Build time library for the msg-tool project." description = "Build time library for the msg-tool project."

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "msg_tool_macro" name = "msg_tool_macro"
version = "0.3.0" version = "0.4.0-alpha.1"
edition = "2024" edition = "2024"
repository = "https://github.com/lifegpc/msg-tool" repository = "https://github.com/lifegpc/msg-tool"
description = "A procedural macro for the msg-tool project." description = "A procedural macro for the msg-tool project."

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "msg_tool_xp3data" name = "msg_tool_xp3data"
version = "0.3.1" version = "0.4.0-alpha.1"
edition = "2024" edition = "2024"
repository = "https://github.com/lifegpc/msg-tool" repository = "https://github.com/lifegpc/msg-tool"
description = "XP3 data for the msg-tool project." description = "XP3 data for the msg-tool project."
@@ -19,4 +19,4 @@ unstable = ["msg_tool_build/unstable"]
all-features = true all-features = true
[build-dependencies] [build-dependencies]
msg_tool_build = { path = "../msg_tool_build", features = ["kirikiri-arc"] } msg_tool_build = { version = "0.4.0-alpha.1", features = ["kirikiri-arc"] }