aboutsummaryrefslogtreecommitdiff
path: root/embassy-net/Cargo.toml
diff options
context:
space:
mode:
authorskkeye <[email protected]>2025-02-09 01:06:04 -0500
committerUlf Lilleengen <[email protected]>2025-02-13 10:27:30 +0100
commit74c1fd64d218c3ac5d1ab7a2c1155a87e4169150 (patch)
tree0fec915e2bc962669da9e190b6b14ecd978abaac /embassy-net/Cargo.toml
parentf54ba5a48e8783c673488c9107a3549ec35bd45e (diff)
embassy-net: add ICMP sockets and a ping utility
Diffstat (limited to 'embassy-net/Cargo.toml')
-rw-r--r--embassy-net/Cargo.toml2
1 files changed, 2 insertions, 0 deletions
diff --git a/embassy-net/Cargo.toml b/embassy-net/Cargo.toml
index a0827d96b..eda372cb6 100644
--- a/embassy-net/Cargo.toml
+++ b/embassy-net/Cargo.toml
@@ -33,6 +33,8 @@ packet-trace = []
33#! the [smoltcp feature flag documentation](https://github.com/smoltcp-rs/smoltcp#feature-flags) 33#! the [smoltcp feature flag documentation](https://github.com/smoltcp-rs/smoltcp#feature-flags)
34#! for more details 34#! for more details
35 35
36## Enable ICMP support
37icmp = ["smoltcp/socket-icmp"]
36## Enable UDP support 38## Enable UDP support
37udp = ["smoltcp/socket-udp"] 39udp = ["smoltcp/socket-udp"]
38## Enable Raw support 40## Enable Raw support