File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
27
27
28
28
### Changed
29
29
30
+ - Code generated by roslibrust_codegen now depends only on libraries exposed by roslibrust_codegen. This means that
31
+ crates that were previously adding dependencies on serde, serde-big-array, and smart-default will no longer need to do so.
32
+
30
33
## 0.9.0 - May 13th, 2023
31
34
32
35
### Added
Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ pub use integral_types::*;
21
21
// so that crates using this crate don't need to add these dependencies themselves.
22
22
// Our generated code should find these exports.
23
23
// Modeled from: https://users.rust-lang.org/t/proc-macros-using-third-party-crate/42465/4
24
- pub use serde:: { de:: DeserializeOwned , Deserialize , Serialize } ;
25
24
pub use :: serde;
26
- pub use smart_default :: SmartDefault ;
25
+ pub use serde :: { de :: DeserializeOwned , Deserialize , Serialize } ;
27
26
pub use serde_big_array:: BigArray ;
27
+ pub use smart_default:: SmartDefault ;
28
28
29
29
/// Fundamental traits for message types this crate works with
30
30
/// This trait will be satisfied for any types generated with this crate's message_gen functionality
You can’t perform that action at this time.
0 commit comments