diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-01 14:31:32 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-12-01 15:22:38 +0000 |
| commit | d2ac69816567f092fe0d4661723bc43778cb481b (patch) | |
| tree | e8b51b61a6a7b0ab1a214adebe4e237143b01f0b /grasp-audit/src/lib.rs | |
| parent | 7a78815e29b01c83f3d0ec195ba717a2eba8cd37 (diff) | |
fix cargo clippy and fmt warnings
Diffstat (limited to 'grasp-audit/src/lib.rs')
| -rw-r--r-- | grasp-audit/src/lib.rs | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/grasp-audit/src/lib.rs b/grasp-audit/src/lib.rs index fb52ba7..6df240f 100644 --- a/grasp-audit/src/lib.rs +++ b/grasp-audit/src/lib.rs | |||
| @@ -39,14 +39,24 @@ pub use audit::{AuditConfig, AuditEventBuilder, AuditMode}; | |||
| 39 | pub use client::AuditClient; | 39 | pub use client::AuditClient; |
| 40 | pub use fixtures::{ | 40 | pub use fixtures::{ |
| 41 | // Git operation helpers | 41 | // Git operation helpers |
| 42 | clone_repo, create_commit, create_deterministic_commit, create_deterministic_commit_with_variant, | 42 | clone_repo, |
| 43 | try_push, try_push_to_ref, | 43 | create_commit, |
| 44 | create_deterministic_commit, | ||
| 45 | create_deterministic_commit_with_variant, | ||
| 44 | // Verification helpers | 46 | // Verification helpers |
| 45 | send_and_verify_accepted, send_and_verify_rejected, | 47 | send_and_verify_accepted, |
| 48 | send_and_verify_rejected, | ||
| 49 | try_push, | ||
| 50 | try_push_to_ref, | ||
| 46 | // Types and constants | 51 | // Types and constants |
| 47 | CommitVariant, ContextMode, FixtureKind, TestContext, | 52 | CommitVariant, |
| 48 | DETERMINISTIC_COMMIT_HASH, MAINTAINER_DETERMINISTIC_COMMIT_HASH, | 53 | ContextMode, |
| 49 | PR_TEST_COMMIT_HASH, RECURSIVE_MAINTAINER_DETERMINISTIC_COMMIT_HASH, | 54 | FixtureKind, |
| 55 | TestContext, | ||
| 56 | DETERMINISTIC_COMMIT_HASH, | ||
| 57 | MAINTAINER_DETERMINISTIC_COMMIT_HASH, | ||
| 58 | PR_TEST_COMMIT_HASH, | ||
| 59 | RECURSIVE_MAINTAINER_DETERMINISTIC_COMMIT_HASH, | ||
| 50 | }; | 60 | }; |
| 51 | pub use result::{AuditResult, TestResult}; | 61 | pub use result::{AuditResult, TestResult}; |
| 52 | 62 | ||