feat: add s3 and deployment

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-11-17 15:43:37 +01:00
parent 2e8d14f5a6
commit c8f4bae1f2
12 changed files with 1093 additions and 158 deletions

View File

@@ -11,6 +11,18 @@ tracing.workspace = true
prost.workspace = true
prost-types.workspace = true
bytes.workspace = true
async-trait.workspace = true
hex = "0.4.3"
sha2 = "0.10.8"
aws-config = { version = "1.5.10", features = [
"behavior-version-latest",
], optional = true }
aws-sdk-s3 = { version = "1.61.0", features = [
"behavior-version-latest",
], optional = true }
[features]
default = ["s3"]
s3 = ["dep:aws-config", "dep:aws-sdk-s3"]