15 lines
414 B
TOML
15 lines
414 B
TOML
[package]
|
|
name = "androscalpel_serializer"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[dependencies]
|
|
androscalpel_serializer_derive = { path = "../androscalpel_serializer_derive" }
|
|
log = "0.4.20"
|
|
|
|
[features]
|
|
# Map sections of the binary dex file to the parsed value.
|
|
# Aims to explore malformated / strange dex files, but slows
|
|
# the parsing and consumes a lot of memory.
|
|
map_dex_file = []
|