File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed
Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -137,10 +137,6 @@ jobs:
137137 tail -f /dev/null
138138 docker exec alpine sh -c "apk update && apk add --no-cache git gcc make sqlite musl-dev linux-headers rust cargo bash curl pkgconf openssl-dev nodejs npm"
139139
140- - name : setup rust nightly
141- if : matrix.name != 'linux-musl'
142- uses : dtolnay/rust-toolchain@nightly
143-
144140 - name : windows install dependencies
145141 if : matrix.name == 'windows'
146142 run : choco install sqlite -y
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ MAKEFLAGS += -j$(CPUS)
3333# Compiler and flags
3434CC = gcc
3535CARGO_ENV = CARGO_TARGET_DIR=$(RUST_TARGET_DIR )
36- CARGO = $(CARGO_ENV ) cargo +nightly
36+ CARGO = $(CARGO_ENV ) cargo
3737CFLAGS = -Wall -Wextra -Wno-unused-parameter -I$(SRC_DIR ) -I$(LIBS_DIR )
3838
3939# Directories
@@ -73,7 +73,7 @@ else ifeq ($(PLATFORM),macos)
7373 LDFLAGS += -dynamiclib -undefined dynamic_lookup -headerpad_max_install_names -mmacosx-version-min=$(MACOS_MIN_VERSION)
7474 CFLAGS += -mmacosx-version-min=$(MACOS_MIN_VERSION)
7575 CARGO_ENV += MACOSX_DEPLOYMENT_TARGET=$(MACOS_MIN_VERSION)
76- CARGO = $(CARGO_ENV) cargo +nightly
76+ CARGO = $(CARGO_ENV) cargo
7777 STRIP = strip -x -S $@
7878 LIBS = -lmcp_ffi -framework CoreFoundation -framework Security -lresolv
7979 TEST_LIBS = -lpthread -ldl -lm
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ See [API.md](API.md) for complete API documentation with examples.
5252
5353### Requirements
5454
55- - ** Rust** : Nightly toolchain ( ` rustup default nightly ` )
55+ - ** Rust** : 1.85+ toolchain
5656- ** C Compiler** : gcc or clang
5757- ** Make** : GNU Make
5858
You can’t perform that action at this time.
0 commit comments