-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
47 lines (42 loc) · 937 Bytes
/
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
[package]
name = "hoice"
version = "1.10.0"
authors = ["Adrien Champion <adrien.champion@email.com>"]
description = "A ICE-based Horn clause solver."
homepage = "https://github.com/hopv/hoice"
repository = "https://github.com/hopv/hoice"
readme = "README.md"
categories = ["science"]
keywords = ["machine learning", "verification", "proof"]
license = "MIT"
edition = "2021"
[[bin]]
name = "hoice"
path = "src/bin/main.rs"
doc = false
[lib]
name = "hoice"
path = "src/hoice.rs"
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = false
debug-assertions = false
panic = 'unwind'
[features]
bench = [ ]
[dependencies]
libc = "^0.2"
lazy_static = "^1.4"
clap = { version = "^3.1", features = ["cargo"] }
hashconsing = "^1.5"
error-chain = "^0.12"
ansi_term = "^0.12"
rsmt2 = "^0.16"
num = "^0.4"
mylib = { git = "https://github.com/AdrienChampion/mylib" }
either = "^1.8"
rand = "^0.8"
rand_xorshift = "^0.3"
atty = "^0.2"