Skip to content

Commit

Permalink
⬇️ ⬆️ 🤷 Force the version of rust deps
Browse files Browse the repository at this point in the history
Between tempfile version 3.6.0 and 3.7.0 the minimum rust version was
changed.
  • Loading branch information
simonrainerson committed Jul 31, 2023
1 parent faceac0 commit e5e740b
Show file tree
Hide file tree
Showing 8 changed files with 610 additions and 117 deletions.
160 changes: 138 additions & 22 deletions clients/bendini/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion clients/bendini/bendini.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ base, types, tonicMiddleware }:
base.languages.rust.nativeTools.mkClient rec {
base.languages.rust.nativeTools.mkClient {
name = "bendini";
src = ./.;
buildInputs = [ types tonicMiddleware ];
Expand Down
1 change: 1 addition & 0 deletions libraries/rust/firm-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ edition = "2021"
[dependencies]
thiserror = "1"
firm-protocols = { version = "1.0.0", registry = "nix" }
tempfile = "=3.6.0" # Only here to force cargo to not use a version that requires rust version 1.63+
1 change: 1 addition & 0 deletions libraries/rust/tonic-middleware/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ edition = "2021"
[dependencies]
http = "0.2.5"
tower = "0.4.11"
tempfile = "<=3.6.0" # Only here to force cargo to not use a version that requires rust version 1.63+

firm-protocols = { version = "1.0.0", registry = "nix" }

Loading

0 comments on commit e5e740b

Please sign in to comment.