[package]
edition = "2021"
name = "ifc-lite-core"
version = "4.2.2"
authors = ["IFC-Lite Contributors"]
build = false
exclude = ["examples/test_real_ifc.rs"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance IFC/STEP parser for building data"
readme = "README.md"
keywords = [
"ifc",
"bim",
"step",
"parser",
"aec",
]
categories = [
"parsing",
"data-structures",
]
license = "MPL-2.0"
repository = "https://github.com/LTplus-AG/ifc-lite"
[features]
default = []
[lib]
name = "ifc_lite_core"
path = "src/lib.rs"
[[test]]
name = "ifc_string_parity"
path = "tests/ifc_string_parity.rs"
[[test]]
name = "issue_1023_non_utf8_bytes"
path = "tests/issue_1023_non_utf8_bytes.rs"
[[test]]
name = "issue_856_scanner_skips_comment_hashes"
path = "tests/issue_856_scanner_skips_comment_hashes.rs"
[[test]]
name = "issue_860_stratum_subtypes"
path = "tests/issue_860_stratum_subtypes.rs"
[[test]]
name = "malformed_input"
path = "tests/malformed_input.rs"
[[test]]
name = "scanner_string_terminator"
path = "tests/scanner_string_terminator.rs"
[[test]]
name = "unit_scale_parity"
path = "tests/unit_scale_parity.rs"
[[test]]
name = "unit_symbol_parity"
path = "tests/unit_symbol_parity.rs"
[dependencies.fast-float2]
version = "0.2"
[dependencies.futures-core]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.lexical-core]
version = "1.0"
[dependencies.memchr]
version = "2.8"
[dependencies.nom]
version = "7.1"
[dependencies.rustc-hash]
version = "2.1"
[dependencies.smallvec]
version = "1.13"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]
[lints.clippy]
approx_constant = "allow"
excessive_precision = "allow"
manual_clamp = "allow"
manual_range_contains = "allow"
neg_cmp_op_on_partial_ord = "allow"