[package]
edition = "2021"
rust-version = "1.95"
name = "binoc-sdk"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Plugin SDK and ABI for Binoc dataset-diff plugins"
homepage = "https://github.com/harvard-lil/binoc"
documentation = "https://github.com/harvard-lil/binoc/tree/main/docs"
readme = "README.md"
license = "MIT"
repository = "https://github.com/harvard-lil/binoc"
[features]
default = []
python = ["dep:pyo3"]
schema = ["dep:schemars"]
test-support = []
[lib]
name = "binoc_sdk"
path = "src/lib.rs"
[[bin]]
name = "gen-changeset-schema"
path = "src/bin/gen_changeset_schema.rs"
required-features = ["schema"]
[dependencies.blake3]
version = "1.8.5"
[dependencies.pyo3]
version = "0.29.0"
features = [
"extension-module",
"abi3-py310",
]
optional = true
[dependencies.rand]
version = "0.10.1"
[dependencies.schemars]
version = "1.2"
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.tempfile]
version = "3.26.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies]