-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
104 lines (89 loc) · 1.8 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[workspace]
members = [
"isla-lib",
"isla-cat",
"isla-mml",
"isla-sexp",
"isla-elf",
"isla-axiomatic",
]
exclude = [
"web/server"
]
[package]
name = "isla"
version = "0.2.0"
rust-version = "1.65"
authors = ["Alasdair <[email protected]>"]
edition = "2021"
license = "BSD-2-Clause"
readme = "README.md"
homepage = "https://github.com/rems-project/isla"
repository = "https://github.com/rems-project/isla"
description = """
Isla is a symbolic execution engine for Sail instruction set
architecture specifications.
"""
[[bin]]
name = "isla-property"
path = "src/property.rs"
doc = false
[[bin]]
name = "isla-property129"
path = "src/property129.rs"
doc = false
[[bin]]
name = "isla-footprint"
path = "src/footprint.rs"
doc = false
[[bin]]
name = "isla-client"
path = "src/client.rs"
doc = false
[[bin]]
name = "isla-litmus-dump"
path = "src/litmus-dump.rs"
doc = false
[[bin]]
name = "isla-preprocess"
path = "src/preprocess.rs"
doc = false
[[bin]]
name = "isla-preprocess129"
path = "src/preprocess129.rs"
doc = false
[[bin]]
name = "isla-axiomatic"
path = "src/axiomatic.rs"
doc = false
[[bin]]
name = "isla-execute-function"
path = "src/execute-function.rs"
doc = false
[[bin]]
name = "zencode"
path = "src/zencode.rs"
doc = false
[dependencies]
crossbeam = "0.8.1"
getopts = "0.2.21"
toml = "0.5.5"
pretty = "0.11.3"
serde = "1.0.104"
bincode = "1.2.1"
sha2 = "0.8.1"
rand = "0.7.3"
id-arena = "2"
isla-axiomatic = { path = "isla-axiomatic", version = "0.2.0" }
isla-cat = { path = "isla-cat", version = "0.2.0" }
isla-mml = { path = "isla-mml", version = "0.2.0" }
isla-lib = { path = "isla-lib", version = "0.2.0" }
isla-elf = { path = "isla-elf", version = "0.2.0" }
[features]
smtperf = ["isla-lib/smtperf"]
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
panic = "abort"
debug = true