Compare commits

...

1 Commits

Author SHA1 Message Date
Ruben Fiszel
48152bc5c6 rds 2025-11-19 18:23:50 +00:00
3 changed files with 29 additions and 1 deletions

26
backend/Cargo.lock generated
View File

@@ -894,6 +894,31 @@ dependencies = [
"tracing",
]
[[package]]
name = "aws-sdk-rds"
version = "1.115.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c923a4c739db1b5a695109585fcd03985f743788773790fc87464a70e25c365c"
dependencies = [
"aws-credential-types",
"aws-runtime",
"aws-sigv4",
"aws-smithy-async",
"aws-smithy-http",
"aws-smithy-json",
"aws-smithy-query",
"aws-smithy-runtime",
"aws-smithy-runtime-api",
"aws-smithy-types",
"aws-smithy-xml",
"aws-types",
"fastrand",
"http 0.2.12",
"regex-lite",
"tracing",
"url",
]
[[package]]
name = "aws-sdk-sqs"
version = "1.77.0"
@@ -15427,6 +15452,7 @@ dependencies = [
"async-trait",
"aws-config",
"aws-credential-types",
"aws-sdk-rds",
"aws-sdk-sts",
"aws-smithy-types",
"aws-smithy-types-convert",

View File

@@ -268,6 +268,7 @@ regex = "^1"
semver = "^1"
aws-sigv4 = "^1.3.4"
aws-sdk-config = "=1.68.0"
aws-sdk-rds = "^1"
async-trait = "0.1.88"

View File

@@ -14,7 +14,7 @@ prometheus = ["dep:prometheus"]
loki = ["dep:tracing-loki"]
benchmark = []
parquet = ["dep:object_store", "dep:aws-config", "dep:aws-sdk-sts", "dep:aws-smithy-types-convert", "dep:datafusion"]
aws_auth = ["dep:aws-sdk-sts", "dep:aws-config"]
aws_auth = ["dep:aws-sdk-sts", "dep:aws-config", "dep:aws-sdk-rds"]
otel = ["dep:opentelemetry-semantic-conventions", "dep:opentelemetry-otlp", "dep:opentelemetry_sdk",
"dep:opentelemetry", "dep:tracing-opentelemetry", "dep:opentelemetry-appender-tracing", "dep:tonic"]
smtp = ["dep:mail-send"]
@@ -64,6 +64,7 @@ object_store = { workspace = true, optional = true }
prometheus = { workspace = true, optional = true }
aws-config = { workspace = true, optional = true }
aws-sdk-sts = { workspace = true, optional = true }
aws-sdk-rds = { workspace = true, optional = true }
aws-credential-types.workspace = true
aws-smithy-types.workspace = true
base64.workspace = true