[package]
edition = "2021"
name = "graphddb_runtime"
version = "0.7.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust runtime for GraphDDB — interprets the language-neutral IR (manifest.json + operations.json) and executes the validated access patterns against DynamoDB."
homepage = "https://github.com/foo-log-inc/graphddb"
readme = "README.md"
keywords = [
"dynamodb",
"graph",
"aws",
"orm",
"codegen",
]
categories = [
"database",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/foo-log-inc/graphddb"
[lib]
name = "graphddb_runtime"
path = "src/lib.rs"
[[test]]
name = "concurrency"
path = "tests/concurrency.rs"
[[test]]
name = "middleware"
path = "tests/middleware.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.aws-config]
version = "1"
features = ["behavior-version-latest"]
[dependencies.aws-sdk-dynamodb]
version = "1"
[dependencies.base64]
version = "0.22"
[dependencies.futures]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
"sync",
]
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"time",
"sync",
"macros",
"rt-multi-thread",
"test-util",
]