[package]
edition = "2024"
name = "ilog"
version = "1.0.3"
authors = ["Redglyph"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Base 10 and 2 logarithm functions for integer types."
homepage = "https://github.com/blueglyph/ilog"
documentation = "https://docs.rs/ilog"
readme = "README.md"
keywords = [
"logarithm",
"integer",
]
categories = [
"algorithms",
"mathematics",
"no-std",
]
license = "MIT"
repository = "https://github.com/blueglyph/ilog"
[badges.maintenance]
status = "passively-maintained"
[lib]
name = "ilog"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]