[package]
edition = "2021"
name = "durable-execution-sdk"
version = "0.1.0-alpha2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AWS Durable Execution SDK for Lambda Rust Runtime"
readme = "README.md"
keywords = [
"aws",
"lambda",
"durable",
"workflow",
"serverless",
]
categories = [
"asynchronous",
"web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/awslabs/durable-execution-sdk-rust"
[features]
default = ["macros"]
macros = ["dep:durable-execution-sdk-macros"]
[lib]
name = "durable_execution_sdk"
path = "src/lib.rs"
[[test]]
name = "common_tests"
path = "tests/common_tests.rs"
[[test]]
name = "concurrency_patterns"
path = "tests/concurrency_patterns.rs"
[[test]]
name = "macro_compile_fail_tests"
path = "tests/macro_compile_fail_tests.rs"
[[test]]
name = "replay_scenarios"
path = "tests/replay_scenarios.rs"
[[test]]
name = "wait_for_callback_tests"
path = "tests/wait_for_callback_tests.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.aws-config]
version = "1.0"
[dependencies.aws-credential-types]
version = "1.0"
[dependencies.aws-sdk-lambda]
version = "1.0"
[dependencies.aws-sigv4]
version = "1.0"
[dependencies.aws-smithy-http]
version = "0.60"
[dependencies.aws-smithy-runtime-api]
version = "1.0"
[dependencies.blake2]
version = "0.10"
[dependencies.chrono]
version = "0.4"
features = [
"std",
"serde",
]
default-features = false
[dependencies.durable-execution-sdk-macros]
version = "0.1.0-alpha2"
optional = true
[dependencies.hex]
version = "0.4"
[dependencies.http]
version = "1.0"
[dependencies.lambda_runtime]
version = "1"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.static_assertions]
version = "1.1"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.0"
features = [
"full",
"sync",
"time",
"rt-multi-thread",
]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.urlencoding]
version = "2.1"
[dev-dependencies.proptest]
version = "1.0"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.trybuild]
version = "1.0"