Skip to content
Open

Fit #64

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
133 changes: 100 additions & 33 deletions Cargo.lock

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

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ crate-type = ["lib"]
[features]
default = []
test-api = []
examples = ["macroquad-examples", "egui-examples"]
macroquad-examples = ["macroquad"]
egui-examples = ["egui", "eframe", "egui_extras"]

Expand Down Expand Up @@ -43,8 +44,8 @@ rustup-toolchain = "0.1.9"
[dependencies]
# Example dependencies - dev dependencies can't currently be optional,
# but examples are behind the examples features
macroquad = { version = "0.4.13", optional = true }
egui = { version = "0.28.1", optional = true }
macroquad = { version = "0.4.14", optional = true }
egui = { version = "0.31.1", optional = true }
eframe = { version = "0.28.1", optional = true }
egui_extras = { version = "0.28.1", features = [
"default",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,6 @@ The crate is currently usable but new! Breaking changes may be relatively freque
> If your PR changes the public API, one of the checks will fail by default.
> If the changes to the public API were intentional you can update the snapshot by running:
>
> `INSTA_UPDATE=always && cargo test --features test-api`
> `INSTA_UPDATE=always cargo test --features test-api`

Contributions are always welcome 🤗
Loading