Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update glam #151

Merged
merged 4 commits into from
Sep 10, 2024
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
correctly return `Some(_)`.
- **fixed:** `Value::as_array`, `Value::as_array_mut`, `Value::into_array` now
correctly return `Some(_)`.
- Extend `glam` version range to be <= 0.29

[#90]: https://github.com/EmbarkStudios/mirror-mirror/pull/90
[#110]: https://github.com/EmbarkStudios/mirror-mirror/pull/110
Expand Down
1 change: 0 additions & 1 deletion crates/mirror-mirror-macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
clippy::needless_borrow,
clippy::match_wildcard_for_single_variants,
clippy::if_let_mutex,
clippy::mismatched_target_os,
clippy::await_holding_lock,
clippy::match_on_vec_items,
clippy::imprecise_flops,
Expand Down
2 changes: 1 addition & 1 deletion crates/mirror-mirror/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ ordered-float = { version = "4", default-features = false }
serde = { version = "1.0.158", default-features = false, features = ["derive", "alloc"], optional = true }
speedy = { version = "0.8.5", optional = true }
syn = { version = "2.0", features = ["full", "parsing"], optional = true }
glam = { version = ">= 0.22, <= 0.25", optional = true }
glam = { version = ">= 0.22, <= 0.29", optional = true }
macaw = { version = "0.19", optional = true }

[dev-dependencies]
Expand Down
1 change: 0 additions & 1 deletion crates/mirror-mirror/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,6 @@
clippy::needless_borrow,
clippy::match_wildcard_for_single_variants,
clippy::if_let_mutex,
clippy::mismatched_target_os,
clippy::await_holding_lock,
clippy::match_on_vec_items,
clippy::imprecise_flops,
Expand Down
2 changes: 2 additions & 0 deletions crates/mirror-mirror/src/tests/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#![allow(clippy::dbg_macro)]

use crate::Reflect;

mod array;
Expand Down
11 changes: 3 additions & 8 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,23 @@
[advisories]
vulnerability = "allow"
unmaintained = "allow"

[bans]
multiple-versions = "deny"
deny = [
]

skip = [
# two versions of glam for now since macaw is
# unreleased for a little while, should fix soon
{ name = "glam" }
]

[sources]
unknown-registry = "deny"
unknown-git = "allow"
allow-registry = [
"https://github.com/rust-lang/crates.io-index",
]

[licenses]
unlicensed = "deny"
allow-osi-fsf-free = "neither"
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.92
copyleft = "deny"
allow = [
"Apache-2.0",
"MIT",
Expand Down
Loading