-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 874 Bytes
/
Cargo.toml
File metadata and controls
24 lines (22 loc) · 874 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "generator"
version = "0.1.0"
edition = "2021"
description = "A Rust-based code generator that creates type-safe client libraries for TypeScript, Python, and Golang from OpenAPI 3.0 specifications"
authors = ["ADI Family <team@adi-family.com>"]
license = "MIT"
repository = "https://github.com/adi-family/generator"
homepage = "https://github.com/adi-family/generator"
keywords = ["openapi", "code-generation", "api-client", "typescript", "python"]
categories = ["development-tools", "api-bindings", "web-programming"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
openapiv3 = "2.0"
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
tera = "1.20"
indexmap = "2.0"