-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
50 lines (45 loc) · 1.31 KB
/
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
49
50
[package]
name = "morphic"
version = "0.1.0"
authors = ["William Brandon", "Wilson Berkow", "Frank Dai", "Benjamin Driscoll"]
description = "Pure functional programming with whole-program memory management inference"
edition = "2021"
build = "build.rs"
[build-dependencies]
find_clang = { path = "./find_clang" }
anyhow = "1.0.75"
lalrpop = "0.20.0"
walkdir = "2.4.0"
[dependencies]
find_clang = { path = "./find_clang" }
morphic_macros = { path = "./morphic_macros" }
lalrpop-util = "0.20.0"
im-rc = "15.1.0"
stacker = "0.1.15"
better-panic = "0.3.0"
clap = { version = "4.4.10", features = ["color", "string"] }
cc = "1.0.83"
tempfile = "3.8.1"
crossbeam-channel = "0.5.8"
inkwell = { git = "https://github.com/TheDan64/inkwell", rev = "776d78712b6d8180d6bbad55467e6307cd58aeb8", features = [
"llvm16-0",
] }
ansi_term = "0.12.1"
textwrap = "0.16.0"
json = "0.12.4" # used for string escaping in profile report generation
indicatif = "0.17.7"
id_collections = "1.0.1"
id_graph_sccs = "0.1.1"
once_cell = "1.19.0"
num-traits = "0.2.19"
hashbrown = "0.14.5"
rustc-hash = "2.0.0"
# Error handling
anyhow = "1.0.75"
thiserror = "1.0.50"
# RNG used for procedurally (but deterministically) generating test inputs
rand = "0.8.5"
rand_distr = "0.4.3"
rand_pcg = "0.3.1"
[workspace]
members = ["benchmark", "find_clang", "morphic_macros"]