-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
56 lines (49 loc) · 1.27 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
51
52
53
54
55
56
[workspace]
resolver = "2"
members = ["pliron-derive", "pliron-llvm"]
[package]
name = "pliron"
description = "Programming Languages Intermediate RepresentatiON"
version.workspace = true
edition.workspace = true
repository.workspace = true
readme.workspace = true
keywords.workspace = true
categories.workspace = true
license.workspace = true
[workspace.package]
version = "0.5.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/vaivaswatha/pliron"
categories = ["compilers"]
keywords = ["pliron", "llvm", "mlir", "compiler"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pliron-derive = { path = "./pliron-derive", version = "0" }
apint.workspace = true
slotmap = "1"
downcast-rs = "1"
rustc-hash.workspace = true
thiserror.workspace = true
linkme.workspace = true
combine.workspace = true
regex = "1"
dyn-clone = "1"
[dev-dependencies]
expect-test.workspace = true
[workspace.dependencies]
apint = "0"
assert_cmd = "2"
clap = { version = "4", features = ["derive"] }
expect-test = "1"
proc-macro2 = "1"
quote = "1"
prettyplease = "0"
rustc-hash = "1"
syn = { version = "2", features = ["derive", "full", "parsing"] }
combine = "4"
thiserror = "1"
linkme = "0"
tempfile = "3"