-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
47 lines (40 loc) · 858 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
[workspace]
resolver = "2"
[package]
edition = '2021'
name = "sierra-analyzer"
default-run = "sierra-decompiler"
[[bin]]
name = "sierra-decompiler"
path = "bin/sierra-decompiler/src/main.rs"
[[bin]]
name = "test-generator"
path = "bin/test-generator/src/main.rs"
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
overflow-checks = true
lto = false
panic = 'unwind'
incremental = true
codegen-units = 256
rpath = false
[profile.release]
opt-level = 3
debug = false
debug-assertions = false
overflow-checks = false
lto = true
panic = 'unwind'
incremental = false
codegen-units = 1
rpath = false
[dependencies]
clap = { version = "4.0.0-rc.1", features = [ "derive" ] }
serde = "1.0.209"
serde_json = "1.0.116"
tokio = "1.37.0"
cairo-lang-sierra = "~2.9.2"
cairo-lang-starknet-classes = "~2.9.2"
sierra-analyzer-lib = { path = "./lib" }