forked from Technolution/rustig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (34 loc) · 1.05 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
[workspace]
members = [
"lib/callgraph",
"lib/panic_analysis",
"lib/test_common",
]
[package]
name = "rustig"
description = "A tool to detect code paths leading to Rust's panic handler"
version = "0.2.0"
license = "MIT OR Apache-2.0"
keywords = ["cli", "compilation", "proof"]
homepage = "https://github.com/Technolution/rustig"
repository = "https://github.com/Technolution/rustig"
documentation = "https://github.com/Technolution/rustig"
authors = [
"Bart van Schaick <[email protected]>",
"Dominique van Cuilenborg <[email protected]>",
"Fabian Stelmach <[email protected]>",
"Aron Zwaan <[email protected]>",
"Erwin Gribnau <[email protected]>"
]
[dependencies]
clap = "2.31.2"
callgraph = { path = "lib/callgraph", version = "0.1.0" }
panic_analysis = { path = "lib/panic_analysis", version = "0.1.0" }
toml = "0.4.6"
serde = "1.0.64"
serde_derive = "1.0.64"
error-chain = "0.12.0"
serde_json = "1.0.22"
[dev-dependencies]
assert_cli = "0.5"
test_common = { path = "lib/test_common", version = "0.1.0" }