-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (28 loc) · 1014 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
[package]
name = "ruspiro-brain"
authors = ["Andre Borrmann <[email protected]>"]
version = "0.1.0" # remember to update html_root_url
description = """
The ``Brain`` provides the heart of the async "thinking" of a **RusPiRo** bare metal kernel for the
Raspberry Pi.
"""
license = "MIT OR Apache-2.0"
repository = "https://github.com/RusPiRo/ruspiro-brain/tree/v||VERSION||"
documentation = "https://docs.rs/ruspiro-brain/||VERSION||"
readme = "README.md"
keywords = ["RusPiRo", "baremetal", "raspberrypi", "brain", "async"]
categories = ["no-std", "embedded"]
edition = "2018"
exclude = [".travis.yml", "Makefile.toml"]
[badges]
travis-ci = { repository = "RusPiRo/ruspiro-brain", branch = "master" }
maintenance = { status = "actively-developed" }
[lib]
[dev-dependencies]
assert_matches = "1.4"
futures-util = { version = "0.3", default-features = false }
[dependencies]
ruspiro-singleton = "0.4"
ruspiro-lock = "0.4"
ruspiro-channel = { git = "https://github.com/RusPiRo/ruspiro-channel.git" }
[features]