-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 1.03 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
[package]
name = "adc128s022"
version = "0.1.0"
authors = ["Philipp Scheff <philippscheff@me.com>"]
repository = "https://github.com/schphil/adc128s022-rs"
license = "MIT OR Apache-2.0"
description = "Platform agnostic driver written using embedded-hal traits to interface with the ADC128S022 ADC's"
readme = "README.md"
keywords = ["embedded-hal-driver", "adc"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/schphil/adc128s022-rs"
documentation = "https://docs.rs/adc128s022"
edition = "2021"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
embedded-hal = "1.0.0-rc.1"
embedded-hal-async = { version = "1.0.0-rc.1", optional = true }
[dev-dependencies]
#embedded-hal-mock = { git = "https://github.com/dbrgn/embedded-hal-mock", branch="1-alpha" }
[features]
async = ["embedded-hal-async"]
[profile.release]
lto = true