diff options
| author | Dario Nieuwenhuis <[email protected]> | 2022-09-26 12:29:27 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2022-09-26 12:29:27 +0200 |
| commit | 7f7c14b7bce5b84eb27c8122535a96a6f0e5dd77 (patch) | |
| tree | c7481fd07b616128718301de7aafea553cc8dd6f /embassy-usb/Cargo.toml | |
| parent | a9efbf18c62186de0581ec72cca90a69340a02a3 (diff) | |
usb: split driver trait to separate crate.
Diffstat (limited to 'embassy-usb/Cargo.toml')
| -rw-r--r-- | embassy-usb/Cargo.toml | 4 |
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 | |||
| 9 | features = ["defmt"] | 9 | features = ["defmt"] |
| 10 | target = "thumbv7em-none-eabi" | 10 | target = "thumbv7em-none-eabi" |
| 11 | 11 | ||
| 12 | [features] | ||
| 13 | defmt = ["dep:defmt", "embassy-usb-driver/defmt"] | ||
| 14 | |||
| 12 | [dependencies] | 15 | [dependencies] |
| 13 | embassy-futures = { version = "0.1.0", path = "../embassy-futures" } | 16 | embassy-futures = { version = "0.1.0", path = "../embassy-futures" } |
| 17 | embassy-usb-driver = { version = "0.1.0", path = "../embassy-usb-driver" } | ||
| 14 | 18 | ||
| 15 | defmt = { version = "0.3", optional = true } | 19 | defmt = { version = "0.3", optional = true } |
| 16 | log = { version = "0.4.14", optional = true } | 20 | log = { version = "0.4.14", optional = true } |
