Files
wasmtime/lib/module/Cargo.toml
Benjamin Bouvier 0b3d3ac880 Remove logging levels restrictions (#538)
* Fixes #537: Remove release mode logging levels restrictions;

* Add information about log's logging levels in the README;
2018-10-02 10:45:23 -07:00

27 lines
931 B
TOML

[package]
name = "cranelift-module"
version = "0.22.0"
authors = ["The Cranelift Project Developers"]
description = "Support for linking functions and data with Cranelift"
repository = "https://github.com/CraneStation/cranelift"
documentation = "https://cranelift.readthedocs.io/"
categories = ["no-std"]
license = "Apache-2.0 WITH LLVM-exception"
readme = "README.md"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.22.0", default-features = false }
cranelift-entity = { path = "../entity", version = "0.22.0", default-features = false }
hashmap_core = { version = "0.1.9", optional = true }
failure = "0.1.1"
log = { version = "0.4.4", default-features = false }
[features]
default = ["std"]
std = ["cranelift-codegen/std", "cranelift-entity/std"]
core = ["hashmap_core", "cranelift-codegen/core"]
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "CraneStation/cranelift" }