summaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/examples/layer-by-layer
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-10-07 11:15:14 +0000
committerGitHub <noreply@github.com>2022-10-07 11:15:14 +0000
commitf8fd6ab208fd09142ab9789078e9b23ba8c3e6a9 (patch)
tree009bb315252a00453cd919b5e6d633f71532e8b1 /docs/modules/ROOT/examples/layer-by-layer
parentd49d1b6b1cf6de9577816397db3c41f6e93aa4e6 (diff)
parent6718ca3a9412c9fbd5f1161b1123664024ffbe37 (diff)
downloadembassy-f8fd6ab208fd09142ab9789078e9b23ba8c3e6a9.zip
Merge #1003
1003: all Cargo.toml: Add license to all crate Cargo.toml files r=lulf a=chrysn This sets the license to "MIT OR Apache-2.0" in a machine readable form on all crates, as it was already in human readable form in the README.md file, and reaffirmed in #1002. (The statements on all the individual examples might not be strictly essential for the `cargo deny` use case as they are leaf crates, but other tools might use that information). Co-authored-by: chrysn <chrysn@fsfe.org>
Diffstat (limited to 'docs/modules/ROOT/examples/layer-by-layer')
-rw-r--r--docs/modules/ROOT/examples/layer-by-layer/blinky-async/Cargo.toml1
-rw-r--r--docs/modules/ROOT/examples/layer-by-layer/blinky-hal/Cargo.toml1
-rw-r--r--docs/modules/ROOT/examples/layer-by-layer/blinky-irq/Cargo.toml1
-rw-r--r--docs/modules/ROOT/examples/layer-by-layer/blinky-pac/Cargo.toml1
4 files changed, 4 insertions, 0 deletions
diff --git a/docs/modules/ROOT/examples/layer-by-layer/blinky-async/Cargo.toml b/docs/modules/ROOT/examples/layer-by-layer/blinky-async/Cargo.toml
index e2933076..c9a963d4 100644
--- a/docs/modules/ROOT/examples/layer-by-layer/blinky-async/Cargo.toml
+++ b/docs/modules/ROOT/examples/layer-by-layer/blinky-async/Cargo.toml
@@ -2,6 +2,7 @@
name = "blinky-async"
version = "0.1.0"
edition = "2021"
+license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7"
diff --git a/docs/modules/ROOT/examples/layer-by-layer/blinky-hal/Cargo.toml b/docs/modules/ROOT/examples/layer-by-layer/blinky-hal/Cargo.toml
index dbd3aba8..f86361dd 100644
--- a/docs/modules/ROOT/examples/layer-by-layer/blinky-hal/Cargo.toml
+++ b/docs/modules/ROOT/examples/layer-by-layer/blinky-hal/Cargo.toml
@@ -2,6 +2,7 @@
name = "blinky-hal"
version = "0.1.0"
edition = "2021"
+license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7"
diff --git a/docs/modules/ROOT/examples/layer-by-layer/blinky-irq/Cargo.toml b/docs/modules/ROOT/examples/layer-by-layer/blinky-irq/Cargo.toml
index 0dd32601..9733658b 100644
--- a/docs/modules/ROOT/examples/layer-by-layer/blinky-irq/Cargo.toml
+++ b/docs/modules/ROOT/examples/layer-by-layer/blinky-irq/Cargo.toml
@@ -2,6 +2,7 @@
name = "blinky-irq"
version = "0.1.0"
edition = "2021"
+license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7"
diff --git a/docs/modules/ROOT/examples/layer-by-layer/blinky-pac/Cargo.toml b/docs/modules/ROOT/examples/layer-by-layer/blinky-pac/Cargo.toml
index e7f4f5d1..a077f182 100644
--- a/docs/modules/ROOT/examples/layer-by-layer/blinky-pac/Cargo.toml
+++ b/docs/modules/ROOT/examples/layer-by-layer/blinky-pac/Cargo.toml
@@ -2,6 +2,7 @@
name = "blinky-pac"
version = "0.1.0"
edition = "2021"
+license = "MIT OR Apache-2.0"
[dependencies]
cortex-m = "0.7"