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

Go back to Rust 1.80.0 #937

Merged
merged 3 commits into from
Mar 7, 2025
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
clippy: fix dead-code warning
We get a dead code warning when running clippy on the attestation agent
with the bin and ttrpc features. Maybe this is because we are not
building binary main code. Interestingly, this doesn't happen with Rust
1.82.0, so rather than go down the rabbit hole, allow dead code in two
  places for now.

Signed-off-by: Tobin Feldman-Fitzthum <[email protected]>
  • Loading branch information
fitzthum committed Mar 6, 2025
commit 4ce61da75c614e03b7e241ef29e8bdbab034ad6b
Original file line number Diff line number Diff line change
@@ -17,8 +17,10 @@ use crate::ttrpc_dep::ttrpc_protocol::{
attestation_agent_ttrpc::AttestationAgentService,
};

#[allow(dead_code)]
pub const AGENT_NAME: &str = "attestation-agent";

#[allow(dead_code)]
pub struct AA {
pub(crate) inner: AttestationAgent,
}