Skip to content

Commit

Permalink
Add placeholder module
Browse files Browse the repository at this point in the history
Adds a simple placeholder Rust module to allow the build pipelines to
pass. They expect a Cargo.toml file to be present in the repo.

Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com>
  • Loading branch information
makubacki committed Sep 21, 2023
1 parent f6cdb9e commit 23eec00
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[package]
name = "hid_report_descriptor_parser"
version = "0.1.0"
edition = "2021"
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#![no_std]

#[allow(dead_code)]
fn placeholder() {}

0 comments on commit 23eec00

Please sign in to comment.