aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/Cargo.toml
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-11-23 13:21:59 +0000
committerGitHub <[email protected]>2022-11-23 13:21:59 +0000
commita4f9e7cbcc8cb3ff679b4677a85a06d514b0c465 (patch)
treeacb48252c134b900eca51299995e84a95fbd0cd3 /embassy-executor/Cargo.toml
parentde95ab264d8ee2bf5ba9c3615ecb1b44e3940694 (diff)
parent04a7d976733e021395ff26e26dfa983e67b773a0 (diff)
Merge #1071
1071: refactor: autodetect macro variant r=Dirbaio a=lulf Apply heuristics using target_arch, target_os and target_family to determine which variant of the entry point to use. Co-authored-by: Ulf Lilleengen <[email protected]>
Diffstat (limited to 'embassy-executor/Cargo.toml')
-rw-r--r--embassy-executor/Cargo.toml5
1 files changed, 2 insertions, 3 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index 45b0955bf..6fa1dd7fb 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -29,9 +29,8 @@ flavors = [
29 29
30[features] 30[features]
31default = [] 31default = []
32std = ["embassy-macros/std", "critical-section/std"] 32std = ["critical-section/std"]
33wasm = ["dep:wasm-bindgen", "dep:js-sys", "embassy-macros/wasm"] 33wasm = ["dep:wasm-bindgen", "dep:js-sys"]
34riscv = ["embassy-macros/riscv"]
35 34
36# Enable nightly-only features 35# Enable nightly-only features
37nightly = [] 36nightly = []