forked from starkware-libs/cairo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
115 lines (111 loc) · 3.13 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
105
106
107
108
109
110
111
112
113
114
115
[profile.release]
overflow-checks = true # Enable integer overflow checks.
[workspace]
members = [
"crates/cairo-lang-casm",
"crates/cairo-lang-compiler",
"crates/cairo-lang-debug",
"crates/cairo-lang-defs",
"crates/cairo-lang-diagnostics",
"crates/cairo-lang-eq-solver",
"crates/cairo-lang-filesystem",
"crates/cairo-lang-formatter",
"crates/cairo-lang-language-server",
"crates/cairo-lang-lowering",
"crates/cairo-lang-parser",
"crates/cairo-lang-plugins",
"crates/cairo-lang-proc-macros",
"crates/cairo-lang-project",
"crates/cairo-lang-runner",
"crates/cairo-lang-semantic",
"crates/cairo-lang-sierra",
"crates/cairo-lang-sierra-ap-change",
"crates/cairo-lang-sierra-gas",
"crates/cairo-lang-sierra-generator",
"crates/cairo-lang-sierra-to-casm",
"crates/cairo-lang-sierra-type-size",
"crates/cairo-lang-starknet",
"crates/cairo-lang-syntax",
"crates/cairo-lang-syntax-codegen",
"crates/cairo-lang-test-runner",
"crates/cairo-lang-utils",
"crates/bin/cairo-language-server",
"crates/bin/cairo-compile",
"crates/bin/cairo-format",
"crates/bin/cairo-test",
"crates/bin/cairo-run",
"crates/bin/sierra-compile",
"crates/bin/starknet-compile",
"crates/bin/starknet-sierra-compile",
"crates/bin/generate-syntax",
"tests",
]
[workspace.package]
version = "2.1.0"
edition = "2021"
repository = "https://github.com/starkware-libs/cairo/"
license = "Apache-2.0"
license-file = "LICENSE"
[workspace.dependencies]
anyhow = "1.0.66"
ark-ff = "0.4.0-alpha.7"
ark-secp256k1 = "0.4.0"
ark-secp256r1 = "0.4.0"
ark-std = "0.4.0"
assert_matches = "1.5"
bimap = "0.6.2"
cairo-felt = "0.8.2"
cairo-vm = "0.8.2"
clap = { version = "4.0", features = ["derive"] }
colored = "2"
const-fnv1a-hash = "1.1.0"
convert_case = "0.6.0"
derivative = "2.2.0"
diffy = "0.3.0"
env_logger = "0.10.0"
genco = "0.17.0"
good_lp = { version = "1.3.2", features = ["minilp"], default-features = false }
id-arena = "2.2.1"
ignore = "0.4.20"
indent = "0.1.1"
indexmap = { version = "2.0.0", features = ["serde"] }
indoc = "2.0.1"
itertools = "0.11.0"
keccak = "0.1.3"
lalrpop-util = { version = "0.20.0", features = ["lexer"] }
log = "0.4"
lsp = { version = "0.94", package = "lsp-types" }
num-bigint = "0.4"
num-integer = "0.1"
num-traits = "0.2"
once_cell = "1.17.1"
parity-scale-codec = "3.5.0"
parity-scale-codec-derive = "3.1.4"
path-clean = "1.0.1"
pretty_assertions = "1.2.1"
proc-macro2 = "1.0"
quote = "1.0.21"
rayon = "1.7.0"
rstest = "0.18.1"
salsa = "0.16.1"
scarb-metadata = "1"
schemars = { version = "0.8.12", features = ["preserve_order"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0"
sha3 = "0.10.6"
smol_str = { version = "0.2.0", features = ["serde"] }
syn = { version = "2.0.25", features = ["full", "extra-traits"] }
test-case = "3.1.0"
test-case-macros = "2.2.2"
test-log = "0.2.11"
thiserror = "1.0.32"
time = { version = "0.3.20", features = [
"formatting",
"macros",
"local-offset",
] }
tokio = { version = "1.18.2", features = ["full", "sync"] }
toml = "0.7.6"
tower-lsp = "0.19.0"
unescaper = "0.1.1"
xshell = "0.2.2"