[package]
edition = "2021"
rust-version = "1.74"
name = "rayforce"
version = "1.0.0"
authors = ["RayforceDB"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Convenient, high-performance Rust bindings for RayforceDB v2"
homepage = "https://rs.rayforcedb.com"
documentation = "https://rs.rayforcedb.com"
readme = "README.md"
keywords = [
"rayforce",
"database",
"columnar",
"kdb",
"timeseries",
]
categories = [
"database",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/RayforceDB/rayforce-rs"
[features]
chrono = ["dep:chrono"]
default = ["chrono"]
[lib]
name = "rayforce"
path = "src/lib.rs"
[[example]]
name = "lambda_demo"
path = "examples/lambda_demo.rs"
[[test]]
name = "containers"
path = "tests/containers.rs"
[[test]]
name = "expr"
path = "tests/expr.rs"
[[test]]
name = "ipc"
path = "tests/ipc.rs"
[[test]]
name = "lambda"
path = "tests/lambda.rs"
[[test]]
name = "q"
path = "tests/q.rs"
[[test]]
name = "q_real"
path = "tests/q_real.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "runtime"
path = "tests/runtime.rs"
[[test]]
name = "scalars"
path = "tests/scalars.rs"
[[test]]
name = "serde"
path = "tests/serde.rs"
[[test]]
name = "table"
path = "tests/table.rs"
[[bench]]
name = "benchmarks"
path = "benches/benchmarks.rs"
harness = false
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.rayforce-sys]
version = "1.0.0"
[dev-dependencies.criterion]
version = "0.5"