-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (39 loc) · 1.07 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
cargo-features = ["codegen-backend"]
[workspace]
resolver = "2"
members = ["lib"]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
authors = ["Christian Westrom <[email protected]>"]
description = "A GUI for directly working with an AST that compiles to machine code with the goal of self-hosting"
repository = "TBD"
keywords = ["graphical"]
categories = ["compilers", "development-tools"]
[package]
name = "cranelift-gui"
edition = "2021"
[workspace.dependencies]
anyhow = "1"
relm4 = "0.9.1"
relm4-components = "0.9.1"
cranelift-codegen = "0.114.0"
cranelift-frontend = "0.114.0"
cranelift-module = "0.114.0"
cranelift-native = "0.114.0"
cranelift-object = "0.114.0"
log = "*"
[dependencies]
anyhow = { workspace = true }
log = { workspace = true }
relm4 = { workspace = true, features = ["libadwaita", "gnome_46"] }
relm4-components = { workspace = true, features = ["libadwaita"] }
lib = { path = "lib" }
[features]
default = []
[profile.dev]
codegen-backend = "cranelift"
incremental = true
[profile.release]
codegen-backend = "cranelift"