Skip to content

Commit

Permalink
Update dependencies (#793)
Browse files Browse the repository at this point in the history
This doesn't require the most recent version of `log` as there has been
some churn recently and the new features aren't used here.
  • Loading branch information
waywardmonkeys authored Jan 18, 2025
1 parent d5ebe12 commit d77a13b
Show file tree
Hide file tree
Showing 8 changed files with 187 additions and 217 deletions.
364 changes: 173 additions & 191 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ clippy.wildcard_dependencies = "warn"
vello = { version = "0.3.0", path = "vello" }
vello_encoding = { version = "0.3.0", path = "vello_encoding" }
vello_shaders = { version = "0.3.0", path = "vello_shaders" }
bytemuck = { version = "1.20.0", features = ["derive"] }
skrifa = "0.26.0"
bytemuck = { version = "1.21.0", features = ["derive"] }
skrifa = "0.26.4"
# The version of kurbo used below should be kept in sync
# with the version of kurbo used by peniko.
peniko = "0.3.0"
Expand All @@ -107,16 +107,16 @@ kurbo = "0.11.1"
futures-intrusive = "0.5.0"
smallvec = "1.13.2"
static_assertions = "1.1.0"
thiserror = "2.0.3"
thiserror = "2.0.11"

# NOTE: Make sure to keep this in sync with the version badge in README.md and vello/README.md
wgpu = { version = "23.0.1" }
log = "0.4.22"
image = { version = "0.25.5", default-features = false }

# Used for examples
clap = "4.5.21"
anyhow = "1.0.93"
clap = "4.5.26"
anyhow = "1.0.95"
pollster = "0.4.0"
web-time = "1.1.0"
wgpu-profiler = "0.19.0"
Expand Down
4 changes: 2 additions & 2 deletions examples/headless/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ anyhow = { workspace = true }
clap = { workspace = true, features = ["derive"] }

pollster = { workspace = true }
env_logger = "0.11.5"
png = "0.17.14"
env_logger = "0.11.6"
png = "0.17.16"
futures-intrusive = { workspace = true }
2 changes: 1 addition & 1 deletion examples/simple/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ workspace = true
vello = { version = "0.3.0", path = "../../vello" }
anyhow = "1.0.93"
pollster = "0.4.0"
winit = "0.30.5"
winit = "0.30.8"
8 changes: 4 additions & 4 deletions examples/with_winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ clap = { workspace = true, features = ["derive"] }
pollster = { workspace = true }
wgpu-profiler = { workspace = true, optional = true }

winit = "0.30.5"
winit = "0.30.8"
log = { workspace = true }

# We're still using env-logger, but we want to use tracing spans to allow using
Expand All @@ -48,20 +48,20 @@ kurbo = { workspace = true, optional = true }

[target.'cfg(not(target_os = "android"))'.dependencies]
# We use android_logger on Android
env_logger = "0.11.5"
env_logger = "0.11.6"

[target.'cfg(not(any(target_arch = "wasm32", target_os = "android")))'.dependencies]
vello = { workspace = true, features = ["hot_reload"] }
vello_shaders = { workspace = true, features = ["compile"] }
notify-debouncer-full = "0.4.0"
notify-debouncer-full = "0.5.0"


[target.'cfg(target_os = "android")'.dependencies]
winit = { version = "0.30.5", features = ["android-native-activity"] }
android_logger = "0.14.1"

tracing_android_trace = "0.1.1"
tracing-subscriber = { version = "0.3.18", default-features = false, features = [
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"std",
"registry",
] }
Expand Down
6 changes: 0 additions & 6 deletions vello/src/debug/renderer.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
// Copyright 2023 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

#![expect(
clippy::allow_attributes,
clippy::allow_attributes_without_reason,
reason = "Generated by derive macro"
)]

use super::DebugLayers;
use crate::{
debug::validate::{validate_line_soup, LineEndpoint},
Expand Down
6 changes: 0 additions & 6 deletions vello/src/debug/validate.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
// Copyright 2023 the Vello Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT

#![expect(
clippy::allow_attributes,
clippy::allow_attributes_without_reason,
reason = "Generated by derive macro"
)]

use {
bytemuck::{Pod, Zeroable},
std::{collections::BTreeSet, fmt},
Expand Down
4 changes: 2 additions & 2 deletions vello_shaders/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ workspace = true

[dependencies]
bytemuck = { workspace = true, optional = true }
naga = { version = "23.0.0", features = ["wgsl-in"], optional = true }
naga = { version = "23.1.0", features = ["wgsl-in"], optional = true }
thiserror = { workspace = true, optional = true }
vello_encoding = { workspace = true, optional = true }

[build-dependencies]
naga = { version = "23.0.0", features = ["wgsl-in"] }
naga = { version = "23.1.0", features = ["wgsl-in"] }
thiserror = { workspace = true }

0 comments on commit d77a13b

Please sign in to comment.