-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 815 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 815 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[workspace]
members = ["macros"]
exclude = ["tests/external_consumer"]
[package]
name = "lower-ir-utils"
version = "0.1.0"
edition = "2021"
authors = ["Gonçalo Carvalho"]
description = "Helpers for mapping Rust types to Cranelift JIT signatures, lowering call arguments, and reducing module boilerplate."
license = "MIT"
readme = "README.md"
repository = "https://github.com/glslang/lower-ir-utils"
keywords = ["cranelift", "jit", "codegen", "ir"]
categories = ["development-tools", "compilers"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
cranelift = "0.131"
cranelift-jit = "0.131"
cranelift-module = "0.131"
cranelift-codegen = "0.131"
cranelift-frontend = "0.131"
smallvec = "1"
lower-ir-utils-macros = { path = "macros", version = "0.1.0" }
[dev-dependencies]
cranelift-native = "0.131"