14 lines
270 B
Rust
14 lines
270 B
Rust
|
//! 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"));
|
||
|
}
|