diff --git a/Cargo.lock b/Cargo.lock index 8625cbfec..82f494c00 100644 Binary files a/Cargo.lock and b/Cargo.lock differ diff --git a/Cargo.toml b/Cargo.toml index e7445ea08..776cdb6d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -56,7 +56,7 @@ futures-concurrency = "7.4.3" globset = "^0.4.13" hex = "0.4.3" http = "0.2.9" -image = "0.24.7" +image = "0.25.1" itertools = "0.12.0" lending-stream = "1.0.0" libc = "0.2" @@ -85,7 +85,7 @@ tracing-appender = "0.2.3" tracing-test = "^0.2.4" uhlc = "=0.5.2" uuid = "1.5.0" -webp = "0.2.6" +webp = "0.3.0" [patch.crates-io] # Proper IOS Support @@ -102,6 +102,9 @@ libp2p-stream = { git = "https://github.com/spacedriveapp/rust-libp2p.git", rev blake3 = { git = "https://github.com/spacedriveapp/blake3.git", rev = "d3aab416c12a75c2bfabce33bcd594e428a79069" } +# Due to image crate version bump +pdfium-render = { git = "https://github.com/fogodev/pdfium-render.git", rev = "e7aa1111f441c49e857cebda15b4e51b24356aaa" } + [profile.dev] # Make compilation faster on macOS split-debuginfo = "unpacked" @@ -117,8 +120,8 @@ incremental = false # Optimize release builds [profile.release] -panic = "abort" # Strip expensive panic clean-up logic +panic = "abort" # Strip expensive panic clean-up logic codegen-units = 1 # Compile crates one after another so the compiler can optimize better -lto = true # Enables link to optimizations -opt-level = "s" # Optimize for binary size -strip = true # Remove debug symbols +lto = true # Enables link to optimizations +opt-level = "s" # Optimize for binary size +strip = true # Remove debug symbols