@@ -17,22 +17,22 @@ edition.workspace = true
1717rust-version.workspace = true
1818
1919[dependencies ]
20- crc-any = { workspace = true , default-features = false }
20+ arbitrary = { version = " 1.4" , optional = true , features = [" derive" ] }
21+ async-trait = { version = " 0.1.18" , optional = true }
2122byteorder = { workspace = true , default-features = false }
22- futures = { version = " 0.3" , default-features = false , optional = true }
23- nb = { version = " 1.0" , optional = true }
23+ crc-any = { workspace = true , default-features = false }
2424embedded-hal-02 = { version = " 0.2" , optional = true , package = " embedded-hal" }
2525embedded-io = { version = " 0.6.1" , optional = true }
2626embedded-io-async = { version = " 0.6.1" , optional = true }
27+ futures = { version = " 0.3" , default-features = false , optional = true }
28+ nb = { version = " 1.0" , optional = true }
29+ rand = { version = " 0.9" , optional = true , default-features = false , features = [" std" , " std_rng" ] }
2730serde = { version = " 1.0.115" , optional = true , features = [" derive" ] }
2831serde_arrays = { version = " 0.2.0" , optional = true }
2932serialport = { version = " 4.7.2" , default-features = false , optional = true }
30- tokio = { version = " 1.0" , default-features = false , features = [" io-util" , " net" , " sync" , " fs" ], optional = true }
3133sha2 = { version = " 0.10" , optional = true }
32- async-trait = { version = " 0.1.18 " , optional = true }
34+ tokio = { version = " 1.0 " , default-features = false , features = [ " io-util " , " net " , " sync " , " fs " ] , optional = true }
3335tokio-serial = { version = " 5.4.4" , default-features = false , optional = true }
34- arbitrary = { version = " 1.4" , optional = true , features = [" derive" ] }
35- rand = { version = " 0.9" , optional = true , default-features = false , features = [" std" , " std_rng" ] }
3636
3737[features ]
3838default = [" std" , " tcp" , " udp" , " direct-serial" , " serde" ]
0 commit comments