[package]
edition = "2024"
name = "xidl-parser"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A IDL codegen."
readme = "README.md"
keywords = [
"omg",
"dds",
"idl",
"http",
"jsonrpc",
]
categories = [
"compilers",
"parser-implementations",
"network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/xidl/xidl"
resolver = "2"
[lib]
name = "xidl_parser"
path = "src/lib.rs"
[[test]]
name = "test-annotation"
path = "tests/test-annotation.rs"
[[test]]
name = "test-bitmask"
path = "tests/test-bitmask.rs"
[[test]]
name = "test-bitset"
path = "tests/test-bitset.rs"
[[test]]
name = "test-const"
path = "tests/test-const.rs"
[[test]]
name = "test-enum"
path = "tests/test-enum.rs"
[[test]]
name = "test-except"
path = "tests/test-except.rs"
[[test]]
name = "test-interface"
path = "tests/test-interface.rs"
[[test]]
name = "test-misc"
path = "tests/test-misc.rs"
[[test]]
name = "test-module"
path = "tests/test-module.rs"
[[test]]
name = "test-preproc"
path = "tests/test-preproc.rs"
[[test]]
name = "test-struct"
path = "tests/test-struct.rs"
[[test]]
name = "test-template-module"
path = "tests/test-template-module.rs"
[[test]]
name = "test-typedef"
path = "tests/test-typedef.rs"
[[test]]
name = "test-union"
path = "tests/test-union.rs"
[dependencies.md5]
version = "0.7"
[dependencies.minijinja]
version = "1.0"
[dependencies.rust-embed]
version = "8.5"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tree-sitter]
version = "=0.25.0"
[dependencies.tree-sitter-idl]
version = "3.12.1"
[dependencies.xidl-parser-derive]
version = "0.3.0"
[dev-dependencies.insta]
version = "1.44"
[lints.clippy]
collapsible_if = "allow"