forked from ian-hamlin/pitufo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (24 loc) · 933 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
[package]
name = "pitufo"
version = "1.1.0"
authors = ["ian-hamlin <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "A small application that will walk the given path and replace the content of every json file found. The file will either be prettified or minified."
repository = "https://github.com/ian-hamlin/pitufo"
documentation = "https://github.com/ian-hamlin/pitufo"
homepage = "https://ian-hamlin.github.io/pitufo/"
keywords = ["json", "prettify", "minify"]
categories = ["command-line-utilities"]
readme = "README.md"
[badges]
azure-devops = { project = "morpork73/pitufo", pipeline = "ian-hamlin.pitufo", build = "10" }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
walkdir = "2"
argh = "0.1.3"
[dependencies.serde_json]
version = "1.0"
features = ["arbitrary_precision"]
[dev-dependencies]
pretty_assertions = "0.6.1"