[package]
edition = "2021"
name = "a1"
version = "1.0.2"
authors = ["Patrick Carroll <patrick@patrickomatic.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A package for converting to and from A1 spreadsheet notation"
homepage = "https://github.com/patrickomatic/a1"
documentation = "https://docs.rs/a1"
readme = "README.md"
keywords = [
"a1",
"notation",
"spreadsheet",
"csv",
"reference",
]
license = "MIT"
repository = "https://github.com/patrickomatic/a1"
[features]
rkyv = ["dep:rkyv"]
serde = ["dep:serde"]
[lib]
name = "a1"
path = "src/lib.rs"
[[test]]
name = "a1"
path = "tests/a1.rs"
[[test]]
name = "rkyv"
path = "tests/rkyv.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[dependencies.rkyv]
version = "^0.8"
optional = true
[dependencies.serde]
version = "^1"
features = ["derive"]
optional = true