-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (34 loc) · 1.07 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
[workspace]
members = ["macros"]
[workspace.package]
authors = ["Andelf <andelf@gmail.com>"]
repository = "https://github.com/hpmicro-rs/hpm-riscv-rt"
documentation = "https://docs.rs/hpm-riscv"
homepage = "https://github.com/hpmicro-rs/hpm-riscv-rt"
categories = ["embedded", "no-std", "hardware-support"]
license = "MIT/Apache-2.0"
version = "0.1.2" # for rt and macros
edition = "2021"
[package]
name = "hpm-riscv-rt"
version.workspace = true
edition.workspace = true
authors.workspace = true
repository.workspace = true
documentation.workspace = true
homepage.workspace = true
categories.workspace = true
license.workspace = true
description = "Low level access to HPMicro's RISC-V processors"
keywords = ["hpmicro", "hpm", "riscv"]
readme = "README.md"
[dependencies]
# andes-riscv = { version = "0.1.1", path = "../../andes-riscv" }
andes-riscv = "0.1.2"
hpm-riscv-rt-macros = { version = "0.1.2", path = "macros" }
[features]
default = []
hpm67-fix = []
single-hart = []
[package.metadata.docs.rs]
targets = ["riscv32imafc-unknown-none-elf"]