prolly-store-postgres 0.1.0

PostgreSQL store adapter for prolly-map.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.81"
name = "prolly-store-postgres"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL store adapter for prolly-map."
homepage = "https://github.com/crabbuild/prolly"
documentation = "https://docs.rs/prolly-store-postgres"
readme = "README.md"
keywords = [
    "prolly-tree",
    "storage",
    "database",
    "postgresql",
]
categories = ["database-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/crabbuild/prolly"

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

[[example]]
name = "postgres_basic_usage"
path = "examples/basic_usage.rs"

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

[dependencies.prolly]
version = "0.2.0"
features = ["async-store"]
package = "prolly-map"

[dependencies.sqlx]
version = "0.8"
features = [
    "postgres",
    "runtime-tokio",
]
default-features = false

[dev-dependencies.tokio]
version = "1.45"
features = [
    "rt-multi-thread",
    "time",
]

[lints.rust]
unsafe_code = "allow"