forked from copterust/bmp280
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
34 lines (26 loc) · 946 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
authors = ["Stefan Rakel"]
categories = ["embedded", "hardware-support", "no-std"]
description = "A platform agnostic driver to interface with the BMP388 pressure sensor"
documentation = "https://docs.rs/bmp388"
keywords = ["embedded-hal-driver", "pressure"]
license = "MIT"
name = "bmp388"
repository = "https://github.com/ibutra/bmp388"
version = "0.1.0"
readme = "README.md"
edition = "2021"
rust-version = "1.65"
[features]
default = []
defmt-03 = ["dep:defmt"]
serde = ["dep:serde"]
asynch = ["dep:embedded-hal-async"]
config-builder = ["dep:typed-builder"]
[dependencies]
embedded-hal = "1.0"
embedded-hal-async = { version = "1.0", optional = true }
defmt = { version = "0.3", optional = true }
serde = { version = "1", default-features = false, features = ["derive"], optional = true }
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
typed-builder = { version = "0.18", optional = true }