forked from KomaEc/crown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (39 loc) · 1.06 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
[workspace]
members = [
"crates/common",
"crates/preprocess",
"crates/analysis",
"crates/alias",
"crates/empirical-study",
"crates/refactor",
"crates/rustc-properties",
]
[package]
name = "crown"
version = "0.0.1"
edition = "2021"
build = "build.rs"
[package.metadata.rust-analyzer]
rustc_private = true
[dependencies]
common = { path = "crates/common" }
preprocess = { path = "crates/preprocess" }
analysis = { path = "crates/analysis" }
alias = { path = "crates/alias" }
refactor = { path = "crates/refactor" }
rustc-properties = { path = "crates/rustc-properties" }
empirical-study = { path = "crates/empirical-study" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
clap = { version = "=4.1.14", features = ["derive"] }
tracing = "0.1.32"
tracing-subscriber = { version = "0.3.10", features = ["env-filter"] }
anyhow = "1.0"
cli-table = "0.4"
[build-dependencies]
libc = "0.2"
c2rust-bitfields-derive = "0.2"
c2rust-bitfields = "0.3.0"
num-traits = "0.2"
[target.'cfg(target_arch = "x86_64")'.build-dependencies]
f128 = "0.2"