diff options
Diffstat (limited to 'rust')
| -rw-r--r-- | rust/config/global.go | 2 | ||||
| -rw-r--r-- | rust/rust.go | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/rust/config/global.go b/rust/config/global.go index 418eca455..e28dbaaea 100644 --- a/rust/config/global.go +++ b/rust/config/global.go @@ -25,7 +25,7 @@ var ( pctx = android.NewPackageContext("android/soong/rust/config") ExportedVars = android.NewExportedVariables(pctx) - RustDefaultVersion = "1.75.0" + RustDefaultVersion = "1.76.0" RustDefaultBase = "prebuilts/rust/" DefaultEdition = "2021" Stdlibs = []string{ diff --git a/rust/rust.go b/rust/rust.go index 245ed2e8e..668dd8f08 100644 --- a/rust/rust.go +++ b/rust/rust.go @@ -1063,6 +1063,12 @@ func (d dependencyTag) LicenseAnnotations() []android.LicenseAnnotation { return nil } +func (d dependencyTag) PropagateAconfigValidation() bool { + return d == rlibDepTag || d == sourceDepTag +} + +var _ android.PropagateAconfigValidationDependencyTag = dependencyTag{} + var _ android.LicenseAnnotationsDependencyTag = dependencyTag{} var ( |