-
-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
129 changed files
with
96 additions
and
232 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,3 @@ | ||
[package] | ||
name = "insta" | ||
version = "1.37.0" | ||
license = "Apache-2.0" | ||
authors = ["Armin Ronacher <[email protected]>"] | ||
description = "A snapshot testing library for Rust" | ||
edition = "2018" | ||
rust-version = "1.51.0" | ||
homepage = "https://insta.rs/" | ||
repository = "https://github.com/mitsuhiko/insta" | ||
keywords = ["snapshot", "testing", "jest", "approval"] | ||
categories = ["development-tools::testing"] | ||
readme = "README.md" | ||
exclude = [ | ||
"assets/*" | ||
] | ||
|
||
[package.metadata.docs.rs] | ||
all-features = true | ||
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[workspace] | ||
members = ["cargo-insta"] | ||
|
||
|
@@ -31,54 +10,6 @@ pr-run-mode = "plan" | |
install-updater = false | ||
precise-builds = true | ||
|
||
[features] | ||
default = ["colors"] | ||
|
||
# when the redactions feature is enabled values can be redacted in serialized | ||
# snapshots. | ||
redactions = ["pest", "pest_derive", "serde"] | ||
|
||
# Enables support for running filters on snapshot | ||
filters = ["regex"] | ||
|
||
# Glob support | ||
glob = ["walkdir", "globset"] | ||
|
||
# Color support | ||
colors = ["console"] | ||
|
||
# Serialization formats | ||
# TODO: This could be cleaner by using "dep:csv" without renaming the dep, but | ||
# this technique allows for a lower MSRV | ||
csv = ["dep_csv", "serde"] | ||
json = ["serde"] | ||
ron = ["dep_ron", "serde"] | ||
toml = ["dep_toml", "serde"] | ||
yaml = ["serde"] | ||
|
||
# internal feature exclusive to cargo-insta | ||
_cargo_insta_internal = [] | ||
|
||
[dependencies] | ||
dep_csv = { package = "csv", version = "=1.1.6", optional = true } | ||
console = { version = "0.15.4", optional = true, default-features = false } | ||
pest = { version = "2.1.3", optional = true } | ||
pest_derive = { version = "2.1.0", optional = true } | ||
dep_ron = { package = "ron", version = "0.7.1", optional = true } | ||
dep_toml = { package = "toml", version = "0.5.7", optional = true } | ||
globset = { version = "0.4.6", optional = true } | ||
walkdir = { version = "2.3.1", optional = true } | ||
similar = { version = "2.1.0", features = ["inline"] } | ||
regex = { version = "1.6.0", default-features = false, optional = true, features = ["std", "unicode"] } | ||
serde = { version = "1.0.117", optional = true } | ||
linked-hash-map = "0.5.6" | ||
lazy_static = "1.4.0" | ||
|
||
[dev-dependencies] | ||
serde = { version = "1.0.117", features = ["derive"] } | ||
similar-asserts = "1.4.2" | ||
|
||
# The profile that 'cargo dist' will build with | ||
[profile.dist] | ||
inherits = "release" | ||
lto = "thin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.