-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
22 lines (21 loc) · 856 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
[package]
name = "plic"
description = "Provide structs and methods to operate riscv plic device."
version = "0.0.2"
edition = "2021"
authors = ["YdrMaster <[email protected]>", "Luo Jia <[email protected]>"]
repository = "https://github.com/YdrMaster/plic.git"
documentation = "https://docs.rs/plic"
license = "MulanPSL-2.0 OR MIT"
readme = "README.md"
keywords = ["riscv"]
categories = ["embedded", "hardware-support", "no-std"]
[features]
default = []
# Implement plic traits for integer types
#
# By using this feature, parameter types of plic functions fall back to integers,
# static type checks are disabled so this library won't detect parameters in incorrect orders.
# Although some people may find it userul in prototyping plic implementations,
# users of this crate are strongly encouraged not to enable this feature in production.
primitive-id = []