Open
Description
Description
Nixcpp doesn't fail to parse .nix
files that contain non-UTF8 characters, however rnix doesn't allow this (as you have to pass in a &str
, and you can't construct this from a non-UTF8 string)
Ideally we could pass any AsRef<[u8]>
. Things like the bstr
crate make this less annoying to interact with.
Considered alternatives
Explicitly documenting why it's a non-goal.