* Start a high-level architecture document for Wasmtime This commit cleands up some existing documentation by removing a number of "noop README files" and starting a high-level overview of the architecture of Wasmtime. I've placed this documentation under the contributing section of the book since it seems most useful for possible contributors. I've surely left some things out in this pass, and am happy to add more! * Review comments * More rewording * typos
37 lines
1.1 KiB
TOML
37 lines
1.1 KiB
TOML
[package]
|
|
name = "wasmtime-profiling"
|
|
version = "0.28.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "Runtime library support for Wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
cfg-if = "1.0"
|
|
gimli = { version = "0.24.0", optional = true }
|
|
lazy_static = "1.4"
|
|
libc = { version = "0.2.60", default-features = false }
|
|
scroll = { version = "0.10.1", features = ["derive"], optional = true }
|
|
serde = { version = "1.0.99", features = ["derive"] }
|
|
target-lexicon = "0.12.0"
|
|
wasmtime-environ = { path = "../environ", version = "0.28.0" }
|
|
wasmtime-runtime = { path = "../runtime", version = "0.28.0" }
|
|
ittapi-rs = { version = "0.1.5", optional = true }
|
|
|
|
[dependencies.object]
|
|
version = "0.25.0"
|
|
optional = true
|
|
default-features = false
|
|
features = ['read_core', 'elf', 'std']
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[features]
|
|
jitdump = ['object', 'scroll', 'gimli']
|
|
vtune = ['ittapi-rs']
|