From c8a0d86db60dd6e7a46783e6c2ad9e624673e768 Mon Sep 17 00:00:00 2001 From: ivmarkov Date: Wed, 1 Jan 2025 13:49:21 +0000 Subject: [PATCH] Clippy --- CHANGELOG.md | 2 +- src/bindgen.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71d8971..c693a22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,7 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Add support for PlatformIO platform = native (#97) -- Re-export the `bindgen` crate as `embuild::bindgen::bindgen` so that downstream crates can use it without having to add it as a dependency +- Re-export the `bindgen` crate as `embuild::bindgen::types` so that downstream crates can use it without having to add it as a dependency ### Fixed diff --git a/src/bindgen.rs b/src/bindgen.rs index fb71a0c..bfcd415 100644 --- a/src/bindgen.rs +++ b/src/bindgen.rs @@ -12,7 +12,7 @@ use crate::{cargo, cmd}; /// Re-export the bindgen crate so that downstream crates can use it without /// having to add it as a dependency. -pub mod bindgen { +pub mod types { pub use ::bindgen::*; }