Skip to content

Commit

Permalink
Update dependencies (#74)
Browse files Browse the repository at this point in the history
Updates dependencies and use workspace ones when available.

Signed-off-by: Rémy Greinhofer <[email protected]>
  • Loading branch information
rgreinho authored Jan 17, 2024
1 parent b948453 commit bd20eb3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@ members = ["lambdas", "entity", "migration", "effortless"]
[workspace.dependencies]
color-eyre = "0.6.2"
chrono = "0.4.24"
dotenv = "0.15.0"
entity = { path = "entity" }
futures = "0.3.21"
http-serde = "1.1.3"
lambda_http = "0.8"
http-serde = "2.0.0"
lambda_http = "0.9.1"
migration = { path = "migration" }
once_cell = "1.17.1"
sea-orm = { version = "0.12.1", features = [
Expand All @@ -30,6 +31,7 @@ tokio = { version = "1", features = ["full"] }
[dependencies]
color-eyre = { workspace = true }
chrono = { workspace = true }
dotenv = { workspace = true }
entity = { workspace = true }
futures = { workspace = true }
http-serde = { workspace = true }
Expand All @@ -44,6 +46,5 @@ tokio = { workspace = true }

[dev-dependencies]
csv = "1.2.1"
dotenv = "0.15.0"
itertools = "0.12.0"
bnacore = { git = "https://github.com/PeopleForBikes/brokenspoke", rev = "81c1c7f" }
14 changes: 5 additions & 9 deletions lambdas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,20 @@ aws-sdk-s3 = "1.5.0"
aws-sdk-sqs = "1.3.0"
aws_lambda_events = "0.13.0"
bnacore = { git = "https://github.com/PeopleForBikes/brokenspoke.git", rev = "f1d9115" }
dotenv = "0.15.0"
dotenv = { workspace = true }
effortless = { path = "../effortless" }
entity = { path = "../entity" }
http-serde = "2.0.0"
lambda_http = "0.8"
http-serde = { workspace = true }
lambda_http = { workspace = true }
lambda_runtime = "0.9"
nom = "7.1.3"
once_cell = "1.17.1"
once_cell = { workspace = true }
reqwest = { version = "0.11.22", features = [
"json",
"native-tls-vendored",
"rustls",
] }
sea-orm = { version = "0.12.1", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
"macros",
] }
sea-orm = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
serde_plain = { workspace = true }
Expand Down

0 comments on commit bd20eb3

Please sign in to comment.