fakecloud-lambda 0.15.4

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-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 }
reqwest = { workspace = true }
tracing = { workspace = true }
zip = { workspace = true }
tempfile = { workspace = true }
percent-encoding = { workspace = true }
crc32fast = { workspace = true }
bytes = { workspace = true }
kube = { workspace = true }
k8s-openapi = { workspace = true }
futures-util = "0.3"
# rustls 0.23 dropped the implicit default CryptoProvider; kube's
# rustls-tls feature builds a Client but every request panics unless
# one is installed up front. We install `ring` once at K8sBackend
# construction so neither the server's runtime path nor opt-in
# integration tests have to wire this in themselves.
rustls = { version = "0.23", default-features = false, features = ["ring"] }

[dev-dependencies]
bytes = { workspace = true }

[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 = []