-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 946 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
[package]
name = "you-must-conform"
version = "1.1.1"
edition = "2021"
description = "A command-line tool for enforcing YAML|JSON|TOML|text file contents."
license = "MIT"
repository = "https://github.com/aatifsyed/you-must-conform"
documentation = "https://docs.rs/you-must-conform"
[features]
[dependencies]
anyhow = "1.0.56"
async-recursion = "1.0.0"
clap = { version = "3.1.8", features = ["derive"] }
derive_more = "0.99.17"
futures = "0.3.21"
generic-new = "0.1.0"
itertools = "0.10.3"
jsonschema = "0.15.1"
regex = "1.5.5"
reqwest = "0.11.10"
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
serde_regex = "1.1.0"
serde_yaml = "0.8.23"
strum = { version = "0.24.0", features = ["derive"] }
thiserror = "1.0.30"
tokio = { version = "1.17.0", features = ["rt-multi-thread", "macros"] }
toml = "0.5.8"
url = { version = "2.2.2", features = ["serde"] }
[dev-dependencies]
assert_cmd = "2.0.4"
tempfile = "3.3.0"