Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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 .tool-versions
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ golang 1.22.0
nodejs 16.20.2
shellcheck 0.7.1
yarn 1.22.22
rust 1.74.0
rust 1.78.0
python 3.11.9
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Bumped MSRV to Rust 1.78.0.

## v0.5.2

SCIP schema:
Expand Down
8 changes: 5 additions & 3 deletions bindings/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ SCIP (pronunciation: "skip") is a language-agnostic protocol for indexing source
repository = "https://github.com/sourcegraph/scip"
readme = "../../README.md"

# We need >= 1.60.0 because the generated code uses
# https://doc.rust-lang.org/std/vec/struct.Vec.html#method.spare_capacity_mut
rust-version = "1.60.0"
# We need >= 1.78.0 because: we only test against that
# in the CI (we use protobuf-codegen in CI, and that
# has Cargo.lock version 4, which requires Rust >= 1.78.0).
# https://github.com/solana-foundation/anchor/issues/3392#issuecomment-2508412018
rust-version = "1.78.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
2 changes: 2 additions & 0 deletions cmd/scip/tests/reprolang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ include = [
"src/*",
]

rust-version = "1.78.0"

[lib]
path = "bindings/rust/lib.rs"

Expand Down