Update dependencies and reuse the same usvg version

This commit is contained in:
Keavon Chambers 2024-01-17 20:13:35 -08:00
parent b4dccb8655
commit 3f76526d6d
4 changed files with 448 additions and 427 deletions

868
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -68,7 +68,7 @@ url = "2.4.0"
tokio = { version = "1.29", features = ["fs", "io-std"] } tokio = { version = "1.29", features = ["fs", "io-std"] }
vello = { git = "https://github.com/linebender/vello", version = "0.0.1" } vello = { git = "https://github.com/linebender/vello", version = "0.0.1" }
vello_svg = { git = "https://github.com/linebender/vello", version = "0.0.1" } vello_svg = { git = "https://github.com/linebender/vello", version = "0.0.1" }
resvg = { version = "0.35.0" } resvg = { version = "0.36.0" }
rand = { version = "0.8.5", default-features = false } rand = { version = "0.8.5", default-features = false }
rand_chacha = { version = "0.3.1" } rand_chacha = { version = "0.3.1" }
bezier-rs = { path = "libraries/bezier-rs", features = ["dyn-any"] } bezier-rs = { path = "libraries/bezier-rs", features = ["dyn-any"] }
@ -86,7 +86,7 @@ num-traits = { version = "0.2.15", default-features = false, features = [
] } ] }
js-sys = { version = "0.3.55" } js-sys = { version = "0.3.55" }
web-sys = { version = "0.3.55" } web-sys = { version = "0.3.55" }
usvg = "0.35.0" usvg = "0.36.0"
spirv = "0.2.0" spirv = "0.2.0"
fern = { version = "0.6", features = ["colored"] } fern = { version = "0.6", features = ["colored"] }

View File

@ -49,7 +49,6 @@ notice = "warn"
# output a note when they are encountered. # output a note when they are encountered.
ignore = [ ignore = [
#"RUSTSEC-0000-0000", #"RUSTSEC-0000-0000",
"RUSTSEC-2020-0071", # This has been fixed in the version of chrono we use
] ]
# Threshold for security vulnerabilities, any vulnerability with a CVSS score # Threshold for security vulnerabilities, any vulnerability with a CVSS score
# lower than the range specified will be ignored. Note that ignored advisories # lower than the range specified will be ignored. Note that ignored advisories

View File

@ -46,6 +46,7 @@ dyn-any = { workspace = true }
graphene-core = { path = "../node-graph/gcore" } graphene-core = { path = "../node-graph/gcore" }
graphene-std = { path = "../node-graph/gstd", features = ["serde"] } graphene-std = { path = "../node-graph/gstd", features = ["serde"] }
num_enum = "0.6.1" num_enum = "0.6.1"
usvg = { workspace = true }
wasm-bindgen = { workspace = true, optional = true } wasm-bindgen = { workspace = true, optional = true }
wasm-bindgen-futures = { workspace = true, optional = true } wasm-bindgen-futures = { workspace = true, optional = true }
# Remove when `core::cell::LazyCell` is stabilized (<https://doc.rust-lang.org/core/cell/struct.LazyCell.html>) # Remove when `core::cell::LazyCell` is stabilized (<https://doc.rust-lang.org/core/cell/struct.LazyCell.html>)
@ -57,7 +58,6 @@ web-sys = { workspace = true, features = [
"CanvasRenderingContext2d", "CanvasRenderingContext2d",
"TextMetrics", "TextMetrics",
] } ] }
usvg = "0.37"
[dev-dependencies] [dev-dependencies]