-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
28 lines (24 loc) · 896 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
[package]
name = "adafruit-7segment"
version = "0.1.0"
authors = ["Karl Thorén <[email protected]>"]
edition = "2018"
description = "Small wrapper on top of the `ht16k33` crate to drive an Adafruit 7-segment LED numeric Backpack"
categories = ["hardware-support", "no-std", "embedded"]
keywords = ["embedded-hal-driver", "adafruit", "ht16k33", "no_std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kallemooo/adafruit-7segment"
readme = "README.md"
documentation = "https://docs.rs/adafruit-7segment"
homepage = "https://github.com/kallemooo/adafruit-7segment"
[dependencies]
ht16k33 = { version = "0.4.0", default-features = false }
embedded-hal = { version = "0.2.3" }
ascii = { version = "1.0.0", default-features = false }
[dev-dependencies.embedded-hal-mock]
version = "0.4"
[dev-dependencies.version-sync]
version = "0.9"
[features]
default = ["std"]
std = []