Skip to content

Commit

Permalink
Bump MSRV to 1.81.0
Browse files Browse the repository at this point in the history
  • Loading branch information
EpicEric committed Dec 16, 2024
1 parent e00c4b9 commit 1308b0e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: Tests
runs-on: ubuntu-latest
env:
RUST_MSRV: 1.79.0
RUST_MSRV: 1.81.0
steps:
- uses: actions/checkout@v4
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

### Changed

- **BREAKING**: Bump MSRV to 1.79.0.
- **BREAKING**: Bump MSRV to 1.81.0.
- **BREAKING**: Rename `--allow-provided-subdomains` to `--allow-requested-subdomains`.
- Change `--random-subdomain-seed=fingerprint` to also take user into account.
- Modify exports to live within `lib.rs`.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "sandhole"
version = "0.1.4"
edition = "2021"
rust-version = "1.79.0"
rust-version = "1.81.0"
description = "Expose HTTP/SSH/TCP services through SSH port forwarding."
repository = "https://github.com/EpicEric/sandhole"
homepage = "https://epiceric.github.io/sandhole/"
Expand Down
2 changes: 1 addition & 1 deletion src/tcp.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use std::{collections::HashSet, sync::Arc, time::Duration};

use crate::{
connection_handler::ConnectionHandler,
connections::{ConnectionMap, ConnectionMapReactor},
droppable_handle::DroppableHandle,
connection_handler::ConnectionHandler,
ssh::SshTunnelHandler,
tcp_alias::{BorrowedTcpAlias, TcpAlias, TcpAliasKey},
};
Expand Down

0 comments on commit 1308b0e

Please sign in to comment.