forked from eldruin/si4703-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 874 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
[package]
name = "si4703"
version = "0.1.0"
authors = ["Diego Barrios Romero <[email protected]>"]
repository = "https://github.com/eldruin/si4703-rs"
license = "MIT OR Apache-2.0"
description = "Platform-agnostic Rust driver for the Si4703 and Si4702 FM radio turners (receivers)."
readme = "README.md"
keywords = ["fm", "radio", "receiver", "turner", "embedded-hal-driver"]
categories = ["embedded", "hardware-support", "no-std"]
homepage = "https://github.com/eldruin/si4703-rs"
documentation = "https://docs.rs/si4703"
include = [
"/**/*.rs",
"/Cargo.toml",
"/README.md",
"/CHANGELOG.md",
"/LICENSE-MIT",
"/LICENSE-APACHE",
]
edition = "2018"
[dependencies]
embedded-hal = { version = "0.2.5", features = ["unproven"] }
libm = "0.2"
nb = "1"
[dev-dependencies]
linux-embedded-hal = "0.3"
embedded-hal-mock = "0.7"
[profile.release]
lto = true