File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,16 @@ edition = "2021"
7
7
[lib ]
8
8
path = " src/lib.rs"
9
9
10
+ # Please keep the list of dependencies alphabetically sorted,
11
+ # and also state why each dependency is needed.
10
12
[dependencies ]
13
+ # Needed for FFI
11
14
libc = " 0.2.43"
15
+ # Provides better concurrency primitives than std
12
16
parking_lot = " 0.11.2"
13
-
14
- [dependencies .rosidl_runtime_rs ]
15
- version = " *"
17
+ # Needed for the Message trait, among others
18
+ rosidl_runtime_rs = " *"
16
19
17
20
[build-dependencies ]
21
+ # Needed for FFI
18
22
bindgen = " 0.59.1"
Original file line number Diff line number Diff line change @@ -7,8 +7,12 @@ edition = "2021"
7
7
[lib ]
8
8
path = " src/lib.rs"
9
9
10
+ # Please keep the list of dependencies alphabetically sorted,
11
+ # and also state why each dependency is needed.
10
12
[dependencies ]
13
+ # Needed for FFI
11
14
libc = " 0.2"
12
15
13
16
[dev-dependencies ]
17
+ # Needed for writing property tests
14
18
quickcheck = " 1"
You can’t perform that action at this time.
0 commit comments