fakecloud-lambda 0.19.1

Lambda implementation for FakeCloud
Documentation
[package]
name = "fakecloud-lambda"
description = "Lambda implementation for FakeCloud"
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
version.workspace = true

[dependencies]
fakecloud-aws = { workspace = true }
fakecloud-core = { workspace = true }
fakecloud-k8s = { workspace = true }
fakecloud-persistence = { workspace = true }
async-trait = { workspace = true }
chrono = { workspace = true }
http = { workspace = true }
parking_lot = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
uuid = { workspace = true }
sha2 = { workspace = true }
base64 = { workspace = true }
tokio = { workspace = true }
futures-util = "0.3"
reqwest = { workspace = true }
tracing = { workspace = true }
zip = { workspace = true }
tempfile = { workspace = true }
percent-encoding = { workspace = true }
crc32fast = { workspace = true }
bytes = { workspace = true }
# spec.rs builds k8s Pod objects; the client bootstrap, lifecycle, and
# reaping all live in fakecloud-k8s now.
k8s-openapi = { workspace = true }

[dev-dependencies]
bytes = { workspace = true }
# The opt-in k8s-integration test drives a real cluster directly.
kube = { workspace = true }
rustls = { version = "0.23", default-features = false, features = ["ring"] }

[features]
# Opt-in integration tests that need a real Kubernetes cluster
# (typically a local `kind` cluster). Run with:
#   FAKECLOUD_K8S_TEST=1 cargo test -p fakecloud-lambda \
#       --features k8s-integration --test k8s_integration
# Without the feature flag the test binary is not built; with the
# feature flag, the first test hard-fails if FAKECLOUD_K8S_TEST is
# unset rather than silently skipping
# (see feedback_tests_never_silently_skip).
k8s-integration = []