-
Notifications
You must be signed in to change notification settings - Fork 13
/
Cargo.toml
44 lines (39 loc) · 1.93 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
[package]
name = "elm-test-rs"
version = "3.0.0"
authors = ["Matthieu Pizenberg <[email protected]>", "Harry Sarson <[email protected]>"]
edition = "2021"
description = "Simple and fast Rust alternative to node-test-runner to run elm tests"
license = "BSD-3-Clause"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
glob = "0.3.0" # to interpret CLI glob patterns
pathdiff = "0.2.1" # to compute a path relative to another path
num_cpus = "1.13.0" # to get the number of logic cores
regex = "1.5.5" # to path the elm kernel code
pubgrub = { version = "0.2.1", features = ["serde"] } # for dependency solving
# pubgrub-dependency-provider-elm = { path = "../pubgrub-dependency-provider-elm" }
pubgrub-dependency-provider-elm = { git = "https://github.com/mpizenberg/pubgrub-dependency-provider-elm", rev = "a20a795f0" }
serde_json = "1.0.72" # for JSON serialization
serde = { version = "1.0.130", default-features = false }
ureq = "2.3.1" # for https requests to the package website
dirs-next = "2.0.0" # to handle ELM_HOME
nom = "7.1.0" # to parse the tests files and extract potential tests
notify = "4.0.17" # for --watch mode
atty = "0.2.14" # to handle color correctly in pipes
anyhow = "1.0.51" # for error handling
clap = { version = "2.34.0", default-features = false } # for CLI argument parsing
log = { version = "0.4.14", default-features = false, features = ["std"] } # for debug logs with -vvv
walkdir = "2.3.2" # to find all elm files in a given directory
either = { version = "1.6.1", default-features = false } # for iterators on two branches
which = "4.2.2" # to find the path of the elm executable
path-absolutize = "3.0.11" # simple absolute paths (no Windows UNC)
[dev-dependencies]
assert_cmd = "2.0.2"
[build-dependencies]
fs_extra = "1.2.0"
dirs-next = "2.0.0"
[features]
# Feature to run the tests with the Deno runtime
# cargo test --release --features deno
deno = []