-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #929 from hove-io/upgrade-crates
[tech] Upgrade crates
- Loading branch information
Showing
18 changed files
with
74 additions
and
249 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
authors = ["Hove <[email protected]>", "Guillaume Pinot <[email protected]>"] | ||
name = "transit_model" | ||
version = "0.58.0" | ||
version = "0.58.1" | ||
license = "AGPL-3.0-only" | ||
description = "Transit data management" | ||
repository = "https://github.com/hove-io/transit_model" | ||
|
@@ -43,7 +43,7 @@ chrono = { version = "0.4", default-features = false, features = ["std", "clock" | |
chrono-tz = { version = "0.8", features = ["serde"] } | ||
csv = "1" | ||
derivative = "2" | ||
geo = "0.25" | ||
geo = "0.27" | ||
iso4217 = "0.3" | ||
lazy_static = "1" | ||
md5 = "0.7" | ||
|
@@ -54,7 +54,7 @@ minidom_ext = { git = "https://github.com/hove-io/minidom_ext", tag="v1"} | |
minidom_writer = { git = "https://github.com/hove-io/minidom_writer", tag = "v1"} | ||
num-traits = "0.2" | ||
pretty_assertions = "1" | ||
proj = { version = "0.25", optional = true } # libproj version used by 'proj' crate must be propagated to CI and makefile | ||
proj = { version = "0.27", optional = true } # libproj version used by 'proj' crate must be propagated to CI and makefile | ||
relational_types = { git = "https://github.com/hove-io/relational_types", tag = "v2"} | ||
rust_decimal = "1" | ||
serde = { version = "1", features = ["derive"] } | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
FROM 162230498103.dkr.ecr.eu-west-1.amazonaws.com/mutable-rust-ci:latest-proj8.1.1-deb11 as builder | ||
FROM 162230498103.dkr.ecr.eu-west-1.amazonaws.com/mutable-rust-ci:latest-proj9.3.0-deb11 as builder | ||
WORKDIR /usr/src/app | ||
COPY . ./ | ||
RUN git describe --tags --always && git status | ||
RUN cargo build --workspace --release | ||
RUN mkdir /usr/src/bin && for file in ls ${CARGO_TARGET_DIR:-./target}/release/*; do if test -f $file -a -x $file; then cp $file /usr/src/bin; fi; done | ||
|
||
FROM 162230498103.dkr.ecr.eu-west-1.amazonaws.com/mutable-proj-ci:8.1.1-deb11 | ||
FROM 162230498103.dkr.ecr.eu-west-1.amazonaws.com/mutable-proj-ci:9.3.0-deb11 | ||
COPY --from=builder /usr/src/bin/* /usr/local/bin/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.