-
Notifications
You must be signed in to change notification settings - Fork 394
/
Cargo.toml
55 lines (50 loc) · 1.2 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
[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-test-runner = "2.8.2"
cairo-lang-test-plugin = "2.8.2"
cairo-lang-runner = "2.8.2"
cairo-lang-sierra = "2.8.2"
scarb = { git = "https://github.com/software-mansion/scarb", tag = "v2.8.2" }
scarb-ui = { git = "https://github.com/software-mansion/scarb", tag = "v2.8.2" }
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"
camino = "1.1.6"
[dev-dependencies]
assert_cmd = "0.11.0"
predicates = "1.0.1"
glob = "0.3.0"
serial_test = "2.0.0"
[[bin]]
name = "starklings"
path = "src/main.rs"