diff options
| author | Ulf Lilleengen <[email protected]> | 2021-12-10 12:46:41 +0100 |
|---|---|---|
| committer | Ulf Lilleengen <[email protected]> | 2021-12-10 12:46:41 +0100 |
| commit | e5d4d0952b78ef343f14205f5ebd3f1d7804f9e8 (patch) | |
| tree | 2286467ce8c28f8eb7858d4fd33863ac52b81f65 /docs/modules/ROOT/examples/basic/Cargo.toml | |
| parent | 9b01eed1956421dd7c0ad644f77e14a05ab92923 (diff) | |
Add doc-specific example and add it to CI
Diffstat (limited to 'docs/modules/ROOT/examples/basic/Cargo.toml')
| -rw-r--r-- | docs/modules/ROOT/examples/basic/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/modules/ROOT/examples/basic/Cargo.toml b/docs/modules/ROOT/examples/basic/Cargo.toml new file mode 100644 index 000000000..a683a28bf --- /dev/null +++ b/docs/modules/ROOT/examples/basic/Cargo.toml | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | [package] | ||
| 2 | authors = ["Dario Nieuwenhuis <[email protected]>"] | ||
| 3 | edition = "2018" | ||
| 4 | name = "embassy-basic-example" | ||
| 5 | version = "0.1.0" | ||
| 6 | |||
| 7 | [dependencies] | ||
| 8 | embassy = { version = "0.1.0", path = "../../../../embassy", features = ["defmt"] } | ||
| 9 | embassy-traits = { version = "0.1.0", path = "../../../../embassy-traits", features = ["defmt"] } | ||
| 10 | embassy-nrf = { version = "0.1.0", path = "../../../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote"] } | ||
| 11 | |||
| 12 | defmt = "0.3" | ||
| 13 | defmt-rtt = "0.3" | ||
| 14 | |||
| 15 | cortex-m = "0.7.3" | ||
| 16 | cortex-m-rt = "0.7.0" | ||
| 17 | embedded-hal = "0.2.6" | ||
| 18 | panic-probe = { version = "0.3", features = ["print-defmt"] } | ||
