[package]
edition = "2021"
rust-version = "1.89"
name = "uor-matmul-codec"
version = "0.1.0"
authors = ["UOR Foundation"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The Codec trait and every shipped tier: identity, grid, packed, codebook, offset, runs, transcode. no_std, no alloc, no unsafe, no float."
homepage = "https://github.com/UOR-Foundation/uor-matmul"
readme = "README.md"
keywords = [
"matmul",
"gemm",
"quantization",
"no-std",
"exact",
]
categories = [
"mathematics",
"no-std",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/UOR-Foundation/uor-matmul"
[features]
default = []
kappa = ["dep:uor-addr-1"]
[lib]
name = "uor_matmul_codec"
path = "src/lib.rs"
[[test]]
name = "codec"
path = "tests/codec.rs"
[dependencies.bytemuck]
version = "1"
features = ["derive"]
default-features = false
[dependencies.uor-addr-1]
version = "0.1"
optional = true
[dependencies.uor-matmul-core]
version = "0.1.0"
default-features = false
[lints.clippy]
arithmetic_side_effects = "allow"
disallowed_types = "allow"
missing_safety_doc = "deny"
undocumented_unsafe_blocks = "deny"
[lints.rust]
missing_docs = "deny"
unsafe_op_in_unsafe_fn = "deny"