Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/math/Cargo.toml
1690 views
1
[package]
2
name = "wasmtime-internal-math"
3
version.workspace = true
4
authors.workspace = true
5
description = "INTERNAL: Low-level math routines used in Wasmtime"
6
documentation = "https://docs.rs/wasmtime-math"
7
license = "Apache-2.0 WITH LLVM-exception"
8
repository = "https://github.com/bytecodealliance/wasmtime"
9
edition.workspace = true
10
rust-version.workspace = true
11
12
[lints]
13
workspace = true
14
15
[package.metadata.docs.rs]
16
all-features = true
17
18
[features]
19
std = []
20
21
[dependencies]
22
libm = { workspace = true }
23
24