Add libdebugstore for Future Use by ART and Frameworks
Add libdebugstore, designed for integration with ART and frameworks. The primary purpose of it is to provide an internal API that allows in-process storage of specific events, enabling these processes to be dumped into the ANR (Application Not Responding) dump file.
Bug: 314735374
Test: atest && Tested manually
Change-Id: I3437008a388b9b642542978ba736e0a87da6772c
diff --git a/libs/debugstore/rust/Cargo.toml b/libs/debugstore/rust/Cargo.toml
new file mode 100644
index 0000000..23a8d24
--- /dev/null
+++ b/libs/debugstore/rust/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "debugstore"
+version = "0.1.0"
+edition = "2021"
+
+[lib]
+crate-type = ["cdylib", "rlib"]
+
+[dependencies]
\ No newline at end of file