Skip to content

Commit

Permalink
f post merge dependency fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jrconlin committed Nov 17, 2023
1 parent 2727003 commit 036ba4b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion autoendpoint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ tokio = { workspace = true, features = ["fs", "macros"] }

[features]
default = ["dynamodb"]
dynamodb = []
dynamodb = ["autopush_common/dynamodb"]
emulator = ["bigtable"]
dual = ["bigtable", "dynamodb"]
bigtable = ["autopush_common/bigtable"]
8 changes: 4 additions & 4 deletions autopush-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ openssl.workspace = true
rand.workspace = true
regex.workspace = true
reqwest.workspace = true
rusoto_core.workspace = true
rusoto_credential.workspace = true
rusoto_dynamodb.workspace = true
rusoto_core = { workspace = true, optional = true }
rusoto_credential = { workspace = true, optional = true }
rusoto_dynamodb = { workspace = true, optional = true }
sentry-backtrace.workspace = true
sentry.workspace = true
sentry-core.workspace = true
Expand Down Expand Up @@ -78,7 +78,7 @@ actix-rt = "2.8"
# for testing:
# default = ["emulator"]
bigtable = ["dep:google-cloud-rust-raw", "dep:grpcio", "dep:protobuf"]
dynamodb = []
dynamodb = ["dep:rusoto_core", "dep:rusoto_credential", "dep:rusoto_dynamodb"]
emulator = [
"bigtable",
] # used for testing big table, requires an external bigtable emulator running.

0 comments on commit 036ba4b

Please sign in to comment.