[dependencies]
[lib]
name = "num_packer"
path = "src/lib.rs"
[package]
authors = ["Julian Wang <traceflight@outlook.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "encoding", "no-std"]
description = "Provides traits and implementations for packing and unpacking two numbers into a single value."
documentation = "https://docs.rs/num-packer/"
edition = "2024"
keywords = ["number", "pack", "packer", "num"]
license = "MIT OR Apache-2.0"
name = "num-packer"
readme = "README.md"
repository = "https://github.com/traceflight/num-packer"
version = "0.1.2"
[[test]]
name = "test_bool_packer"
path = "tests/test_bool_packer.rs"
[[test]]
name = "test_f32_packer"
path = "tests/test_f32_packer.rs"
[[test]]
name = "test_i16_packer"
path = "tests/test_i16_packer.rs"
[[test]]
name = "test_i32_packer"
path = "tests/test_i32_packer.rs"
[[test]]
name = "test_i8_packer"
path = "tests/test_i8_packer.rs"
[[test]]
name = "test_u16_packer"
path = "tests/test_u16_packer.rs"
[[test]]
name = "test_u32_packer"
path = "tests/test_u32_packer.rs"
[[test]]
name = "test_u8_packer"
path = "tests/test_u8_packer.rs"