wasm-tracing-allocator 0.1.1

A global allocator for Wasm that traces allocations and deallocations for debugging purposes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
steps:
  - script: |
      set -e
      curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUSTUP_TOOLCHAIN
      echo "##vso[task.setvariable variable=PATH;]$PATH:$HOME/.cargo/bin"
    env:
      RUSTUP_TOOLCHAIN: ${{parameters.rust_version}}
    displayName: Install Rust

  # All platforms.
  - script: |
        rustc -Vv
        cargo -V
    displayName: Query rust and cargo versions