Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump Rust to 1.82 #19349

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7af1732
chore: Bump Rust to 1.82
osiewicz Oct 17, 2024
41e8aa4
clippy
osiewicz Oct 17, 2024
9a8ccd5
Introduce a new /billing/monthly_spend API (#19354)
as-cii Oct 17, 2024
4053e1d
Subtract FREE_TIER_MONTHLY_SPENDING_LIMIT from reported monthly spend…
as-cii Oct 17, 2024
267a06c
Support uppercase extensions in image preview (#19304)
notpeter Oct 17, 2024
34d3bc8
collab: Anchor new subscription's billing cycle to the first of the m…
maxdeviant Oct 17, 2024
56a2051
Make terminal.option_as_meta=false in default settings (#19364)
notpeter Oct 17, 2024
62d58a3
ssh remote: Reset missed heartbeats on connection activity (#19368)
mrnugget Oct 17, 2024
1262ae9
remote ssh: Make "get permalink to line" work (#19366)
mrnugget Oct 17, 2024
2b4801e
Update all occurrences of `option_as_meta` to new default value (#19369)
MrSubidubi Oct 17, 2024
c4b90ab
workspace: Fix inconsistent paths order serialization (#19232)
eth0net Oct 17, 2024
af2e2a6
ssh remoting: Handle OpenNewBuffer request (#19373)
mrnugget Oct 17, 2024
5c9deac
Always have cmd-o open a local project (#19376)
ConradIrwin Oct 17, 2024
8a7bff3
ci: Improve GitHub Action modularity (#18861)
notpeter Oct 17, 2024
da0181b
Restructure assistant edits to show all changes in a proposed-change …
maxbrunsfeld Oct 17, 2024
b9ecbd4
ci: Check spelling separately from formatting (#19385)
maxdeviant Oct 17, 2024
35e3958
paths: Update doc comment (#19388)
maxdeviant Oct 17, 2024
d26918d
Merge branch 'main' into rust-1.82
osiewicz Oct 22, 2024
74d5fdd
Merge branch 'main' into rust-1.82
osiewicz Oct 27, 2024
a584706
Merge branch 'main' into rust-1.82
osiewicz Oct 28, 2024
1a8811c
Merge branch 'main' into rust-1.82
osiewicz Nov 13, 2024
7c323a8
Merge branch 'main' into rust-1.82
osiewicz Nov 15, 2024
2ce8f0e
Merge branch 'main' into rust-1.82
osiewicz Nov 18, 2024
755bfef
Merge branch 'main' into rust-1.82
osiewicz Nov 24, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile-collab
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax = docker/dockerfile:1.2

FROM rust:1.81-bookworm as builder
FROM rust:1.82-bookworm as builder
WORKDIR app
COPY . .

Expand Down
2 changes: 1 addition & 1 deletion crates/gpui/src/platform/mac/dispatcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ pub(crate) mod dispatch_sys {

use dispatch_sys::*;
pub(crate) fn dispatch_get_main_queue() -> dispatch_queue_t {
unsafe { addr_of!(_dispatch_main_q) as *const _ as dispatch_queue_t }
addr_of!(_dispatch_main_q) as *const _ as dispatch_queue_t
}

pub(crate) struct MacDispatcher {
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.81"
channel = "1.82"
profile = "minimal"
components = [ "rustfmt", "clippy" ]
targets = [ "x86_64-apple-darwin", "aarch64-apple-darwin", "x86_64-unknown-linux-gnu", "wasm32-wasip1", "x86_64-pc-windows-msvc" ]
Loading