From 4560a886085782243f3cfbda77b4fe796be027ab Mon Sep 17 00:00:00 2001 From: Justin Perez Date: Wed, 27 Sep 2023 14:00:44 -0700 Subject: [PATCH] chore(rust): switch new detector to `IDefaultOffComponentDetector` (#811) --- .../rust/RustCliDetector.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Microsoft.ComponentDetection.Detectors/rust/RustCliDetector.cs b/src/Microsoft.ComponentDetection.Detectors/rust/RustCliDetector.cs index 63a8babe6..561308365 100644 --- a/src/Microsoft.ComponentDetection.Detectors/rust/RustCliDetector.cs +++ b/src/Microsoft.ComponentDetection.Detectors/rust/RustCliDetector.cs @@ -13,7 +13,7 @@ namespace Microsoft.ComponentDetection.Detectors.Rust; /// /// A Rust CLI detector that uses the cargo metadata command to detect Rust components. /// -public class RustCliDetector : FileComponentDetector, IExperimentalDetector +public class RustCliDetector : FileComponentDetector, IDefaultOffComponentDetector { private readonly ICommandLineInvocationService cliService;