forked from rust-embedded-community/sh1106
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (40 loc) · 1.14 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
38
39
40
41
42
43
44
45
46
47
48
[package]
authors = ["James Waples <[email protected]>"]
categories = ["embedded", "no-std"]
description = "I2C/SPI driver for the SH1106 OLED display controller"
documentation = "https://docs.rs/sh1106"
exclude = [".travis.yml", ".gitignore"]
keywords = ["no-std", "sh1106", "oled", "embedded", "embedded-hal-driver"]
license = "MIT OR Apache-2.0"
name = "sh1106"
readme = "README.md"
repository = "https://github.com/jamwaffles/sh1106"
version = "0.5.0"
edition = "2018"
[package.metadata.docs.rs]
targets = [ "thumbv7m-none-eabi", "thumbv7em-none-eabihf" ]
[badges]
circle-ci = { repository = "jamwaffles/sh1106", branch = "master" }
[dependencies]
embedded-hal = "0.2.3"
embedded-graphics-core = { version = "0.4.0", optional = true }
[dev-dependencies]
cortex-m = "0.7.3"
cortex-m-rt = "0.6.10"
embedded-graphics = "0.8.0"
heapless = "0.7.10"
panic-semihosting = "0.5.2"
cortex-m-rtic = "0.5.9"
[dev-dependencies.stm32f1xx-hal]
version = "0.7.0"
features = [ "rt", "stm32f103" ]
[features]
default = ["graphics"]
graphics = ["embedded-graphics-core"]
[profile.dev]
codegen-units = 1
incremental = false
[profile.release]
codegen-units = 1
debug = true
lto = true