hurl/packages/hurlfmt/Cargo.toml

24 lines
675 B
TOML
Raw Normal View History

2020-11-02 20:30:13 +03:00
[package]
name = "hurlfmt"
2024-04-24 14:56:06 +03:00
version = "5.0.0-SNAPSHOT"
2023-09-29 14:49:22 +03:00
authors = ["Fabrice Reix <fabrice.reix@orange.com>", "Jean-Christophe Amiel <jeanchristophe.amiel@orange.com>", "Filipe Pinto <filipe.pinto@orange.com>"]
2022-05-09 15:00:50 +03:00
edition = "2021"
license = "Apache-2.0"
2023-10-08 01:49:02 +03:00
description = "Format Hurl files"
documentation = "https://hurl.dev"
homepage = "https://hurl.dev"
repository = "https://github.com/Orange-OpenSource/hurl"
2024-05-07 09:28:30 +03:00
rust-version = "1.78.0"
2020-11-02 20:30:13 +03:00
[dependencies]
2024-05-02 06:01:58 +03:00
base64 = "0.22.1"
2024-08-16 06:02:19 +03:00
clap = { version = "4.5.16", features = ["cargo", "wrap_help"] }
2024-04-24 14:56:06 +03:00
hurl_core = { version = "5.0.0-SNAPSHOT", path = "../hurl_core" }
2024-08-06 06:01:56 +03:00
regex = "1.10.6"
2020-11-02 20:30:13 +03:00
[dev-dependencies]
2024-06-24 06:01:52 +03:00
proptest = "1.5.0"
2020-11-02 20:30:13 +03:00
2024-03-04 17:10:06 +03:00
[lints]
workspace = true