[package]
edition = "2021"
rust-version = "1.75"
name = "langgraph-checkpoint-postgres"
version = "0.1.0"
authors = ["CYXCAT <13906115830@163.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "PostgreSQL-backed checkpoint persistence for langgraph."
homepage = "https://github.com/CYXCAT/langgraph-rust"
readme = "README.md"
keywords = [
"langgraph",
"checkpoint",
"postgres",
"persistence",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/CYXCAT/langgraph-rust"
[lib]
name = "langgraph_checkpoint_postgres"
path = "src/lib.rs"
[[test]]
name = "postgres_saver"
path = "tests/postgres_saver.rs"
[dependencies.langgraph-checkpoint]
version = "0.1.0"
[dependencies.postgres]
version = "0.19"
features = ["with-serde_json-1"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.uuid]
version = "1"
features = ["v4"]