You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a few pkl types that haven't been implemented. I think most of these could be represented by the type system or creating a struct for them. Will also need to add deserializers for these types
DURATION => std::time::Duration
DATA_SIZE => rpkl::value::DataSize
PAIR => tuple with 2 elements
This causes PklValue to have infinite size (fixed by storing in a Box)
INT_SEQ => std::ops::Range<i64>
REGEX => added Regex(String) variant to PklValue/Value TYPE_ALIAS => doesn't appear in the evaluated module response, so this can be ignored
There's a few pkl types that haven't been implemented. I think most of these could be represented by the type system or creating a struct for them. Will also need to add deserializers for these types
DURATION
=>std::time::Duration
DATA_SIZE
=>rpkl::value::DataSize
PAIR
=> tuple with 2 elementsPklValue
to have infinite size (fixed by storing in aBox
)INT_SEQ
=>std::ops::Range<i64>
REGEX
=> addedRegex(String)
variant toPklValue
/Value
TYPE_ALIAS
=> doesn't appear in the evaluated module response, so this can be ignoredThese should be added as variants to PklValue.
The text was updated successfully, but these errors were encountered: