Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoSign in
Socket

cc

Package Overview
Dependencies
Maintainers
0
Versions
203
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cc - cargo Package Compare versions

Comparing version
1.2.49
to
1.2.50
+1
-1
.cargo_vcs_info.json
{
"git": {
"sha1": "9ec00e4bf2a8b087760245b0ec721fb3bd59731f"
"sha1": "0f78e0c502645402187a15103af78caac5659a7c"
},
"path_in_vcs": ""
}

@@ -13,3 +13,3 @@ # This file is automatically @generated by Cargo.

name = "cc"
version = "1.2.49"
version = "1.2.50"
dependencies = [

@@ -16,0 +16,0 @@ "find-msvc-tools",

@@ -16,3 +16,3 @@ # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO

name = "cc"
version = "1.2.49"
version = "1.2.50"
authors = ["Alex Crichton <alex@alexcrichton.com>"]

@@ -19,0 +19,0 @@ build = false

@@ -10,2 +10,9 @@ # Changelog

## [1.2.50](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.49...cc-v1.2.50) - 2025-12-19
### Other
- Add tests for `OUT_DIR` escape for '..' file paths (#1631)
- Fix #283: Make warnings(false) actually suppress compiler warnings ([#1633](https://github.com/rust-lang/cc-rs/pull/1633))
## [1.2.49](https://github.com/rust-lang/cc-rs/compare/cc-v1.2.48...cc-v1.2.49) - 2025-12-06

@@ -12,0 +19,0 @@

@@ -326,2 +326,3 @@ //! Miscellaneous helpers for running commands

}
let obj = dst

@@ -328,0 +329,0 @@ .join(format!("{:016x}-{}", hasher.finish(), basename))

@@ -569,2 +569,9 @@ use crate::{

pub(crate) fn warnings_suppression_flags(&self) -> &'static str {
match *self {
ToolFamily::Msvc { .. } => "-W0",
ToolFamily::Gnu | ToolFamily::Clang { .. } => "-w",
}
}
/// What the flags to enable extra warnings

@@ -571,0 +578,0 @@ pub(crate) fn extra_warnings_flags(&self) -> Option<&'static str> {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display