Upgrade pdl-compiler to 0.2.2

This project was upgraded with external_updater.
Usage: tools/external_updater/updater.sh update rust/crates/pdl-runtime
For more info, check https://cs.android.com/android/platform/superproject/+/main:tools/external_updater/README.md

Test: TreeHugger
Change-Id: I3b41a9e9a0f4e4835a33f88d4bd111501ab9aa71
diff --git a/Android.bp b/Android.bp
index d660707..b3307b5 100644
--- a/Android.bp
+++ b/Android.bp
@@ -1,4 +1,4 @@
-// This file is generated by cargo2android.py --run --device --tests.
+// This file is generated by cargo2android.py --min-sdk-version 33 --run --device --tests.
 // Do not modify this file as changes will be overridden on upgrade.
 
 
@@ -8,7 +8,7 @@
     host_supported: true,
     crate_name: "pdl_runtime",
     cargo_env_compat: true,
-    cargo_pkg_version: "0.2.1",
+    cargo_pkg_version: "0.2.2",
     srcs: ["src/lib.rs"],
     edition: "2021",
     rustlibs: [
@@ -21,4 +21,5 @@
     ],
     product_available: true,
     vendor_available: true,
+    min_sdk_version: "33",
 }
diff --git a/Cargo.toml b/Cargo.toml
index 57a1e84..eefc76f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,7 +12,7 @@
 [package]
 edition = "2021"
 name = "pdl-runtime"
-version = "0.2.1"
+version = "0.2.2"
 authors = [
     "Henri Chataing <[email protected]>",
     "David de Jesus Duarte <[email protected]>",
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 56311b3..9f6ad40 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
 [package]
 name = "pdl-runtime"
-version = "0.2.1"
+version = "0.2.2"
 edition = "2021"
 description = "PDL's runtime library"
 repository = "https://github.com/google/pdl/"
diff --git a/METADATA b/METADATA
index bef278d..e16a6a6 100644
--- a/METADATA
+++ b/METADATA
@@ -7,13 +7,13 @@
   }
   identifier {
     type: "Archive"
-    value: "https://static.crates.io/crates/pdl-runtime/pdl-runtime-0.2.1.crate"
+    value: "https://static.crates.io/crates/pdl-runtime/pdl-runtime-0.2.2.crate"
   }
-  version: "0.2.1"
+  version: "0.2.2"
   license_type: NOTICE
   last_upgrade_date {
     year: 2023
     month: 10
-    day: 18
+    day: 31
   }
 }
diff --git a/src/lib.rs b/src/lib.rs
index 728a7c2..4e78bf9 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -43,17 +43,3 @@
     fn to_bytes(self) -> Bytes;
     fn to_vec(self) -> Vec<u8>;
 }
-
-/// Private prevents users from creating arbitrary scalar values
-/// in situations where the value needs to be validated.
-/// Users can freely deref the value, but only the backend
-/// may create it.
-#[derive(Debug, Clone, Copy, Hash, PartialEq, Eq, PartialOrd, Ord)]
-pub struct Private<T>(T);
-
-impl<T> std::ops::Deref for Private<T> {
-    type Target = T;
-    fn deref(&self) -> &Self::Target {
-        &self.0
-    }
-}