[package]
edition = "2021"
rust-version = "1.75"
name = "langgraph-checkpoint"
version = "0.1.0"
authors = ["CYXCAT <13906115830@163.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Checkpoint saver trait and in-memory implementation for durable graph execution."
homepage = "https://github.com/CYXCAT/langgraph-rust"
readme = "README.md"
keywords = [
"langgraph",
"checkpoint",
"persistence",
"agent",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/CYXCAT/langgraph-rust"
[lib]
name = "langgraph_checkpoint"
path = "src/lib.rs"
[[test]]
name = "memory_saver"
path = "tests/memory_saver.rs"
[dependencies.langgraph-core]
version = "0.1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"