summaryrefslogtreecommitdiff
path: root/system/gd/rust/packets/lib.rs
blob: f43f69fbb91a780b08f10e1ae45699346d559549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//! reimport of generated packets (to go away once rust_genrule exists)

#![allow(clippy::all)]
#![allow(unused)]
#![allow(missing_docs)]

pub mod custom_types;

pub mod hci {
    use crate::custom_types::*;

    include!(concat!(env!("OUT_DIR"), "/hci_packets.rs"));
}