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
td-rs-derive-py
td-rs-chop
Guessing this is the lack of hygiene in macros at work: Compiler complains about the use of undeclared module td_rs_chop when trying to derive PyOp.
td_rs_chop
PyOp
Workaround: adding td-rs-chop = { path = "../../../td-rs-chop", features = ["python"] } to the plugin fixes it
td-rs-chop = { path = "../../../td-rs-chop", features = ["python"] }
The text was updated successfully, but these errors were encountered:
relevant line: https://github.com/tychedelia/td-rs/blob/main/td-rs-derive-py/src/lib.rs#L238
Sorry, something went wrong.
No branches or pull requests
Guessing this is the lack of hygiene in macros at work: Compiler complains about the use of undeclared module
td_rs_chop
when trying to derivePyOp
.Workaround: adding
td-rs-chop = { path = "../../../td-rs-chop", features = ["python"] }
to the plugin fixes itThe text was updated successfully, but these errors were encountered: