[dependencies.lru]
version = "0.12"
[dependencies.pyo3]
features = ["abi3-py38"]
optional = true
version = "0.23.3"
[dependencies.pythonize]
optional = true
version = "0.23"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
features = ["runtime-tokio-rustls", "postgres", "uuid", "time"]
version = "0.8"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
features = ["full"]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.sqlx]
features = ["runtime-tokio-rustls", "postgres", "uuid", "time"]
version = "0.8"
[dev-dependencies.tokio]
features = ["full"]
version = "1.0"
[features]
default = ["python"]
extension-module = ["pyo3/extension-module", "python"]
python = ["dep:pyo3", "dep:pythonize"]
[lib]
crate-type = ["cdylib", "rlib"]
name = "json_register"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "encoding"]
description = "A Rust library for registering JSON objects in PostgreSQL with canonicalisation and caching"
edition = "2021"
keywords = ["json", "canonicalisation", "postgresql", "database", "cache"]
license = "Apache-2.0"
name = "json-register"
readme = "README.md"
repository = "https://github.com/telicent-oss/json-register"
version = "0.1.0"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"