[package]
edition = "2024"
name = "obj2xml-rs"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance, memory-efficient XML to Dict, Dict to XML for Python, written in Rust."
readme = "README.md"
keywords = [
"xml",
"python",
"serialization",
"dict",
"rust",
]
categories = [
"encoding",
"api-bindings",
]
license = "Apache-2.0"
repository = "https://github.com/m-ali-ubit/obj2xml-rs"
[lib]
name = "_obj2xml_rs"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.pyo3]
version = "0.27.0"
[dependencies.quick-xml]
version = "0.39.0"
[dependencies.rustc-hash]
version = "1.1"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true