Skip to content

Commit

Permalink
Update some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
0HyperCube committed Dec 7, 2024
1 parent 99ac723 commit f2274b3
Show file tree
Hide file tree
Showing 11 changed files with 1,771 additions and 1,067 deletions.
586 changes: 281 additions & 305 deletions Cargo.lock

Large diffs are not rendered by default.

26 changes: 13 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,40 +51,40 @@ ctor = "0.2"
convert_case = "0.6"
derivative = "2.2"
tempfile = "3.6"
thiserror = "1.0"
thiserror = "2"
anyhow = "1.0"
proc-macro2 = "1"
quote = "1.0"
axum = "0.7"
chrono = "0.4"
ron = "0.8"
fastnoise-lite = "1.1"
spirv-std = { git = "https://github.com/GraphiteEditor/rust-gpu.git" }
wgpu-types = "22"
wgpu = { git = "https://github.com/gfx-rs/wgpu.git", features = ["strict_asserts"] } # TODO switch back to stable when a release is made
spirv-std = { git = "https://github.com/Rust-GPU/rust-gpu.git" }
wgpu-types = "23"
wgpu = "23"
once_cell = "1.13" # Remove when `core::cell::LazyCell` (<https://doc.rust-lang.org/core/cell/struct.LazyCell.html>) is stabilized in Rust 1.80 and we bump our MSRV
wasm-bindgen = "=0.2.95" # NOTICE: ensure this stays in sync with the `wasm-bindgen-cli` version in `website/content/volunteer/guide/getting-started/_index.md`. We pin this version because wasm-bindgen upgrades may break various things.
wasm-bindgen = "=0.2.99" # NOTICE: ensure this stays in sync with the `wasm-bindgen-cli` version in `website/content/volunteer/guide/getting-started/_index.md`. We pin this version because wasm-bindgen upgrades may break various things.
wasm-bindgen-futures = "0.4"
js-sys = "=0.3.72"
web-sys = "=0.3.72"
js-sys = "=0.3.76"
web-sys = "=0.3.76"
winit = "0.29"
url = "2.5"
tokio = { version = "1.29", features = ["fs", "io-std"] }
vello = { git = "https://github.com/0hypercube/vello", branch = "latest-wgpu" } # TODO switch back to stable when a release is made
resvg = "0.42"
usvg = "0.42"
vello = { git = "https://github.com/linebender/vello.git", rev = "3275ec8" } # TODO switch back to stable when a release is made
resvg = "0.44"
usvg = "0.44"
rand = { version = "0.8", default-features = false }
rand_chacha = "0.3"
glam = { version = "0.28", default-features = false, features = ["serde"] }
glam = { version = "0.29", default-features = false, features = ["serde"] }
base64 = "0.22"
image = { version = "0.25", default-features = false, features = ["png"] }
rustybuzz = "0.17"
rustybuzz = "0.20"
spirv = "0.3"
fern = { version = "0.6", features = ["colored"] }
num_enum = "0.7"
num-derive = "0.4"
num-traits = { version = "0.2", default-features = false, features = ["i128"] }
specta = { git = "https://github.com/oscartbeaumont/specta.git", features = [
specta = { git = "https://github.com/0hypercube/specta.git", features = [
"glam",
"derive",
# "typescript",
Expand Down
2 changes: 1 addition & 1 deletion editor/src/messages/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub enum Message {
/// Provides an impl of `specta::Type` for `MessageDiscriminant`, the struct created by `impl_message`.
/// Specta isn't integrated with `impl_message`, so a remote impl must be provided using this struct.
impl specta::Type for MessageDiscriminant {
fn inline(_type_map: &mut specta::TypeMap, _generics: specta::Generics) -> specta::DataType {
fn inline(_type_map: &mut specta::TypeCollection, _generics: specta::Generics) -> specta::DataType {
specta::DataType::Any
}
}
2 changes: 1 addition & 1 deletion libraries/bezier-rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ documentation = "https://graphite.rs/libraries/bezier-rs/"

[dependencies]
# Required dependencies
glam = { version = "0.28", features = ["serde"] }
glam = { workspace = true, features = ["serde"] }

# Optional local dependencies
dyn-any = { version = "0.3.0", path = "../dyn-any", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion libraries/dyn-any/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dyn-any-derive = { path = "derive", optional = true }

# Optional dependencies
log = { version = "0.4", optional = true }
glam = { version = "0.28", optional = true, default-features = false }
glam = { version = "0.29", optional = true, default-features = false }
reqwest = { version = "0.12", optional = true, default-features = false }

[package.metadata.docs.rs]
Expand Down
6 changes: 3 additions & 3 deletions libraries/path-bool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ parsing = []
default = ["parsing"]

[dependencies]
glam = "0.28.0"
glam = "0.29.0"
regex = "1.10.6"
slotmap = "1.0.7"

[dev-dependencies]
glob = "0.3"
svg = "0.13"
resvg = "0.42"
svg = "0.18"
resvg = "0.44"
image = "0.24"

# Required dependencies
Expand Down
Loading

0 comments on commit f2274b3

Please sign in to comment.