Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Merged
merged 2 commits into from
Oct 8, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Also here
Signed-off-by: Benjamin Leggett <[email protected]>
  • Loading branch information
bleggett committed Oct 8, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit b2dc33dbb76b3fea67c53f245634e570409081d0
4 changes: 2 additions & 2 deletions spire-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"]}
@@ -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"

Loading