[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 = ["release_max_level_warn"] } [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" }