hurl/packages/hurlfmt/Cargo.toml

29 lines
600 B
TOML
Raw Normal View History

2020-11-02 20:30:13 +03:00
[package]
name = "hurlfmt"
2023-05-03 16:32:58 +03:00
version = "3.0.0"
2020-11-02 20:30:13 +03:00
authors = ["Fabrice Reix <fabrice.reix@orange.com>"]
2022-05-09 15:00:50 +03:00
edition = "2021"
license = "Apache-2.0"
2021-01-09 11:19:24 +03:00
description = "format Hurl files"
documentation = "https://hurl.dev"
homepage = "https://hurl.dev"
repository = "https://github.com/Orange-OpenSource/hurl"
2020-11-02 20:30:13 +03:00
[features]
# Treat warnings as a build error.
strict = []
[dependencies]
2021-07-03 14:51:55 +03:00
atty = "0.2.14"
2023-01-09 15:15:41 +03:00
base64 = "0.21.0"
2023-05-03 06:02:29 +03:00
clap = { version = "4.2.7", features = ["cargo", "wrap_help"] }
2021-07-03 14:51:55 +03:00
colored = "2.0.0"
2023-05-03 16:32:58 +03:00
hurl_core = { version = "3.0.0", path = "../hurl_core" }
2023-04-21 15:52:33 +03:00
regex = "1.8.1"
2020-11-02 20:30:13 +03:00
[dev-dependencies]
2023-02-07 11:21:23 +03:00
proptest = "1.1.0"
2020-11-02 20:30:13 +03:00