OpenAPI-Parser/Cargo.toml

20 lines
613 B
TOML
Raw Normal View History

2023-02-02 10:06:39 +01:00
[package]
name = "openapi-parser"
2023-02-02 14:10:16 +01: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-03 09:57:21 +01:00
version = "0.2.0"
2023-02-02 10:06:39 +01:00
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2023-02-02 12:14:01 +01: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 14:06:13 +01:00
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.17"
2023-02-02 14:06:13 +01:00
serde_json = "1.0.91"