Skip to content

Commit cf288d7

Browse files
committed
chore: synchronize versions
1 parent 7d729f0 commit cf288d7

File tree

5 files changed

+26
-25
lines changed

5 files changed

+26
-25
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
[workspace.package]
2+
version = "1.0.6"
3+
authors = ["Alexey <delvinru@gmail.com>"]
4+
categories = ["Parsing tools"]
5+
description = "APK full-featured parser"
6+
edition = "2024"
7+
homepage = "https://github.com/delvinru/apk-info"
8+
keywords = ["android", "apk", "arsc", "axml", "malware"]
9+
license = "Apache-2.0"
10+
readme = "README.md"
11+
repository = "https://github.com/delvinru/apk-info"
12+
113
[workspace]
214
resolver = "2"
315
members = [
@@ -10,24 +22,12 @@ members = [
1022
"python",
1123
]
1224

13-
[workspace.package]
14-
authors = ["Alexey <delvinru@gmail.com>"]
15-
categories = ["Parsing tools"]
16-
description = "APK full-featured parser"
17-
edition = "2024"
18-
homepage = "https://github.com/delvinru/apk-info"
19-
keywords = ["android", "apk", "arsc", "axml", "malware"]
20-
license = "Apache-2.0"
21-
readme = "README.md"
22-
repository = "https://github.com/delvinru/apk-info"
23-
version = "1.0.5"
24-
2525
[workspace.dependencies]
2626
# internal
27-
apk-info = { path = "core", version = "1.0.5" }
28-
apk-info-axml = { path = "crates/axml", version = "1.0.5" }
29-
apk-info-xml = { path = "crates/xml", version = "1.0.5" }
30-
apk-info-zip = { path = "crates/zip", version = "1.0.5" }
27+
apk-info = { path = "core", version = "1.0.6" }
28+
apk-info-axml = { path = "crates/axml", version = "1.0.6" }
29+
apk-info-xml = { path = "crates/xml", version = "1.0.6" }
30+
apk-info-zip = { path = "crates/zip", version = "1.0.6" }
3131

3232
# external
3333
anyhow = "1.0.100"

core/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition.workspace = true
66
homepage.workspace = true
77
keywords.workspace = true
88
license.workspace = true
9+
readme.workspace = true
910
repository.workspace = true
1011
version.workspace = true
1112

crates/axml/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# apk-info-axml
22

3-
A full-featured `Android Binary XML` (AXML) and `Android Resourcer` (ARSC) parser.
3+
A full-featured `Android Binary XML` (AXML) and `Android Resource` (ARSC) parser.
44

55
Handles all kinds of techniques that are aimed at breaking "standard" parsers,
66
so it allows you to extract information from more files.

crates/axml/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! A full-featured `Android Binary XML` (AXML) and `Android Resourcer` (ARSC) parser.
1+
//! A full-featured `Android Binary XML` (AXML) and `Android Resource` (ARSC) parser.
22
//!
33
//! Handles all kinds of techniques that are aimed at breaking "standard" parsers,
44
//! so it allows you to extract information from more files.

0 commit comments

Comments
 (0)