Skip to content
This repository was archived by the owner on Jul 17, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxide"
version = "0.2.6"
version = "0.2.7"
edition = "2021"
build = "build.rs"

Expand Down Expand Up @@ -31,7 +31,7 @@ regex = "1"
num-traits = "^0.2.14"
oauth2 = "4.1"
open = "^2.1.1"
oxide-api = "0.1.0-rc.38"
oxide-api = "0.1.0-rc.39"
#oxide-api = { path= "../oxide.rs/oxide" }
parse-display = "^0.5.5"
pulldown-cmark = "^0.9.1"
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ Updating the API spec is as simple as updating the [`spec.json`](spec.json) file
you `cargo build`. It likely might need some tender love and care to make it a nice command like the other generated ones
if it is out of the ordinary.

**Important: Currently we are transitioning to use progenitor as a client generator instead of the current client generator.**
**This means that as a temporary work around the spec.json file must be copied from oxide.rs and you must make sure all tags don't change**

Only `create`, `edit`, `view/get`, `list`, `delete` commands are generated. The rest are bespoke and any generation lead to something
that seemed harder to maintain over time. But if you are brave you can try.

Expand Down Expand Up @@ -73,4 +76,3 @@ Then, simply run `make`. Binaries will be available in `cross/`.
If you want to only build one of the cross targets, supply the `CROSS_TARGETS` environment variable:

CROSS_TARGETS=x86_64-unknown-linux-musl make

Loading