wasi-libc 0.0~git20220510.9886d3d-2 source package in Ubuntu

Changelog

wasi-libc (0.0~git20220510.9886d3d-2) unstable; urgency=medium

  * d/copyright: add missing license info
  * bump Standards-Version to 4.6.1
  * bump debhelper compat to 13

 -- Fabian Gruenbichler <email address hidden>  Wed, 07 Dec 2022 19:57:26 +0100

Upload details

Uploaded by:
Rust Maintainers
Uploaded to:
Sid
Original maintainer:
Rust Maintainers
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
wasi-libc_0.0~git20220510.9886d3d-2.dsc 2.0 KiB 3405fb077e79bf9a3aba06b2523eefbd12079494649d511545a27b3e4f3d307c
wasi-libc_0.0~git20220510.9886d3d.orig.tar.xz 822.4 KiB 8f9b802736a856942839d32966937c389f46e9f156415a549a6675b7535e5f74
wasi-libc_0.0~git20220510.9886d3d-2.debian.tar.xz 6.8 KiB d29dd149f8e2cd8ac72952801a3b03ead259d90c164bf51c8aa0daf1cee64476

No changes file available.

Binary packages built by this source

wasi-libc: WASI libc implementation for WebAssembly

 This is a work in progress. It's usable for many purposes, though the APIs
 aren't stable yet. For example, this is used by the Rust compiler to build
 its standard library for the wasm32-wasi target.
 .
 First, it's a usable libc. It builds a "libc" which can be used by compilers,
 such as Clang 8.0, using the wasm32-wasi target. It's a work in progress, but
 it is already sufficient to run basic programs.
 .
 Second, it's a "reference" implementation, which means the interfaces defined
 here can be used by other tools and libraries, even if they don't use all the
 actual implementations here. For example, we don't expect everyone will want to
 use the exact malloc implementation provided here, but tools and libraries
 using an ABI-compatible malloc interface will be able to interoperate
 regardless of which actual implementation is used.
 .
 Third, it's an example showing the use of the WASI API. The libc functionality
 is implemented using calls to WASI functions.