diff options
| author | Dario Nieuwenhuis <[email protected]> | 2024-01-11 22:47:05 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2024-01-11 23:01:24 +0100 |
| commit | f0606da9adc8032cc92c06c0661b385742459fc8 (patch) | |
| tree | ccff465740429fa86f3455312ae02eab1170f8d4 /embassy-executor/Cargo.toml | |
| parent | b3ab2d91f7ed48e6a377661e7e504cb0ae0091a3 (diff) | |
time: split queue driver too, don't reexport drivers.
Diffstat (limited to 'embassy-executor/Cargo.toml')
| -rw-r--r-- | embassy-executor/Cargo.toml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml index c71452398..da3c9a4fc 100644 --- a/embassy-executor/Cargo.toml +++ b/embassy-executor/Cargo.toml | |||
| @@ -33,7 +33,8 @@ log = { version = "0.4.14", optional = true } | |||
| 33 | rtos-trace = { version = "0.1.2", optional = true } | 33 | rtos-trace = { version = "0.1.2", optional = true } |
| 34 | 34 | ||
| 35 | embassy-executor-macros = { version = "0.4.0", path = "../embassy-executor-macros" } | 35 | embassy-executor-macros = { version = "0.4.0", path = "../embassy-executor-macros" } |
| 36 | embassy-time = { version = "0.2", path = "../embassy-time", optional = true} | 36 | embassy-time-driver = { version = "0.1.0", path = "../embassy-time-driver", optional = true } |
| 37 | embassy-time-queue-driver = { version = "0.1.0", path = "../embassy-time-queue-driver", optional = true } | ||
| 37 | critical-section = "1.1" | 38 | critical-section = "1.1" |
| 38 | 39 | ||
| 39 | document-features = "0.2.7" | 40 | document-features = "0.2.7" |
| @@ -63,8 +64,8 @@ nightly = ["embassy-executor-macros/nightly"] | |||
| 63 | # See: https://github.com/embassy-rs/embassy/pull/1263 | 64 | # See: https://github.com/embassy-rs/embassy/pull/1263 |
| 64 | turbowakers = [] | 65 | turbowakers = [] |
| 65 | 66 | ||
| 66 | ## Use timers from `embassy-time` | 67 | ## Use the executor-integrated `embassy-time` timer queue. |
| 67 | integrated-timers = ["dep:embassy-time"] | 68 | integrated-timers = ["dep:embassy-time-driver", "dep:embassy-time-queue-driver"] |
| 68 | 69 | ||
| 69 | #! ### Architecture | 70 | #! ### Architecture |
| 70 | _arch = [] # some arch was picked | 71 | _arch = [] # some arch was picked |
| @@ -177,4 +178,4 @@ task-arena-size-1048576 = [] | |||
| 177 | 178 | ||
| 178 | # END AUTOGENERATED CONFIG FEATURES | 179 | # END AUTOGENERATED CONFIG FEATURES |
| 179 | 180 | ||
| 180 | #! </details> \ No newline at end of file | 181 | #! </details> |
