-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
28 lines (24 loc) · 916 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
[workspace]
members = [
"benchmarks/aunt-kg/",
"benchmarks/fizzbuzz/",
"benchmarks/logic-query/",
"benchmarks/oeis/",
"experiments/expr/bytestring/",
"experiments/expr/dyck/", "experiments/morkl_interpreter", "experiments/symbol_mapping/bucket_map", "experiments/symbol_mapping/naive_map", "experiments/pathmap_merkle_serialization",
"frontend/",
"kernel/" # LP: Looks to be in a state of heavy experimentation
]
[workspace.package]
edition = "2021"
[workspace.dependencies]
# Internal to MORK
mork-bytestring = {path = "./experiments/expr/bytestring"}
mork-frontend = {path = "./frontend"}
mork = {path = "./kernel"} # LP: Looks to be in a state of heavy experimentation
# External to MORK
# pathmap = {path = "../PathMap" , features = ["all_dense_nodes"]}
[workspace.dependencies.pathmap]
path = "../PathMap"
features = ["jemalloc"]
# features = ["jemalloc", "all_dense_nodes"]