0.0.6
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
forName
that allows comparison withstr
andString
directly.
Changed
- Renamed
Problem::goal
toProblem::goals
to reflect the fact that it is iterable. - If well-known names such as
object
ornumber
are used for aName
, these values will be interned to a'static str
.
Internal
- The
thiserror
dependency is now only brought in with theparser
crate feature. - Use string interning to reduce the number of allocations required for
Name
types. This is enabled by default through theinterning
crate feature.