Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
de638df
[skip ci] Adding proto, dependencies and required
jubeormk1 Mar 3, 2026
fd01170
[skip ci] Adding sunset-sftp crate with basic SFTP server implementation
jubeormk1 Mar 4, 2026
1f38033
[skip ci] Adding @mkj contributions troubleshooting channel reception…
jubeormk1 Mar 4, 2026
f06643c
[skip ci] WIP: Adding demo sftp std example and testing
jubeormk1 Mar 4, 2026
8b585a8
[skip ci] Improved demo sftp std testing scripts
jubeormk1 Mar 5, 2026
8ef777f
CI updated
jubeormk1 Mar 5, 2026
5259179
CI fix: cargo fmt
jubeormk1 Mar 5, 2026
19f63d4
Addressing easier some points in the review
jubeormk1 Mar 10, 2026
e8cab8c
Fixing missing points in previous commit
jubeormk1 Mar 24, 2026
6be8a2c
removing size from demo/sftp/std build outputs
jubeormk1 Mar 24, 2026
7aaa7de
Fixing unnecessary duplicated lifetimes and tidying up
jubeormk1 Mar 24, 2026
74ff19a
Reverting changes to sshwire-derive/src/lib.rs
jubeormk1 Mar 25, 2026
91c3763
Removing new(&str) from `OpaqueFileHandle`
jubeormk1 Mar 26, 2026
1feecff
RUSTSEC-2024-0436: Fixing Paste to version 1.0.25
jubeormk1 Apr 4, 2026
635b173
Fixing typo in previous commit
jubeormk1 Apr 4, 2026
45f54ff
Extra typo. Running CI now to make sure that all is good
jubeormk1 Apr 4, 2026
fbe6fc6
sftp: simplify some lifetimes
mkj Apr 12, 2026
d15ecc7
Fix formatting for "sftp: simplify lifetimes"
mkj Apr 12, 2026
a5e42fa
Fix read refcount for ChanIn and ChanInOut clone()
mkj Mar 17, 2026
5c81041
Rust 1.88 min version
mkj Apr 1, 2026
0ead867
Update some outdated dependencies
mkj Apr 1, 2026
8149c7c
Fix some clippy warnings
mkj Apr 12, 2026
9c7ce51
pretty-hex isn't needed, plain hex format instead
mkj Apr 15, 2026
6287abc
Fix url typo in readme
mkj Apr 15, 2026
10ee61d
Remove rust-toolchain files
mkj Apr 15, 2026
6dea4d6
Delete update-toolchain.sh
mkj Apr 15, 2026
477237f
[skip ci] Deleted empty default feature
jubeormk1 Apr 16, 2026
53ce64e
[skip ci] Correcting typo "peak"
jubeormk1 Apr 16, 2026
fa819f0
[skip ci] Naively adding bug to WireError
jubeormk1 Apr 16, 2026
1482278
[skip ci] Documenting generic parameters for sftp structures
jubeormk1 Apr 17, 2026
0fa5e16
Using AtomicUsize instead of Mutex in sftpoutputchannelhandler.rs
jubeormk1 Apr 17, 2026
3b37af3
SftpOutputConsumer.receive_task exits on 0 byte reads
jubeormk1 Apr 17, 2026
27c116f
sftp: Add a ParseContext to sftpsource
mkj Apr 12, 2026
7c6186e
Fixing fmt to pass CI
jubeormk1 Apr 17, 2026
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ jobs:
all:
strategy:
matrix:
# 1.87 is an arbitrary minimum, tested to notice when it bumps
rust_version: [stable, nightly, 1.87]
# 1.88 is an arbitrary minimum, tested to notice when it bumps
rust_version: [stable, nightly, 1.88]
runs-on: ubuntu-latest
env:
RUSTUP_TOOLCHAIN: ${{ matrix.rust_version }}
Expand Down
Loading
Loading