[package]
edition = "2024"
rust-version = "1.98"
name = "iris-abi"
version = "0.2.2"
authors = ["iris contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The guest and host ABI for iris self-decoding datasets."
homepage = "https://github.com/tamnd/iris"
readme = "README.md"
keywords = [
"arrow",
"columnar",
"wasm",
"self-decoding",
"file-format",
]
categories = [
"database-implementations",
"encoding",
"wasm",
]
license = "Apache-2.0"
repository = "https://github.com/tamnd/iris"
[lib]
name = "iris_abi"
path = "src/lib.rs"
[[test]]
name = "forward_compat"
path = "tests/forward_compat.rs"
[dependencies]
[lints.clippy]
cast_possible_truncation = "warn"
cast_possible_wrap = "warn"
cast_sign_loss = "warn"
dbg_macro = "warn"
missing_panics_doc = "warn"
missing_safety_doc = "deny"
mod_module_files = "warn"
multiple_crate_versions = "allow"
todo = "warn"
undocumented_unsafe_blocks = "deny"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1