I have a proc-macro that uses a crate which will not compile for WASM. Its expansion does not rely on the crate at all, it just results in a string literal. I want to use the macro in a WASM project im building. I would assume that because the proc-macro only runs on my machine at build time, it doesn't need to be a dependency when building for WASM? What is the best way of going about this?
#Dependency only for proc-macros
6 messages · Page 1 of 1 (latest)
~~