[package]
edition = "2021"
rust-version = "1.75"
name = "ud-core"
version = "0.1.0"
authors = ["Mark Karpeles"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core types shared by the univdreams compiler/decompiler suite."
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_core"
path = "src/lib.rs"
[dependencies.thiserror]
version = "2"
[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"