* Migrate back to `std::` stylistically This commit moves away from idioms such as `alloc::` and `core::` as imports of standard data structures and types. Instead it migrates all crates to uniformly use `std::` for importing standard data structures and types. This also removes the `std` and `core` features from all crates to and removes any conditional checking for `feature = "std"` All of this support was previously added in #407 in an effort to make wasmtime/cranelift "`no_std` compatible". Unfortunately though this change comes at a cost: * The usage of `alloc` and `core` isn't idiomatic. Especially trying to dual between types like `HashMap` from `std` as well as from `hashbrown` causes imports to be surprising in some cases. * Unfortunately there was no CI check that crates were `no_std`, so none of them actually were. Many crates still imported from `std` or depended on crates that used `std`. It's important to note, however, that **this does not mean that wasmtime will not run in embedded environments**. The style of the code today and idioms aren't ready in Rust to support this degree of multiplexing and makes it somewhat difficult to keep up with the style of `wasmtime`. Instead it's intended that embedded runtime support will be added as necessary. Currently only `std` is necessary to build `wasmtime`, and platforms that natively need to execute `wasmtime` will need to use a Rust target that supports `std`. Note though that not all of `std` needs to be supported, but instead much of it could be configured off to return errors, and `wasmtime` would be configured to gracefully handle errors. The goal of this PR is to move `wasmtime` back to idiomatic usage of features/`std`/imports/etc and help development in the short-term. Long-term when platform concerns arise (if any) they can be addressed by moving back to `no_std` crates (but fixing the issues mentioned above) or ensuring that the target in Rust has `std` available. * Start filling out platform support doc
53 lines
1.6 KiB
TOML
53 lines
1.6 KiB
TOML
[package]
|
|
name = "wasmtime-environ"
|
|
version = "0.7.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "Standalone environment support for WebAsssembly code in Cranelift"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
documentation = "https://docs.rs/wasmtime-environ/"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
readme = "README.md"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
cranelift-codegen = { version = "0.50.0", features = ["enable-serde"] }
|
|
cranelift-entity = { version = "0.50.0", features = ["enable-serde"] }
|
|
cranelift-wasm = { version = "0.50.0", features = ["enable-serde"] }
|
|
wasmparser = "0.39.2"
|
|
lightbeam = { path = "../lightbeam", optional = true }
|
|
indexmap = "1.0.2"
|
|
rayon = "1.2"
|
|
thiserror = "1.0.4"
|
|
directories = "2.0.1"
|
|
sha2 = "0.8.0"
|
|
base64 = "0.11.0"
|
|
serde = { version = "1.0.94", features = ["derive"] }
|
|
bincode = "1.1.4"
|
|
lazy_static = "1.3.0"
|
|
spin = "0.5.0"
|
|
log = { version = "0.4.8", default-features = false }
|
|
zstd = "0.5"
|
|
toml = "0.5.5"
|
|
file-per-thread-logger = "0.1.1"
|
|
more-asserts = "0.2.1"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winapi = "0.3.7"
|
|
|
|
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
|
libc = "0.2.60"
|
|
errno = "0.2.4"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|
|
target-lexicon = { version = "0.9.0", default-features = false }
|
|
pretty_env_logger = "0.3.0"
|
|
rand = { version = "0.7.0", features = ["small_rng"] }
|
|
cranelift-codegen = { version = "0.50.0", features = ["enable-serde", "all-arch"] }
|
|
filetime = "0.2.7"
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|