aboutsummaryrefslogtreecommitdiff
path: root/embassy-usb/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-09-26 12:29:27 +0200
committerDario Nieuwenhuis <[email protected]>2022-09-26 12:29:27 +0200
commit7f7c14b7bce5b84eb27c8122535a96a6f0e5dd77 (patch)
treec7481fd07b616128718301de7aafea553cc8dd6f /embassy-usb/Cargo.toml
parenta9efbf18c62186de0581ec72cca90a69340a02a3 (diff)
usb: split driver trait to separate crate.
Diffstat (limited to 'embassy-usb/Cargo.toml')
-rw-r--r--embassy-usb/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/embassy-usb/Cargo.toml b/embassy-usb/Cargo.toml
index 8cad4d314..660ecc8cc 100644
--- a/embassy-usb/Cargo.toml
+++ b/embassy-usb/Cargo.toml
@@ -9,8 +9,12 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-usb/s
9features = ["defmt"] 9features = ["defmt"]
10target = "thumbv7em-none-eabi" 10target = "thumbv7em-none-eabi"
11 11
12[features]
13defmt = ["dep:defmt", "embassy-usb-driver/defmt"]
14
12[dependencies] 15[dependencies]
13embassy-futures = { version = "0.1.0", path = "../embassy-futures" } 16embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
17embassy-usb-driver = { version = "0.1.0", path = "../embassy-usb-driver" }
14 18
15defmt = { version = "0.3", optional = true } 19defmt = { version = "0.3", optional = true }
16log = { version = "0.4.14", optional = true } 20log = { version = "0.4.14", optional = true }