aboutsummaryrefslogtreecommitdiff
path: root/examples/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2020-09-22 18:03:43 +0200
committerDario Nieuwenhuis <[email protected]>2020-09-22 18:03:43 +0200
commit9a57deef9b531b8dae9d98a5accf5aeb128ab86d (patch)
treeb1e118334fc555167e72595dfb97982e5f9ca630 /examples/Cargo.toml
First commit
Diffstat (limited to 'examples/Cargo.toml')
-rw-r--r--examples/Cargo.toml31
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/Cargo.toml b/examples/Cargo.toml
new file mode 100644
index 000000000..c243691a7
--- /dev/null
+++ b/examples/Cargo.toml
@@ -0,0 +1,31 @@
1[package]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2018"
4name = "embassy-examples"
5version = "0.1.0"
6
7[features]
8default = [
9 "defmt-default",
10]
11defmt-default = []
12defmt-trace = []
13defmt-debug = []
14defmt-info = []
15defmt-warn = []
16defmt-error = []
17
18
19[dependencies]
20cortex-m = { version = "0.6.3" }
21cortex-m-rt = "0.6.12"
22defmt = "0.1.0"
23embedded-hal = { version = "0.2.4" }
24defmt-rtt = "0.1.0"
25panic-probe = "0.1.0"
26nrf52840-hal = { version = "0.11.0" }
27embassy = { version = "0.1.0", path = "../embassy" }
28embassy-nrf = { version = "0.1.0", path = "../embassy-nrf", features = ["defmt-trace", "nrf52840"] }
29static-executor = { version = "0.1.0", features=["defmt"]}
30static-executor-cortex-m = { version = "0.1.0" }
31futures = { version = "0.3.5", default-features = false }