[package]
edition = "2024"
rust-version = "1.85"
name = "parsio"
version = "0.0.2"
authors = ["Mathieu Amiot <amiot.mathieu@gmail.com>"]
build = false
include = [
"src/**/*",
"LICENSE-*",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser-related I/O utilities"
documentation = "https://docs.rs/parsio"
readme = "README.md"
keywords = [
"parser",
"io",
"no_std",
]
categories = [
"parsing",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/OtaK/parsio"
[package.metadata.docs.rs]
features = ["std"]
rustdoc-args = [
"--cfg",
"docsrs",
"--generate-link-to-definition",
]
[features]
alloc = []
default = ["std"]
std = [
"alloc",
"thiserror/std",
]
[lib]
name = "parsio"
path = "src/lib.rs"
[dependencies.thiserror]
version = "2"
default-features = false