forked from mitsuhiko/insta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (35 loc) · 969 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
31
32
33
34
35
36
37
38
39
[package]
name = "insta"
version = "0.8.1"
license = "Apache-2.0"
authors = ["Armin Ronacher <[email protected]>"]
description = "A snapshot testing library for Rust"
edition = "2018"
homepage = "https://github.com/mitsuhiko/insta"
repository = "https://github.com/mitsuhiko/insta"
keywords = ["snapshot", "testing", "jest", "approval"]
readme = "README.md"
exclude = [
"assets/*"
]
[package.metadata.docs.rs]
all-features = true
[workspace]
members = [".", "cargo-insta"]
[features]
# This feature is now just always enabled because we use yaml internally now.
serialization = []
[dependencies]
difference = "2.0.0"
serde = { version = "1.0.85", features = ["derive"] }
failure = "0.1.5"
serde_yaml = "0.8.8"
console = "0.7.5"
chrono = { version = "0.4.6", features = ["serde"] }
serde_json = "1.0.36"
lazy_static = "1.2.0"
ci_info = "0.3.1"
pest = "2.1.0"
pest_derive = "2.1.0"
ron = "0.4.1"
uuid = { version = "0.7.1", features = ["serde", "v4"] }