aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-02-03 04:30:20 +0100
committerDario Nieuwenhuis <[email protected]>2021-02-03 04:30:20 +0100
commitc8a79c151ac0a4bd5a10ba47e0b487bb26110347 (patch)
treea50a21ed716c9fa8011639b128d4b849522cd757 /Cargo.toml
parent4192e526298eb02c32727c765ae6d7ad4f933e2b (diff)
Test embassy-std builds in CI
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3e036b610..eab6402aa 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,8 +9,11 @@ members = [
9 "embassy-macros", 9 "embassy-macros",
10] 10]
11 11
12# embassy-std enables std-only features. Since Cargo resolves all features
13# for all crates in the workspace together, including it would result in
14# incompatible features enabled in embassy.
12exclude = [ 15exclude = [
13 "third_party" 16 "embassy-std"
14] 17]
15 18
16[profile.dev] 19[profile.dev]