Skip to content

Commit 80d8858

Browse files
committed
fix(lambda): add version to git lambda dependencies
1 parent 5b7e28f commit 80d8858

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

Cargo.lock

Lines changed: 5 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htsget-lambda/Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,12 @@ default = []
2323
[dependencies]
2424
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
2525
rustls = "0.23"
26-
lambda_http = { git = "https://github.com/andrewpatto/aws-lambda-rust-runtime.git", branch = "feature/lattice-support-http" }
27-
aws_lambda_events = { git = "https://github.com/andrewpatto/aws-lambda-rust-runtime.git", branch = "feature/lattice-support-http" }
26+
lambda_http = { version = "0.17", git = "https://github.com/andrewpatto/aws-lambda-rust-runtime.git", branch = "feature/lattice-support-http" }
27+
aws_lambda_events = { version = "0.18", git = "https://github.com/andrewpatto/aws-lambda-rust-runtime.git", branch = "feature/lattice-support-http" }
2828
tracing = "0.1"
2929
futures = "0.3"
3030
serde_json = "1"
3131

3232
htsget-config = { version = "0.18.0", path = "../htsget-config", default-features = false }
3333
htsget-http = { version = "0.7.4", path = "../htsget-http", default-features = false }
3434
htsget-axum = { version = "0.7.0", path = "../htsget-axum", default-features = false }
35-
36-
[dev-dependencies]
37-
tempfile = "3"

0 commit comments

Comments
 (0)