Skip to content

Commit 1ffb268

Browse files
authored
Merge pull request #118 from Ayush1325/serial-optional
Make unused dependencies optional
2 parents 3ed5ad8 + 17b2457 commit 1ffb268

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1010
### Added
1111

1212
- Added async `DelayNs` implementation for `tokio`.
13+
- Added feature flag for `serial`.
1314

1415
## [v0.4.0] - 2024-01-10
1516

Cargo.toml

+6-5
Original file line numberDiff line numberDiff line change
@@ -16,22 +16,23 @@ edition = "2018"
1616
gpio_sysfs = ["sysfs_gpio"]
1717
gpio_cdev = ["gpio-cdev"]
1818
async-tokio = ["gpio-cdev/async-tokio", "dep:embedded-hal-async", "tokio/time"]
19-
i2c = ["i2cdev"]
19+
i2c = ["i2cdev", "nix"]
2020
spi = ["spidev"]
21+
serial = ["serialport", "embedded-hal-nb"]
2122

22-
default = [ "gpio_cdev", "gpio_sysfs", "i2c", "spi" ]
23+
default = [ "gpio_cdev", "gpio_sysfs", "i2c", "spi", "serial" ]
2324

2425
[dependencies]
2526
embedded-hal = "1"
26-
embedded-hal-nb = "1"
27+
embedded-hal-nb = { version = "1", optional = true }
2728
embedded-hal-async = { version = "1", optional = true }
2829
gpio-cdev = { version = "0.6.0", optional = true }
2930
sysfs_gpio = { version = "0.6.1", optional = true }
3031
i2cdev = { version = "0.6.0", optional = true }
3132
nb = "1"
32-
serialport = { version = "4.2.0", default-features = false }
33+
serialport = { version = "4.2.0", default-features = false, optional = true }
3334
spidev = { version = "0.6.0", optional = true }
34-
nix = "0.27.1"
35+
nix = { version = "0.27.1", optional = true }
3536
tokio = { version = "1", default-features = false, optional = true }
3637

3738
[dev-dependencies]

src/lib.rs

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
#[cfg(feature = "i2c")]
1616
pub use i2cdev;
1717
pub use nb;
18+
#[cfg(feature = "serial")]
1819
pub use serialport;
1920
#[cfg(feature = "spi")]
2021
pub use spidev;
@@ -43,6 +44,7 @@ pub use sysfs_pin::{SysfsPin, SysfsPinError};
4344
mod delay;
4445
#[cfg(feature = "i2c")]
4546
mod i2c;
47+
#[cfg(feature = "serial")]
4648
mod serial;
4749
#[cfg(feature = "spi")]
4850
mod spi;
@@ -51,6 +53,7 @@ mod timer;
5153
pub use crate::delay::Delay;
5254
#[cfg(feature = "i2c")]
5355
pub use crate::i2c::{I2CError, I2cdev};
56+
#[cfg(feature = "serial")]
5457
pub use crate::serial::{Serial, SerialError};
5558
#[cfg(feature = "spi")]
5659
pub use crate::spi::{SPIError, SpidevBus, SpidevDevice};

0 commit comments

Comments
 (0)