Skip to content

Commit a1654ff

Browse files
onur-ozkanpatrickelectric
authored andcommitted
re-order dependencies by ascending order
Signed-off-by: Onur Özkan <work@onurozkan.dev>
1 parent 22d55cb commit a1654ff

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

mavlink-core/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,22 +17,22 @@ edition.workspace = true
1717
rust-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 }
2122
byteorder = { 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 }
2424
embedded-hal-02 = { version = "0.2", optional = true, package = "embedded-hal" }
2525
embedded-io = { version = "0.6.1", optional = true }
2626
embedded-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"] }
2730
serde = { version = "1.0.115", optional = true, features = ["derive"] }
2831
serde_arrays = { version = "0.2.0", optional = true }
2932
serialport = { 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 }
3133
sha2 = { 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 }
3335
tokio-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]
3838
default = ["std", "tcp", "udp", "direct-serial", "serde"]

0 commit comments

Comments
 (0)