-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "android-xml-converter"
version = "0.2.2"
edition = "2024"
authors = ["rhythmcache"]
description = "This is just an experimental code to convert between android xml formats (abx and xml). Functionality is not guaranteed."
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/rhythmcache/android-xml-converter.git"
keywords = ["xml", "android", "abx2xml", "converter", "xml2abx"]
categories = ["parsing", "command-line-utilities"]
include = [
"src/lib.rs",
"src/abx2xml.rs",
"src/xml2abx.rs",
"LICENSE",
"README.md",
"Cargo.toml"
]
[[bin]]
name = "abx2xml"
path = "src/abx2xml.rs"
[[bin]]
name = "xml2abx"
path = "src/xml2abx.rs"
[lib]
name = "android_xml_converter"
path = "src/lib.rs"
[dependencies]
ahash = "0.8.12"
base64 = "0.22.1"
byteorder = "1.5.0"
faster-hex = { version = "0.10.0", default-features = false, features = ["alloc"] }
quick-xml = "0.38.4"
smol_str = "0.3.4"
thiserror = "2.0.17"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
incremental = false