mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-07-07 15:55:00 +00:00
Update dependencies and reuse the same usvg version
This commit is contained in:
parent
b4dccb8655
commit
3f76526d6d
4 changed files with 448 additions and 427 deletions
868
Cargo.lock
generated
868
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -68,7 +68,7 @@ url = "2.4.0"
|
|||
tokio = { version = "1.29", features = ["fs", "io-std"] }
|
||||
vello = { 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_chacha = { version = "0.3.1" }
|
||||
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" }
|
||||
web-sys = { version = "0.3.55" }
|
||||
usvg = "0.35.0"
|
||||
usvg = "0.36.0"
|
||||
spirv = "0.2.0"
|
||||
fern = { version = "0.6", features = ["colored"] }
|
||||
|
||||
|
|
|
@ -49,7 +49,6 @@ notice = "warn"
|
|||
# output a note when they are encountered.
|
||||
ignore = [
|
||||
#"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
|
||||
# lower than the range specified will be ignored. Note that ignored advisories
|
||||
|
|
|
@ -46,6 +46,7 @@ dyn-any = { workspace = true }
|
|||
graphene-core = { path = "../node-graph/gcore" }
|
||||
graphene-std = { path = "../node-graph/gstd", features = ["serde"] }
|
||||
num_enum = "0.6.1"
|
||||
usvg = { workspace = true }
|
||||
wasm-bindgen = { 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>)
|
||||
|
@ -57,7 +58,6 @@ web-sys = { workspace = true, features = [
|
|||
"CanvasRenderingContext2d",
|
||||
"TextMetrics",
|
||||
] }
|
||||
usvg = "0.37"
|
||||
|
||||
|
||||
[dev-dependencies]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue