-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
83 lines (72 loc) · 1.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "mir-json"
version = "0.1.0"
authors = ["Joshua Gancher <jrg358@cornell.edu>"]
repository = "https://github.com/GaloisInc/mir-json.git"
license = "MIT/Apache-2.0"
[package.metadata.rust-analyzer]
rustc_private=true
[dependencies]
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
serde_cbor = "0.11"
tar = "0.4"
cargo_metadata = { version = "0.14.2" }
cargo = { version = "0.62", features = [ "vendored-openssl" ] }
toml_edit = { version = "0.13.4", features = [ "easy" ] }
clap = "3.1.0"
[[bin]]
name = "cargo-crux-test"
path = "src/bin/wrapper.rs"
[[bin]]
name = "cargo-crux-test_real"
path = "src/bin/cargo-crux-test.rs"
[[bin]]
name = "cargo-saw-build"
path = "src/bin/wrapper.rs"
[[bin]]
name = "cargo-saw-build_real"
path = "src/bin/cargo-saw-build.rs"
[[bin]]
name = "cargo-mir-json"
path = "src/bin/wrapper.rs"
[[bin]]
name = "cargo-mir-json_real"
path = "src/bin/cargo-mir-json.rs"
[[bin]]
name = "crux-rustc"
path = "src/bin/wrapper.rs"
[[bin]]
name = "crux-rustc_real"
path = "src/bin/crux-rustc.rs"
[[bin]]
name = "mir-json-callgraph"
path = "src/bin/wrapper.rs"
[[bin]]
name = "mir-json-callgraph_real"
path = "src/bin/mir-json-callgraph.rs"
[[bin]]
name = "mir-json-dce"
path = "src/bin/wrapper.rs"
[[bin]]
name = "mir-json-dce_real"
path = "src/bin/mir-json-dce.rs"
[[bin]]
name = "mir-json-rustc-wrapper"
path = "src/bin/wrapper.rs"
[[bin]]
name = "mir-json-rustc-wrapper_real"
path = "src/bin/mir-json-rustc-wrapper.rs"
[[bin]]
name = "mir-json"
path = "src/bin/wrapper.rs"
[[bin]]
name = "mir-json_real"
path = "src/bin/mir-json.rs"
[[bin]]
name = "saw-rustc"
path = "src/bin/wrapper.rs"
[[bin]]
name = "saw-rustc_real"
path = "src/bin/saw-rustc.rs"