Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/core/Cargo.toml
3070 views
1
[package]
2
authors.workspace = true
3
description = "INTERNAL: Wasmtime's core utilities and helpers with minimal dependencies"
4
edition.workspace = true
5
license = "Apache-2.0 WITH LLVM-exception"
6
name = "wasmtime-internal-core"
7
rust-version.workspace = true
8
version.workspace = true
9
10
[dependencies]
11
# This crate should have *very* minimal dependencies! Don't add new ones
12
# lightly.
13
anyhow = { workspace = true, optional = true }
14
libm = { workspace = true }
15
hashbrown = { workspace = true, features = ["default-hasher"] }
16
17
[lints]
18
workspace = true
19
20
[features]
21
# Enable the use of the `std` crate.
22
std = []
23
# Enable backtraces in errors.
24
backtrace = ["std"]
25
# Enable the `From<Error> for anyhow::Error` implementation and
26
# `Error::from_anyhow` constructor.
27
anyhow = ["dep:anyhow"]
28
29