-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
42 lines (34 loc) · 1.14 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
[workspace]
members = ["crates/*"]
exclude = [
"props",
"crates/paralegal-flow/tests",
"crates/paralegal-policy/tests",
"crates/paralegal-explore",
]
resolver = "2"
[workspace.dependencies]
indexical = "0.6.1"
serde = "1.0.216"
petgraph = { version = "0.6", features = ["serde-1"] }
strum = { version = "0.25", features = ["derive"] }
anyhow = { version = "1.0.72", features = ["backtrace"] }
rustc_utils = { version = "=0.12.0-nightly-2024-12-15", features = [
"indexical",
] }
rustc_plugin = "=0.12.0-nightly-2024-12-15"
[workspace.dependencies.flowistry]
# path = "../flowistry/crates/flowistry"
git = "https://github.com/brownsys/flowistry"
rev = "f271637d65a21a2785b87ef52ede8bdeb560948c"
default-features = false
[profile.release]
debug = true
[replace."rustc_utils:0.12.0-nightly-2024-12-15"]
# path = "../rustc_plugin/crates/rustc_utils"
git = "https://github.com/JustusAdam/rustc_plugin"
rev = "901641910d536f00f1a6b6b2766778ac0a5bad64"
[replace."rustc_plugin:0.12.0-nightly-2024-12-15"]
# path = "../rustc_plugin/crates/rustc_plugin"
git = "https://github.com/JustusAdam/rustc_plugin"
rev = "901641910d536f00f1a6b6b2766778ac0a5bad64"