-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (68 loc) · 3.22 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
[package]
name = "starklings"
version = "0.1.0"
authors = [
"Shramee <[email protected]>",
"Mathieu <[email protected]>",
# Authors of original rustlings
"Liv <[email protected]>",
"Carol (Nichols || Goulding) <[email protected]>",
]
edition = "2021"
[dependencies]
argh = "0.1"
indicatif = "0.16"
console = "0.15"
notify = "4.0"
toml = "0.5"
regex = "1.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
home = "0.5.3"
glob = "0.3.0"
# Cairo runner dependencies
cairo-lang-runner = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-compiler = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-casm = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-diagnostics = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-debug = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-defs = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-sierra = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-sierra-ap-change = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-sierra-gas = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-sierra-generator = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-semantic = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-sierra-to-casm = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-utils = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-filesystem = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-starknet = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-syntax = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-plugins = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
cairo-lang-lowering = { git = "https://github.com/starkware-libs/cairo",rev = "7b4bbf3d57230e0e307fbb634394f6e57b3c63cc"}
anyhow = "1.0.66"
ark-ff = "0.4.0-alpha.7"
ark-std = "0.3.0"
cairo-felt = "0.3.0-rc1"
cairo-vm = "0.3.0-rc1"
clap = { version = "4.0", features = ["derive"] }
itertools = "0.10.3"
num-bigint = "0.4"
num-traits = "0.2"
salsa = "0.16.1"
thiserror = "1.0.32"
rayon = "0.9.0"
colored = "2"
unescaper = "0.1.1"
[dev-dependencies]
assert_cmd = "0.11.0"
predicates = "1.0.1"
glob = "0.3.0"
[[bin]]
name = "starklings"
path = "src/main.rs"
[[bin]]
name = "starklings-runner"
path = "src/starklings_runner.rs"
[[bin]]
name = "starklings-tester"
path = "src/starklings_tester.rs"