[package]
edition = "2021"
rust-version = "1.75"
name = "ud-format"
version = "0.1.0"
authors = ["Mark Karpeles"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Binary container formats for univdreams — ELF, PE/COFF, Mach-O, and raw flat images. Parse + byte-identical write, one module per format."
homepage = "https://github.com/KarpelesLab/univdreams"
readme = false
keywords = [
"decompiler",
"compiler",
"binary-analysis",
"reverse-engineering",
"emulator",
]
categories = [
"development-tools",
"command-line-utilities",
"emulators",
]
license = "MIT"
repository = "https://github.com/KarpelesLab/univdreams"
[lib]
name = "ud_format"
path = "src/lib.rs"
[[test]]
name = "elf_fixtures"
path = "tests/elf_fixtures.rs"
[[test]]
name = "macho_round_trip"
path = "tests/macho_round_trip.rs"
[[test]]
name = "pe_fixtures"
path = "tests/pe_fixtures.rs"
[dependencies.thiserror]
version = "2"
[dependencies.ud-core]
version = "0.1.0"
[lints.clippy]
doc_markdown = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
similar_names = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_op_in_unsafe_fn = "deny"