forked from iCog-Labs-Dev/MORK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 716 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (24 loc) · 716 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
[workspace]
resolver = "2"
members = [
"interning/",
"expr/",
"frontend/",
"kernel/"
]
[workspace.package]
edition = "2024"
[workspace.dependencies]
log = { version = "0.4.27" }
env_logger = "0.11.8"
# Internal to MORK
mork-interning = {features = ["debug_api"], path = "./interning"}
mork-expr = {path = "./expr"}
mork-frontend = {path = "./frontend"}
mork = {path = "./kernel"}
# External to MORK
#freeze = { version="0.1.1", git="https://github.com/luketpeterson/Freeze.git" } #Fixes build on MacOS
gxhash = {version="3.4.1", git="https://github.com/luketpeterson/gxhash/"} # for dag_serialization
[workspace.dependencies.pathmap]
path = "../PathMap"
features = ["jemalloc", "arena_compact"]