diff options
| author | Dario Nieuwenhuis <[email protected]> | 2020-09-22 18:03:43 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2020-09-22 18:03:43 +0200 |
| commit | 9a57deef9b531b8dae9d98a5accf5aeb128ab86d (patch) | |
| tree | b1e118334fc555167e72595dfb97982e5f9ca630 /examples/Cargo.toml | |
First commit
Diffstat (limited to 'examples/Cargo.toml')
| -rw-r--r-- | examples/Cargo.toml | 31 |
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] | ||
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2018" | ||
| 4 | name = "embassy-examples" | ||
| 5 | version = "0.1.0" | ||
| 6 | |||
| 7 | [features] | ||
| 8 | default = [ | ||
| 9 | "defmt-default", | ||
| 10 | ] | ||
| 11 | defmt-default = [] | ||
| 12 | defmt-trace = [] | ||
| 13 | defmt-debug = [] | ||
| 14 | defmt-info = [] | ||
| 15 | defmt-warn = [] | ||
| 16 | defmt-error = [] | ||
| 17 | |||
| 18 | |||
| 19 | [dependencies] | ||
| 20 | cortex-m = { version = "0.6.3" } | ||
| 21 | cortex-m-rt = "0.6.12" | ||
| 22 | defmt = "0.1.0" | ||
| 23 | embedded-hal = { version = "0.2.4" } | ||
| 24 | defmt-rtt = "0.1.0" | ||
| 25 | panic-probe = "0.1.0" | ||
| 26 | nrf52840-hal = { version = "0.11.0" } | ||
| 27 | embassy = { version = "0.1.0", path = "../embassy" } | ||
| 28 | embassy-nrf = { version = "0.1.0", path = "../embassy-nrf", features = ["defmt-trace", "nrf52840"] } | ||
| 29 | static-executor = { version = "0.1.0", features=["defmt"]} | ||
| 30 | static-executor-cortex-m = { version = "0.1.0" } | ||
| 31 | futures = { version = "0.3.5", default-features = false } | ||
