-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 727 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 727 Bytes
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
[package]
name = "colored_json"
version = "5.0.0"
edition = "2021"
authors = ["Jens Reimann <jreimann@redhat.com>", "Harald Hoyer <harald@redhat.com>"]
description = "Colorize JSON, for printing it out on the command line"
rust-version = "1.70.0"
homepage = "https://github.com/ctron/colored_json"
repository = "https://github.com/ctron/colored_json"
documentation = "https://docs.rs/colored_json"
readme = "README.md"
exclude = ["Screenshot.png"]
keywords = ["json", "colored", "coloured", "color", "colour"]
categories = ["command-line-interface", "encoding", "visualization"]
license = "EPL-2.0"
[dependencies]
serde = "1"
serde_json = "1"
yansi = "1"
[dev-dependencies]
serde = { version = "1", features = ["derive"] }