recutils-rs 0.1.1

Rust FFI bindings to GNU recutils (librec) with an optional Arrow conversion layer
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "recutils-rs"
version = "0.1.1"
authors = ["Nimalan <nimalan.m@protonmail.com>"]
build = "build.rs"
links = "rec"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust FFI bindings to GNU recutils (librec) with an optional Arrow conversion layer"
homepage = "https://github.com/Mark1626/recutil-tools"
readme = "README.md"
keywords = [
    "recutils",
    "ffi",
    "bindings",
    "arrow",
    "database",
]
categories = [
    "api-bindings",
    "external-ffi-bindings",
    "database",
]
license = "GPL-3.0-or-later"
repository = "https://github.com/Mark1626/recutil-tools"
resolver = "2"

[package.metadata.docs.rs]
features = ["arrow"]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
arrow = [
    "dep:arrow",
    "dep:log",
]
default = []

[lib]
name = "recutils_rs"
crate-type = ["rlib"]
path = "src/lib.rs"

[[example]]
name = "append_record"
path = "examples/append_record.rs"

[[example]]
name = "count_records"
path = "examples/count_records.rs"

[[example]]
name = "modify_records"
path = "examples/modify_records.rs"

[[example]]
name = "query_records"
path = "examples/query_records.rs"

[[example]]
name = "write_rec"
path = "examples/write_rec.rs"

[dependencies.arrow]
version = "58"
optional = true

[dependencies.log]
version = "0.4"
optional = true

[build-dependencies.bindgen]
version = "0.71"