[package]
edition = "2021"
rust-version = "1.75"
name = "ud-ast"
version = "0.2.0"
authors = ["Mark Karpeles"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Abstract syntax tree for the .ud source language, with canonical pretty-printer."
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_ast"
path = "src/lib.rs"
[dependencies.ud-arch-x86]
version = "0.2.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"