We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gsdtool
It seems rather common that PrmText values actually do not fit into the limits imposed by a ExtUserPrmData definition.
PrmText
ExtUserPrmData
Right now, gsdtool simply panics in this situation with a message like:
thread 'main' panicked at gsd-parser/src/lib.rs:214:17: value 3 not in range 7..=7
Instead we should probably simply issue a warning and opt to continue anyway...
Alternatively, we might want to filter the PrmText for values that are actually allowed. Not sure how others are handling this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems rather common that
PrmText
values actually do not fit into the limits imposed by aExtUserPrmData
definition.Right now,
gsdtool
simply panics in this situation with a message like:Instead we should probably simply issue a warning and opt to continue anyway...
Alternatively, we might want to filter the
PrmText
for values that are actually allowed. Not sure how others are handling this?The text was updated successfully, but these errors were encountered: