OpenAPI-Parser/Cargo.toml

20 lines
613 B
TOML
Raw Normal View History

2023-02-02 09:06:39 +00:00
[package]
name = "openapi-parser"
2023-02-02 13:10:16 +00:00
description = "Extract schemas definitions tree from OpenAPI documents"
authors = ["Pierre Hubert <pierre.hubert.git@communiquons.org>"]
license = "MIT"
repository = "https://gitea.communiquons.org/pierre/OpenAPI-Parser"
2023-02-07 13:59:41 +00:00
version = "0.4.3"
2023-02-02 09:06:39 +00:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-02-02 11:14:01 +00:00
log = "0.4.17"
env_logger = "0.10.0"
clap = { version = "4.1.1", features = ["derive"] }
okapi = "0.7.0-rc.1"
2023-02-02 13:06:13 +00:00
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.17"
2023-02-02 13:06:13 +00:00
serde_json = "1.0.91"