Skip to content

Commit 940339c

Browse files
committed
Update size assertion
1 parent 54c8d77 commit 940339c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ regex = { version = "1.10.2" }
129129
rustc-hash = { version = "2.0.0" }
130130
rustc-stable-hash = { version = "0.1.2" }
131131
# When updating salsa, make sure to also update the revision in `fuzz/Cargo.toml`
132-
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "7764e21b0e00409095306c6f15b292d1e088b94d" }
132+
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "2b5188778e91a5ab50cb7d827148caf7eb2f4630" }
133133
schemars = { version = "0.8.16" }
134134
seahash = { version = "4.1.0" }
135135
serde = { version = "1.0.197", features = ["derive"] }

crates/ty_python_semantic/src/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9200,7 +9200,7 @@ impl<'db> BoundSuperType<'db> {
92009200
// Make sure that the `Type` enum does not grow unexpectedly.
92019201
#[cfg(not(debug_assertions))]
92029202
#[cfg(target_pointer_width = "64")]
9203-
static_assertions::assert_eq_size!(Type, [u8; 24]);
9203+
static_assertions::assert_eq_size!(Type, [u8; 16]);
92049204

92059205
#[cfg(test)]
92069206
pub(crate) mod tests {

fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ty_python_semantic = { path = "../crates/ty_python_semantic" }
3030
ty_vendored = { path = "../crates/ty_vendored" }
3131

3232
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer", default-features = false }
33-
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "7764e21b0e00409095306c6f15b292d1e088b94d" }
33+
salsa = { git = "https://github.com/salsa-rs/salsa.git", rev = "2b5188778e91a5ab50cb7d827148caf7eb2f4630" }
3434
similar = { version = "2.5.0" }
3535
tracing = { version = "0.1.40" }
3636

0 commit comments

Comments
 (0)