forked from open-dust/cairo-foundry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 872 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
[package]
description = "Run efficiently your unit tests written in cairo"
edition = "2021"
name = "cairo-foundry"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
assert_matches = "1.5.0"
cairo-rs = { git = "https://github.com/open-dust/cairo-rs", branch = "cairo-foundry", features = [
"hooks",
] }
clap = { version = "3.2.6", features = ["derive"], default-features = false }
colored = "2.0.0"
dirs = "4.0"
env_logger = "0.9.0"
lazy_static = "1.4.0"
log = "0.4.17"
num-bigint = "0.4.3"
num-traits = "0.2.15"
rayon = "1.5.3"
regex = { version = "1.6.0", default-features = true }
rstest = "0.15.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0.37"
uuid = { version = "1.2.1", features = ["v4"] }
walkdir = "2.3.2"
which = "4.3.0"