31 lines
791 B
TOML
31 lines
791 B
TOML
[package]
|
|
name = "cretonne-wasm"
|
|
version = "0.1.0"
|
|
authors = ["The Cretonne Project Developers"]
|
|
description = "Translator from WebAssembly to Cretonne IL"
|
|
repository = "https://github.com/Cretonne/cretonne"
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
|
|
[lib]
|
|
name = "cton_wasm"
|
|
|
|
[dependencies]
|
|
wasmparser = "0.14.1"
|
|
cretonne = { path = "../cretonne", version = "0.1.0" }
|
|
cretonne-frontend = { path = "../frontend", version = "0.1.0" }
|
|
|
|
[dependencies.hashmap_core]
|
|
version = "0.1.1"
|
|
optional = true
|
|
[dependencies.error_core]
|
|
version = "0.1.0"
|
|
optional = true
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3.5"
|
|
|
|
[features]
|
|
# Currently, the only feature is the `no_std` feature.
|
|
# Enabling this disables use of `stdlib`.
|
|
no_std = ["hashmap_core", "error_core", "cretonne/no_std", "cretonne-frontend/no_std"] |