diff --git a/examples/coap-client/Cargo.toml b/examples/coap-client/Cargo.toml index e738d5fc6..111760548 100644 --- a/examples/coap-client/Cargo.toml +++ b/examples/coap-client/Cargo.toml @@ -9,7 +9,7 @@ workspace = true [dependencies] heapless = { workspace = true } -ariel-os = { path = "../../src/ariel-os", features = ["coap"] } +ariel-os = { path = "../../src/ariel-os" } ariel-os-boards = { path = "../../src/ariel-os-boards" } embedded-nal-coap = { workspace = true } coap-request = "0.2.0-alpha.2" diff --git a/examples/coap-server/Cargo.toml b/examples/coap-server/Cargo.toml index 7ef1deb79..9afecd741 100644 --- a/examples/coap-server/Cargo.toml +++ b/examples/coap-server/Cargo.toml @@ -10,7 +10,7 @@ workspace = true [dependencies] embassy-sync = { workspace = true } heapless = { workspace = true } -ariel-os = { path = "../../src/ariel-os", features = ["coap"] } +ariel-os = { path = "../../src/ariel-os" } ariel-os-boards = { path = "../../src/ariel-os-boards" } coap-message = "0.3.2" coap-message-demos = { version = "0.4.0", default-features = false } diff --git a/laze-project.yml b/laze-project.yml index 42961fe19..3a4695fbb 100644 --- a/laze-project.yml +++ b/laze-project.yml @@ -769,6 +769,10 @@ modules: depends: - random - network + env: + global: + FEATURES: + - ariel-os/coap - name: coap-server help: Support for applications to set up own CoAP server handlers. diff --git a/tests/coap-blinky/Cargo.toml b/tests/coap-blinky/Cargo.toml index 7b68068d8..cd9a56518 100644 --- a/tests/coap-blinky/Cargo.toml +++ b/tests/coap-blinky/Cargo.toml @@ -8,7 +8,7 @@ publish = false workspace = true [dependencies] -ariel-os = { path = "../../src/ariel-os", features = ["coap", "udp"] } +ariel-os = { path = "../../src/ariel-os" } ariel-os-boards = { path = "../../src/ariel-os-boards" } coap-handler-implementations = "0.5.0" diff --git a/tests/coap/Cargo.toml b/tests/coap/Cargo.toml index cff10dd54..df358bdd2 100644 --- a/tests/coap/Cargo.toml +++ b/tests/coap/Cargo.toml @@ -10,7 +10,7 @@ workspace = true [dependencies] embassy-sync = { workspace = true } heapless = { workspace = true } -ariel-os = { path = "../../src/ariel-os", features = ["coap", "udp"] } +ariel-os = { path = "../../src/ariel-os" } ariel-os-boards = { path = "../../src/ariel-os-boards" } embassy-futures = "0.1.1" embedded-nal-coap = { workspace = true }