forked from riscv-rust/longan-nano
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (32 loc) · 847 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
[package]
name = "longan-nano"
version = "0.2.0"
authors = ["Vadim Kaushan <admin@disasm.info>"]
repository = "https://github.com/riscv-rust/longan-nano"
categories = ["embedded", "hardware-support", "no-std"]
description = "Board support package for the Longan Nano board"
keywords = ["riscv", "gd32", "bsp"]
license = "ISC"
edition = "2018"
[dependencies]
gd32vf103xx-hal = "0.4.0"
embedded-hal = "0.2.3"
nb = "0.1.2"
riscv = "0.6.0"
st7735-lcd = { version = "0.7", optional = true }
[dev-dependencies]
riscv-rt = "0.8.0"
panic-halt = "0.2.0"
embedded-graphics = "0.6"
[features]
lcd = ["st7735-lcd"]
[[example]]
name = "display"
required-features = ["lcd"]
[[example]]
name = "ferris"
required-features = ["lcd"]
[package.metadata.docs.rs]
features = ['lcd']
rustdoc-args = ["--cfg", "docsrs"]
default-target = "x86_64-unknown-linux-gnu"