Skip to content

0.0.6

Compare
Choose a tag to compare
@sunsided sunsided released this 07 May 15:17
· 23 commits to main since this release
bd1381f

pddl/0.0.6

To use it in your project, add:

[dependencies]
pddl = "0.0.6"

Changes since 0.0.5

Added

  • Added a PartialEq for Name that allows comparison with str and String directly.

Changed

  • Renamed Problem::goal to Problem::goals to reflect the fact that it is iterable.
  • If well-known names such as object or number are used for a Name, these values will be interned to a 'static str.

Internal

  • The thiserror dependency is now only brought in with the parser crate feature.
  • Use string interning to reduce the number of allocations required for Name types. This is enabled by default through the interning crate feature.