https://github.com/aspectunk/russh-sftp
SFTP subsystem supported server and client for Russh
https://github.com/aspectunk/russh-sftp
ftp ftp-client ftp-server native rust sftp sftp-client sftp-server
Last synced: 10 months ago
JSON representation
SFTP subsystem supported server and client for Russh
- Host: GitHub
- URL: https://github.com/aspectunk/russh-sftp
- Owner: AspectUnk
- License: apache-2.0
- Created: 2022-12-09T11:20:58.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2025-04-24T21:44:54.000Z (about 1 year ago)
- Last Synced: 2025-08-31T08:53:46.713Z (10 months ago)
- Topics: ftp, ftp-client, ftp-server, native, rust, sftp, sftp-client, sftp-server
- Language: Rust
- Homepage:
- Size: 208 KB
- Stars: 75
- Watchers: 3
- Forks: 29
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Russh SFTP
SFTP subsystem supported server and client for [Russh](https://github.com/warp-tech/russh) and more!
Crate can provide compatibility with anything that can provide the raw data stream in and out of the subsystem channel.\
Implemented according to [version 3 specifications](https://datatracker.ietf.org/doc/html/draft-ietf-secsh-filexfer-02) (most popular).
The main idea of the project is to provide an implementation for interacting with the protocol at any level.
## Examples
- [Client example](https://github.com/AspectUnk/russh-sftp/blob/master/examples/client.rs)
- [Simple server](https://github.com/AspectUnk/russh-sftp/blob/master/examples/server.rs)
## What's ready?
- [x] Basic packets
- [x] Extended packets
- [x] Simplification for file attributes
- [x] Client side
- [x] Client example
- [x] Server side
- [x] Simple server example
- [x] Extension support: `limits@openssh.com`, `hardlink@openssh.com`, `fsync@openssh.com`, `statvfs@openssh.com`
- [ ] Full server example
- [ ] Unit tests
- [ ] Workflow
## Adopters
- [kty](https://github.com/grampelberg/kty) - The terminal for Kubernetes.
## Some words
Thanks to [@Eugeny](https://github.com/Eugeny) (author of the [Russh](https://github.com/warp-tech/russh)) for his prompt help and finalization of Russh API