-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (31 loc) · 1 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
[package]
name = "ruspiro-lock"
authors = ["André Borrmann <[email protected]>"]
version = "0.5.0" # remember to update html_root_url
description = """
Providing Spinlock, Semaphore and mutual exclusive data access for cross core
usage on Raspberry Pi.
"""
license = "MIT OR Apache-2.0"
repository = "https://github.com/RusPiRo/ruspiro-lock/tree/v||VERSION||"
documentation = "https://docs.rs/ruspiro-lock/||VERSION||"
readme = "README.md"
keywords = ["RusPiRo", "spinlock", "semaphore", "mutex", "rwlock"]
categories = ["no-std", "embedded"]
edition = "2021"
exclude = ["Makefile.toml", ".cargo/config.toml"]
[badges]
maintenance = { status = "actively-developed" }
[lib]
[dev-dependencies]
# to run async unit test cases
async-std = { version = "1.7.0", features = ["attributes", "unstable"] }
[dependencies]
[features]
async_locks = []
# ensure the required features of the crate are active for the doc.rs build
[package.metadata.docs.rs]
default-target = "aarch64-unknown-linux-gnu"
features = [
"async_locks"
]