Skip to content

Commit 53c8612

Browse files
committed
move Var/Lit/Pol into separate lit crate
These types have plenty of use cases that don't depend on specific IR data structures, so it should be possible to depend on them without pulling in the `ir` crate as dependency.
1 parent dda02ba commit 53c8612

File tree

10 files changed

+666
-613
lines changed

10 files changed

+666
-613
lines changed

Cargo.lock

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ members = [
1515
"inc_refine",
1616
"extract",
1717
"imctk",
18+
"lit",
1819

1920
# comment to force multi-line layout
2021
]

ir/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ hashbrown = { version = "0.14.5", default-features = false, features = [
1515
] }
1616
imctk-derive = { version = "0.1.0", path = "../derive" }
1717
imctk-ids = { path = "../ids" }
18+
imctk-lit = { version = "0.1.0", path = "../lit" }
1819
imctk-transparent = { version = "0.1.0", path = "../transparent" }
1920
imctk-util = { version = "0.1.0", path = "../util" }
2021
log = "0.4.21"

0 commit comments

Comments
 (0)