diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2021-10-12 16:45:07 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2021-10-13 16:21:30 -0700 |
commit | 3a45076685471b969596ef5b58823ce8074224c6 (patch) | |
tree | 9de4a3606c75318958f363a7c7e8a568ad2dc513 /rust/fatcat-openapi/README.md | |
parent | d9ff4bc8fe0a6daa39061fea7eb1830fd7b445bf (diff) | |
download | fatcat-3a45076685471b969596ef5b58823ce8074224c6.tar.gz fatcat-3a45076685471b969596ef5b58823ce8074224c6.zip |
rust codegen for v0.4
Diffstat (limited to 'rust/fatcat-openapi/README.md')
-rw-r--r-- | rust/fatcat-openapi/README.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/rust/fatcat-openapi/README.md b/rust/fatcat-openapi/README.md index 78d95fbf..327fe3a8 100644 --- a/rust/fatcat-openapi/README.md +++ b/rust/fatcat-openapi/README.md @@ -12,8 +12,8 @@ To see how to make this your own, look here: [README](https://github.com/swagger-api/swagger-codegen/blob/master/README.md) -- API version: 0.3.3 -- Build date: 2021-04-12T17:36:30.927Z +- API version: 0.4.0 +- Build date: 2021-10-12T23:51:46.767Z For more information, please visit [https://fatcat.wiki](https://fatcat.wiki) This autogenerated project defines an API crate `fatcat` which contains: @@ -95,6 +95,7 @@ cargo run --example client UpdateEditgroup cargo run --example client GetEditor cargo run --example client GetEditorAnnotations cargo run --example client GetEditorEditgroups +cargo run --example client LookupEditor cargo run --example client UpdateEditor cargo run --example client CreateFile cargo run --example client CreateFileAutoBatch @@ -171,7 +172,7 @@ The server example is designed to form the basis for implementing your own serve * Set up a new Rust project, e.g., with `cargo init --bin`. * Insert `fatcat` into the `members` array under [workspace] in the root `Cargo.toml`, e.g., `members = [ "fatcat" ]`. -* Add `fatcat = {version = "0.3.3", path = "fatcat"}` under `[dependencies]` in the root `Cargo.toml`. +* Add `fatcat = {version = "0.4.0", path = "fatcat"}` under `[dependencies]` in the root `Cargo.toml`. * Copy the `[dependencies]` and `[dev-dependencies]` from `fatcat/Cargo.toml` into the root `Cargo.toml`'s `[dependencies]` section. * Copy all of the `[dev-dependencies]`, but only the `[dependencies]` that are required by the example server. These should be clearly indicated by comments. * Remove `"optional = true"` from each of these lines if present. |