[package]
edition = "2021"
rust-version = "1.85"
name = "reliakit-csv"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Strict, bounded, and deterministic CSV for reliability-sensitive Rust. no_std + alloc, zero-dependency."
homepage = "https://github.com/satyakwok/reliakit"
documentation = "https://docs.rs/reliakit-csv"
readme = "README.md"
keywords = [
"csv",
"strict",
"no-std",
"deterministic",
"reliability",
]
categories = [
"parser-implementations",
"encoding",
"no-std",
]
license = "MIT"
repository = "https://github.com/satyakwok/reliakit"
[package.metadata.docs.rs]
all-features = true
[features]
alloc = []
default = ["std"]
std = ["alloc"]
[lib]
name = "reliakit_csv"
path = "src/lib.rs"
[[example]]
name = "csv_basic"
path = "examples/basic.rs"
[[test]]
name = "api"
path = "tests/api.rs"
[[test]]
name = "format"
path = "tests/format.rs"
[dependencies]
[lints.rust]
unsafe_code = "forbid"