summaryrefslogtreecommitdiff
path: root/rust/vboot_reference-sys/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'rust/vboot_reference-sys/lib.rs')
-rw-r--r--rust/vboot_reference-sys/lib.rs15
1 files changed, 15 insertions, 0 deletions
diff --git a/rust/vboot_reference-sys/lib.rs b/rust/vboot_reference-sys/lib.rs
new file mode 100644
index 00000000..85b6f2a1
--- /dev/null
+++ b/rust/vboot_reference-sys/lib.rs
@@ -0,0 +1,15 @@
+// Copyright 2022 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/// vboot_reference bindings for Rust.
+
+#[allow(
+ clippy::all,
+ non_camel_case_types,
+ non_snake_case,
+ non_upper_case_globals
+)]
+pub mod crossystem {
+ include!(concat!(env!("OUT_DIR"), "/crossystem.rs"));
+}