Skip to content

Commit

Permalink
Since we explicitly depend on 0.12.3 due to use of non-deprecated met…
Browse files Browse the repository at this point in the history
…hod sigs, require it explicitly (#120)

* Since we explicitly depend on 0.12.3 due to use of non-deprecated method sigs, require it explicitly

Signed-off-by: Benjamin Leggett <[email protected]>

* Also here

Signed-off-by: Benjamin Leggett <[email protected]>

---------

Signed-off-by: Benjamin Leggett <[email protected]>
  • Loading branch information
bleggett authored Oct 8, 2024
1 parent 1abaffd commit 769ebf3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spiffe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1"
zeroize = { version = "1", features = ["zeroize_derive"] }
time = "0.3"
tonic = "0.12"
tonic = "0.12.3"

# workload-api dependencies:
prost = { version = "0.13", optional = true }
Expand All @@ -48,7 +48,7 @@ once_cell = "1"
openssl = { version = "0.10", features = ["vendored"] }

[build-dependencies]
tonic-build = { version = "0.12", default-features = false, features = ["prost"] }
tonic-build = { version = "0.12.3", default-features = false, features = ["prost"] }
prost-build = "0.13"
anyhow = "1"

Expand Down
4 changes: 2 additions & 2 deletions spire-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ keywords = ["SPIFFE", "SPIRE"]
[dependencies]
spiffe = { version = "0.6.2", path = "../spiffe", default-features = false, features = ["spiffe-types"] }
bytes = { version = "1", features = ["serde"] }
tonic = { version = "0.12", default-features = false, features = ["prost", "codegen", "transport"]}
tonic = { version = "0.12.3", default-features = false, features = ["prost", "codegen", "transport"]}
prost = { version = "0.13"}
prost-types = {version = "0.13"}
tokio = { "version" = "1", features = ["net"]}
Expand All @@ -30,7 +30,7 @@ tokio = { version = "1", features = ["macros"] }
once_cell = "1"

[build-dependencies]
tonic-build = { version = "0.12.2", default-features = false, features = ["prost"] }
tonic-build = { version = "0.12.3", default-features = false, features = ["prost"] }
prost-build = "0.13"
anyhow = "1"

Expand Down

0 comments on commit 769ebf3

Please sign in to comment.