aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-07-24 22:50:54 +0000
committerGitHub <[email protected]>2025-07-24 22:50:54 +0000
commit3842654b2237e31e46a9dd5a4465b3bf1540659b (patch)
treee39f4bc058246ed20810a428712d798e7d5a5b2a
parent9381c35e9dc2d8ff1fc287b1605362e28ec16a25 (diff)
parent3329089412e3ab367893eb975d611be49c8f5c5d (diff)
Merge pull request #4455 from embassy-rs/eeh-time-no-default
embassy-embedded-hal: make time feature non-default
-rwxr-xr-xci.sh2
-rw-r--r--embassy-embedded-hal/Cargo.toml1
2 files changed, 2 insertions, 1 deletions
diff --git a/ci.sh b/ci.sh
index 94f70aae8..f4db1da03 100755
--- a/ci.sh
+++ b/ci.sh
@@ -40,6 +40,8 @@ cargo batch \
40 --- build --release --manifest-path embassy-executor/Cargo.toml --target armv7r-none-eabihf --features arch-cortex-ar,executor-thread \ 40 --- build --release --manifest-path embassy-executor/Cargo.toml --target armv7r-none-eabihf --features arch-cortex-ar,executor-thread \
41 --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features arch-riscv32 \ 41 --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features arch-riscv32 \
42 --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features arch-riscv32,executor-thread \ 42 --- build --release --manifest-path embassy-executor/Cargo.toml --target riscv32imac-unknown-none-elf --features arch-riscv32,executor-thread \
43 --- build --release --manifest-path embassy-embedded-hal/Cargo.toml --target thumbv7em-none-eabi \
44 --- build --release --manifest-path embassy-embedded-hal/Cargo.toml --target thumbv7em-none-eabi --features time \
43 --- build --release --manifest-path embassy-sync/Cargo.toml --target thumbv6m-none-eabi --features defmt \ 45 --- build --release --manifest-path embassy-sync/Cargo.toml --target thumbv6m-none-eabi --features defmt \
44 --- build --release --manifest-path embassy-time/Cargo.toml --target thumbv6m-none-eabi --features defmt,defmt-timestamp-uptime,mock-driver \ 46 --- build --release --manifest-path embassy-time/Cargo.toml --target thumbv6m-none-eabi --features defmt,defmt-timestamp-uptime,mock-driver \
45 --- build --release --manifest-path embassy-time-queue-utils/Cargo.toml --target thumbv6m-none-eabi \ 47 --- build --release --manifest-path embassy-time-queue-utils/Cargo.toml --target thumbv6m-none-eabi \
diff --git a/embassy-embedded-hal/Cargo.toml b/embassy-embedded-hal/Cargo.toml
index aab6e0f1e..8277aa291 100644
--- a/embassy-embedded-hal/Cargo.toml
+++ b/embassy-embedded-hal/Cargo.toml
@@ -19,7 +19,6 @@ target = "x86_64-unknown-linux-gnu"
19 19
20[features] 20[features]
21time = ["dep:embassy-time"] 21time = ["dep:embassy-time"]
22default = ["time"]
23 22
24[dependencies] 23[dependencies]
25embassy-hal-internal = { version = "0.3.0", path = "../embassy-hal-internal" } 24embassy-hal-internal = { version = "0.3.0", path = "../embassy-hal-internal" }