Skip to content

Commit

Permalink
OpenAPI converter: initial commit, still WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
swallez committed Jul 10, 2023
1 parent 585ff3b commit 6cd165c
Show file tree
Hide file tree
Showing 25 changed files with 9,224 additions and 0 deletions.
2 changes: 2 additions & 0 deletions openapi-converter/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.idea
target
372 changes: 372 additions & 0 deletions openapi-converter/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions openapi-converter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[workspace]
members = [
"clients_schema",
"openapi_to_clients_schema",
]
7 changes: 7 additions & 0 deletions openapi-converter/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Elasticsearch Rust client generator and other code-generation utilities written in Rust.

Workspace members:

* [`clients_schema`](./clients_schema/): a Rust implementation of the [Elasticsearch specification schema](https://github.com/elastic/elasticsearch-specification/blob/main/compiler/src/model/metamodel.ts) metamodel.
* [`openapi_to_clients_schema`](./openapi_to_clients_schema): translate an OpenAPI specification to an Elasticsearch
schema that can be used as input for code generation.
Loading

0 comments on commit 6cd165c

Please sign in to comment.