diff options
author | Nadrieril | 2020-06-25 12:46:02 +0100 |
---|---|---|
committer | GitHub | 2020-06-25 12:46:02 +0100 |
commit | b6efa8dd926cf2d136e3040987d81cdd1934a0fa (patch) | |
tree | 65b6cc777daa0f6d9aa2f5fd0334c5bb1c2106c6 /dhall/Cargo.toml | |
parent | 3d9c0b12c6b34185e556071ee16401691bfd8e49 (diff) | |
parent | 73efcaada6032640da6caaed266cd6457a5f6966 (diff) |
Merge pull request #170 from Nadrieril/custom-harness
Diffstat (limited to '')
-rw-r--r-- | dhall/Cargo.toml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/dhall/Cargo.toml b/dhall/Cargo.toml index 9a30d24..94ab80f 100644 --- a/dhall/Cargo.toml +++ b/dhall/Cargo.toml @@ -11,6 +11,10 @@ edition = "2018" build = "build.rs" include = ["src/**/*", "README.md", "build.rs"] +[[test]] +name = "spec" +harness = false + [dependencies] annotate-snippets = "0.7.0" hex = "0.4.2" @@ -31,9 +35,13 @@ url = "2.1" reqwest = { version = "0.10", features = ["blocking"] } [dev-dependencies] -pretty_assertions = "0.6.1" -version-sync = "0.9" +anyhow = "1.0.28" +colored-diff = "0.2.2" +# Latest master allows tests to be run in parallel. +libtest-mimic = { version = "0.2.0", git = "https://github.com/LukasKalbertodt/libtest-mimic" } rand = "0.7" +version-sync = "0.9" +walkdir = "2" [build-dependencies] walkdir = "2" |