Add libcrypto dep to libopen_dice_cbor_bindgen

A fix to the way that Soong handles whole static libraries means that
previously libopen_dice_cbor was not being included as a whole static
lib correctly. As a result of the fix, libcrypto needs to be explicitly
declared as a dependency.

Bug: 377932175
Test: mma
Change-Id: I18516d9714be8dbeb2c02e0eb35704b15499796f
diff --git a/libs/dice/open_dice/Android.bp b/libs/dice/open_dice/Android.bp
index 75f70c3..986f496 100644
--- a/libs/dice/open_dice/Android.bp
+++ b/libs/dice/open_dice/Android.bp
@@ -170,6 +170,7 @@
         "libopen_dice_cbor_bindgen.rust_defaults",
     ],
     whole_static_libs: ["libopen_dice_cbor"],
+    shared_libs: ["libcrypto"],
 }
 
 rust_bindgen {