Skip to content
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

RFC First cut support for sandboxing procmacros with wasm #7297

Closed
wants to merge 2 commits into from

Commits on Aug 27, 2019

  1. WIP add HostSandbox/wasm_sandbox

    jsgf committed Aug 27, 2019
    Configuration menu
    Copy the full SHA
    30a01ed View commit details
    Browse the repository at this point in the history
  2. Use cdylib for wasm32 procmacros

    The rationale for this is that rustc doesn't support proc-macro as
    a crate type for wasm32, so use cdylib since its functioanlly
    equivalent to the crate type we'd want. But it doesn't work because
    a proc-macro crate also has language features that we still need
    to make available.
    jsgf committed Aug 27, 2019
    Configuration menu
    Copy the full SHA
    a2b0b3e View commit details
    Browse the repository at this point in the history