-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
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
Improve ergonomics when dealing with glob
s.
#4
Comments
Uh oh, the other guy finding it prohibitively difficult isn't a good sign... I'll give it a shot but no guarantees... |
Another use case for this is for hard-coded let flatbuffers = &[
"buffer1.fbs",
"buferfer.fbs",
];
let args_rs = flatc_rust::Args {
lang: "rust",
inputs: flatbuffers,
..Default::default()
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would it be possible to change
flatc_rust::Args.inputs
to accept things of typeAsRef<Path>
instead of regularPath
? That way it could acceptPathBuf
s as well, which would make it easier to get it to interact with theglob
crate.Would it be easy enough that a intermediate Rustacean might be able to send you a PR?
The text was updated successfully, but these errors were encountered: