-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
41 lines (35 loc) · 952 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
35
36
37
38
39
40
41
[package]
name = "libftd2xx-ffi"
version = "0.8.7"
description = "Rust FFI bindings to the FTDI D2XX drivers."
keywords = ["ftdi", "ffi", "usb"]
categories = ["external-ffi-bindings"]
authors = ["Alex Martens <[email protected]>"]
edition = "2021"
readme = "README.md"
build = "build.rs"
repository = "https://github.com/ftdi-rs/libftd2xx-ffi"
documentation = "https://docs.rs/libftd2xx-ffi"
license-file = "LICENSE"
links = "ftd2xx"
exclude = [
"vendor/**/*.dll",
"vendor/**/*.o",
"vendor/**/*.so.1.4.8",
"vendor/**/examples",
"vendor/linux/**/libusb",
]
[lints.rust]
rust_2018_idioms = { level = "warn", priority = -1 }
future-incompatible = "warn"
[lints.clippy]
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
[dependencies]
cfg-if = "^1.0.0"
[build-dependencies]
bindgen = { version = "~0.71.1", optional = true }
[dev-dependencies]
version-sync = "~0.9.2"
[features]
static = []