Skip to content

Commit

Permalink
Merge pull request #153 from Carter12s/increase-genmsg-deps
Browse files Browse the repository at this point in the history
Increasing gen message dependencies
  • Loading branch information
Carter12s authored Apr 30, 2024
2 parents 90ff4ce + bcdc8d6 commit 1753de6
Show file tree
Hide file tree
Showing 3 changed files with 139 additions and 22 deletions.
151 changes: 134 additions & 17 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions roslibrust_genmsg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ path = "src/main.rs"

[dependencies]
clap = { version = "4.1", features = ["derive"] }
env_logger = "0.10"
itertools = "0.10"
env_logger = "0.11"
itertools = "0.12"
lazy_static = "1.4"
log = "0.4"
minijinja = "0.30"
minijinja = "2.0"
roslibrust_codegen = { path = "../roslibrust_codegen" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
4 changes: 2 additions & 2 deletions roslibrust_genmsg/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn prepare_environment<'a>(
Some(native_type) => native_type.clone(),
None => ros_type.to_string(),
};
Value::from_serializable(&typename)
Value::from_serialize(&typename)
});
}
env.add_template("message", message_template).unwrap();
Expand Down Expand Up @@ -104,5 +104,5 @@ pub fn fixed_size_array_size(value: Value) -> Value {
} else {
0
};
Value::from_serializable(&fixed_size)
Value::from_serialize(&fixed_size)
}

0 comments on commit 1753de6

Please sign in to comment.