Skip to content

Commit

Permalink
chore(deps): Document Vector's MSRV policy (#19646)
Browse files Browse the repository at this point in the history
* chore(deps): Document Vector's MSRV policy

Signed-off-by: Jesse Szwedko <[email protected]>

* Update docs/DEVELOPING.md

Co-authored-by: neuronull <[email protected]>

---------

Signed-off-by: Jesse Szwedko <[email protected]>
Co-authored-by: neuronull <[email protected]>
  • Loading branch information
jszwedko and neuronull authored Jan 18, 2024
1 parent 2adf672 commit cc9203b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ publish = false
default-run = "vector"
autobenches = false # our benchmarks are not runnable on their own either way
# Minimum supported rust version
# See docs/DEVELOPING.md for policy
rust-version = "1.71.1"

[[bin]]
Expand Down
9 changes: 9 additions & 0 deletions docs/DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- [Panics](#panics)
- [Feature flags](#feature-flags)
- [Dependencies](#dependencies)
- [Minimum Supported Rust Version](#minimum-supported-rust-version)
- [Guidelines](#guidelines)
- [Sink healthchecks](#sink-healthchecks)
- [Testing](#testing)
Expand Down Expand Up @@ -263,6 +264,14 @@ If a dependency is required only by one or multiple components, but not by
Vector's core, make it optional and add it to the list of dependencies of
the features corresponding to these components in `Cargo.toml`.

### Minimum Supported Rust Version

Vector's Minimum Supported Rust Version (MSRV) is indicated by the `rust-version` specified in
`Cargo.toml`.

Currently, Vector has no policy around MSRV. It can be bumped at any time if required by
a dependency or to take advantage of a new language feature in Vector's codebase.

## Guidelines

### Sink healthchecks
Expand Down

0 comments on commit cc9203b

Please sign in to comment.