aboutsummaryrefslogtreecommitdiff
path: root/examples/std
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-10-07 11:15:14 +0000
committerGitHub <[email protected]>2022-10-07 11:15:14 +0000
commitf8fd6ab208fd09142ab9789078e9b23ba8c3e6a9 (patch)
tree009bb315252a00453cd919b5e6d633f71532e8b1 /examples/std
parentd49d1b6b1cf6de9577816397db3c41f6e93aa4e6 (diff)
parent6718ca3a9412c9fbd5f1161b1123664024ffbe37 (diff)
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 <[email protected]>
Diffstat (limited to 'examples/std')
-rw-r--r--examples/std/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml
index dbfd9d625..b9bd1e718 100644
--- a/examples/std/Cargo.toml
+++ b/examples/std/Cargo.toml
@@ -2,6 +2,7 @@
2edition = "2021" 2edition = "2021"
3name = "embassy-std-examples" 3name = "embassy-std-examples"
4version = "0.1.0" 4version = "0.1.0"
5license = "MIT OR Apache-2.0"
5 6
6[dependencies] 7[dependencies]
7embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["log"] } 8embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["log"] }