Robert Serrano Kobylyansky
Robert Serrano Kobylyansky
#170 Could this be related?
I've just had the same idea. An option would be to create files in workspace root and then have a command to "Archive" all files in workspace root to a...
I've done a python script working as a bridge between the telemachus api and a custom openmct server. Not exactly what you're looking for, but I've got experience working with...
Actually, it seems like this is an issue with [cargo-ament-build](https://github.com/ros2-rust/cargo-ament-build/tree/main) It uses `cargo-manifest = "0.2"`. https://github.com/ros2-rust/cargo-ament-build/blob/7529850228880b2f01f57420b40e5624a256ec7d/Cargo.toml#L17C1-L17C23 However, support for the 2024 edition in the manifest parses was added in version...
Maybe there is a misunderstanding, The issue is that cargo-ament-build is using version 0.2 of cargo-manifest which doesn't have support for parsing edition="2024". Version 0.17 added support for it. So...
Correct
I think adding a comparison for `[` or `]` should be fine. ```cs return remappedName.Contains('*', StringComparison.Ordinal) || remappedName.Contains(']', StringComparison.Ordinal); ```
With Python 3.13 I was getting the same error on Windows. Downgraded to 3.11 and it worked.