Skip to content

Commit cbfa011

Browse files
committed
ACI lib
. . HIR to ACI
1 parent 1dcfe90 commit cbfa011

File tree

10 files changed

+945
-8
lines changed

10 files changed

+945
-8
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ resolver = "2"
55
members = [
66
"aesophia_ast",
77
"aesophia_types",
8+
"aesophia_aci",
89
"aesophia_backend_fate",
910
"aesophia_cli",
1011
"aesophia_lsp",

aesophia_aci/Cargo.toml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[package]
2+
name = "aesophia_aci"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
7+
[dependencies]
8+
aesophia_ast = { path = "../aesophia_ast" }
9+
aesophia_types = { path = "../aesophia_types" }
10+
aesophia_backend_fate = { path = "../aesophia_backend_fate" } # TODO needed for HIR, should split
11+
log = "0.4"
12+
env_logger = "~0.11.5"
13+
pretty = "0.12.3"
14+
serde_json = "1.0.64"
15+
serde = {version = "1.0.0", features = ["derive"]}
16+
17+
[dev-dependencies]
18+
proptest = "1.0.0"

0 commit comments

Comments
 (0)