Files
wasmtime/crates/profiling/Cargo.toml
Alex Crichton 5e08eb3b83 Bump wasmtime to 0.20.0 (#2222)
At the same time bump cranelift crates to 0.67.0
2020-09-23 13:54:02 -05:00

38 lines
1.1 KiB
TOML

[package]
name = "wasmtime-profiling"
version = "0.20.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"
readme = "README.md"
edition = "2018"
[dependencies]
anyhow = "1.0"
cfg-if = "0.1"
gimli = { version = "0.21.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.11.0"
wasmtime-environ = { path = "../environ", version = "0.20.0" }
wasmtime-runtime = { path = "../runtime", version = "0.20.0" }
ittapi-rs = { version = "0.1.5", optional = true }
[dependencies.object]
version = "0.19.0"
optional = true
default-features = false
features = ['read_core', 'elf', 'std']
[badges]
maintenance = { status = "actively-developed" }
[features]
jitdump = ['object', 'scroll', 'gimli']
vtune = ['ittapi-rs']