apache_age 0.6.2

Rust driver for the Apache AGE. Based on postgres package
Documentation
[dependencies.async-trait]
optional = true
version = "0.1.83"

[dependencies.bytes]
version = "1.8.0"

[dependencies.postgres]
version = "0.19.9"

[dependencies.postgres-types]
features = ["derive", "with-serde_json-1"]
version = "0.2.8"

[dependencies.rand]
version = "0.8.5"

[dependencies.serde]
features = ["derive"]
version = "1.0.214"

[dependencies.serde_json]
version = "1.0.132"

[dependencies.tokio]
features = ["macros", "rt-multi-thread"]
optional = true
version = "1.41.0"

[dependencies.tokio-postgres]
version = "0.7.12"

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

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

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

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

[lib]
name = "apache_age"
path = "src/lib.rs"

[package]
authors = ["Tomasz Durda"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["database"]
description = "Rust driver for the Apache AGE. Based on postgres package"
edition = "2021"
license = "Apache-2.0"
name = "apache_age"
readme = "README.md"
repository = "https://github.com/dzordzu/rust-apache-age.git"
version = "0.6.2"

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

[[test]]
name = "path"
path = "tests/path.rs"

[[test]]
name = "person"
path = "tests/person.rs"

[[test]]
name = "person-async"
path = "tests/person-async.rs"

[[test]]
name = "ser_return_operation"
path = "tests/ser_return_operation.rs"

[[test]]
name = "ser_set_operation"
path = "tests/ser_set_operation.rs"