-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (40 loc) · 1.55 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
[package]
name = "crackers"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "crackers"
required-features = ["bin"]
[[example]]
name = "crackers_gpt"
required-features = ["gpt"]
[features]
default = ["toml"]
bin = ["dep:tracing-subscriber", "toml", "dep:clap", "dep:anyhow", "dep:tracing-indicatif"]
gpt = ["dep:tracing-subscriber", "dep:cc", "dep:anyhow", "dep:tempfile", "dep:tokio", "dep:async-openai", "dep:clap"]
toml = ["dep:toml_edit"]
bundled = ["z3/bundled"]
[profile.dev]
opt-level = 3
[dependencies]
jingle = { git = "https://github.com/toolCHAINZ/jingle", branch = "main", features = ["gimli"] }
z3 = { git = "https://github.com/prove-rs/z3.rs.git", branch = "master" }
serde = { version = "1.0.203", features = ["derive"] }
thiserror = "1.0.58"
rmp-serde = "1.1.2"
tracing = "0.1.40"
colored = "2.1.0"
tracing-subscriber = { version = "0.3.18", optional = true, features = ["env-filter"] }
toml_edit = { version = "0.22.12", optional = true, features = ["serde"] }
object = "0.36.7"
clap = { version = "4.0.32", optional = true , features = ["derive"]}
rand = "0.8.5"
derive_builder = "0.20.0"
# gpt example deps
async-openai = { version = "0.23.4", optional = true }
cc = { version = "1.1.10", optional = true }
anyhow = { version = "1.0.86", optional = true }
tempfile = { version = "3.12.0", optional = true }
tokio = { version = "1.39.2", optional = true, features = ["rt", "rt-multi-thread", "macros"] }
tracing-indicatif = { version = "0.3.6", optional = true }