[package]
edition = "2021"
rust-version = "1.81"
name = "spreadsheet-column"
version = "0.1.0"
authors = ["trananhtung"]
build = false
exclude = [
"/.github",
"/.gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convert between spreadsheet column numbers and letters (1 <-> A, 27 <-> AA). A faithful port of the spreadsheet-column npm package. Zero deps, no_std."
homepage = "https://github.com/trananhtung/spreadsheet-column"
documentation = "https://docs.rs/spreadsheet-column"
readme = "README.md"
keywords = [
"spreadsheet",
"column",
"excel",
"base26",
"a1",
]
categories = [
"text-processing",
"value-formatting",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/trananhtung/spreadsheet-column"
[lib]
name = "spreadsheet_column"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"