apache_age 0.6.6

Rust driver for the Apache AGE. Based on postgres package
Documentation
[package]
name = "apache_age"
description = "Rust driver for the Apache AGE. Based on postgres package"
license = "Apache-2.0"
version = "0.6.6"
edition = "2024"
repository = "https://github.com/dzordzu/rust-apache-age.git"
authors = [ "Tomasz Durda" ]
categories = ["database"]

[package.metadata.docs.rs]
all-features = true

[dependencies]
bytes = "1.12.1"
postgres = "0.19.14"
postgres-types = { version = "0.2.14", features = ["derive", "with-serde_json-1"] }
serde = { version = "1.0.229", features = ["derive"] }
serde_json = "1.0.151"
tokio-postgres = "0.7.18"
async-trait = { version = "0.1.92", optional = true }
rand = "0.10.2"
tokio = { version = "1.53.1", optional = true, features = ["macros", "rt-multi-thread"] }

[features]
default = ["sync", "tokio"]
tokio = ["dep:async-trait", "dep:tokio"]
sync = []
serializers = []