[package]
edition = "2024"
rust-version = "1.88"
name = "rd-helpdb"
version = "0.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reader for installed R package help databases (aliases, .rdx/.rdb, Meta/hsearch.rds), built on rd-rds"
readme = "README.md"
keywords = [
"r",
"rstats",
"documentation",
"help",
"database",
]
categories = [
"database",
"parsing",
]
license = "MIT"
repository = "https://github.com/eitsupi/r-documentation-rs"
[lib]
name = "rd_helpdb"
path = "src/lib.rs"
[[example]]
name = "mass_test"
path = "examples/mass_test.rs"
[[example]]
name = "read_topic"
path = "examples/read_topic.rs"
[[test]]
name = "alias_index"
path = "tests/alias_index.rs"
[[test]]
name = "fixture_records"
path = "tests/fixture_records.rs"
[[test]]
name = "oracle_rd_ast"
path = "tests/oracle_rd_ast.rs"
[[test]]
name = "oracle_read_topic"
path = "tests/oracle_read_topic.rs"
[[test]]
name = "read_rds_file"
path = "tests/read_rds_file.rs"
[[test]]
name = "utils_integration"
path = "tests/utils_integration.rs"
[dependencies.flate2]
version = "1"
[dependencies.rd-rds]
version = "0.0.1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.rd-ast]
version = "0.0.1"
features = ["rds"]