aboutsummaryrefslogtreecommitdiff
path: root/examples/rp/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rp/Cargo.toml')
-rw-r--r--examples/rp/Cargo.toml32
1 files changed, 32 insertions, 0 deletions
diff --git a/examples/rp/Cargo.toml b/examples/rp/Cargo.toml
new file mode 100644
index 000000000..71b48129f
--- /dev/null
+++ b/examples/rp/Cargo.toml
@@ -0,0 +1,32 @@
1[package]
2authors = ["Dario Nieuwenhuis <[email protected]>"]
3edition = "2018"
4name = "embassy-rp-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]
20embassy = { version = "0.1.0", path = "../../embassy", features = ["defmt", "defmt-trace"] }
21embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["defmt", "defmt-trace"] }
22rp2040-pac2 = { git = "https://github.com/Dirbaio/rp2040-pac", rev="254f4677937801155ca3cb17c7bb9d38eb62683e" }
23atomic-polyfill = { version = "0.1.1" }
24
25defmt = "0.2.0"
26defmt-rtt = "0.2.0"
27
28cortex-m = { version = "0.7.1", features = ["inline-asm"] }
29cortex-m-rt = "0.6.13"
30embedded-hal = { version = "0.2.4" }
31panic-probe = { version = "0.2.0", features = ["print-defmt"] }
32futures = { version = "0.3.8", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }