forked from shramee/starklings-cairo1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
76 lines (68 loc) · 2.74 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-felt = "0.8.2"
# Cairo runner dependencies
cairo-lang-runner = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-test-runner = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-compiler = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-casm = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-diagnostics = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-debug = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-defs = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-sierra = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-sierra-ap-change = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-sierra-gas = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-sierra-generator = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-semantic = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-sierra-to-casm = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-utils = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-filesystem = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-starknet = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-syntax = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-plugins = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
cairo-lang-lowering = {git = "https://github.com/starkware-libs/cairo", version = "2.1.1"}
anyhow = "1.0.66"
ark-ff = "0.4.0-alpha.7"
ark-std = "0.3.0"
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"