aboutsummaryrefslogtreecommitdiff
path: root/embassy-hal-internal/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-01-12 00:35:01 +0100
committerDario Nieuwenhuis <[email protected]>2024-01-12 00:39:01 +0100
commit4c23f197b3225e8165f07ddf66ab54f774c4212f (patch)
tree09f78edf2441ef1513e0f26ec5adddc2cf729b0a /embassy-hal-internal/Cargo.toml
parent6a1c415a4c731f06e5ebf6932bd53168d89152c9 (diff)
Fix invalid "async" crates.io category.
Diffstat (limited to 'embassy-hal-internal/Cargo.toml')
-rw-r--r--embassy-hal-internal/Cargo.toml10
1 files changed, 9 insertions, 1 deletions
diff --git a/embassy-hal-internal/Cargo.toml b/embassy-hal-internal/Cargo.toml
index 42e03199c..c5013f365 100644
--- a/embassy-hal-internal/Cargo.toml
+++ b/embassy-hal-internal/Cargo.toml
@@ -3,6 +3,14 @@ name = "embassy-hal-internal"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0" 5license = "MIT OR Apache-2.0"
6description = "Internal implementation details for Embassy HALs. DO NOT USE DIRECTLY."
7repository = "https://github.com/embassy-rs/embassy"
8documentation = "https://docs.embassy.dev/embassy-hal-internal"
9categories = [
10 "embedded",
11 "no-std",
12 "asynchronous",
13]
6 14
7[features] 15[features]
8 16
@@ -26,4 +34,4 @@ log = { version = "0.4.14", optional = true }
26num-traits = { version = "0.2.14", default-features = false } 34num-traits = { version = "0.2.14", default-features = false }
27 35
28cortex-m = { version = "0.7.6", optional = true } 36cortex-m = { version = "0.7.6", optional = true }
29critical-section = { version = "1", optional = true } \ No newline at end of file 37critical-section = { version = "1", optional = true }