-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
48 lines (40 loc) · 928 Bytes
/
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
48
[package]
name = "cfvm"
version = "0.1.0"
authors = ["Lyzh <[email protected]>"]
edition = "2021"
description = "A rewrite-driven, multi-target optimizing compiler with multi-level IR support."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "libcfvm"
path = "./src/lib.rs"
[[bin]]
name = "cfvm"
path = "./src/main.rs"
[workspace]
resolver = '2'
members = [
"common",
"cfir",
"cfir_frontend",
"egraph",
"cfpl",
"backend",
"description_lang",
]
[workspace.package]
version = "8.0.0"
authors = ["Lyzh <[email protected]>"]
edition = "2021"
[workspace.dependencies]
cfvm_common = { path="common" }
cfir = { path="cfir" }
cfir_frontend = { path="cfir_frontend" }
egraph = { path="egraph" }
pest = "2.7.3"
pest_derive = "2.7.3"
[dependencies]
pest.workspace = true
cfir.workspace = true
cfir_frontend.workspace = true
egraph.workspace = true