-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
37 lines (33 loc) · 1 KB
/
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
35
36
37
[package]
name = "ftdi-embedded-hal"
version = "0.22.0"
authors = ["Alex Martens <[email protected]>"]
description = "embedded-hal implementation for FTDI USB devices."
keywords = ["ftdi", "usb", "io", "hal"]
categories = ["embedded"]
edition = "2021"
license = "MIT"
repository = "https://github.com/ftdi-rs/ftdi-embedded-hal/"
documentation = "https://docs.rs/ftdi-embedded-hal"
readme = "README.md"
[features]
libftd2xx-static = ["libftd2xx/static"]
ftdi-vendored = ["ftdi/vendored"]
ftdi-libusb1-sys = ["ftdi/libusb1-sys"]
default = []
[dependencies]
eh0 = { package = "embedded-hal", version = "0.2.7", features = ["unproven"] }
eh1 = { package = "embedded-hal", version = "1" }
ehnb1 = { package = "embedded-hal-nb", version = "1" }
ftdi = { version = "0.1.3", optional = true }
ftdi-mpsse = "0.1"
libftd2xx = { version = "0.33", optional = true }
nb = "1"
[dev-dependencies]
cfg-if = "1"
eeprom24x = "0.7.0"
lm75 = "1.0.0"
spi-memory = "0.2.0"
version-sync = "0.9.2"
[badges]
maintenance = { status = "experimental" }