1个不稳定版本
0.1.0 | 2022年4月26日 |
---|
#3 在 #nntp
60KB
1K SLoC
commons-net
基于Tokio实现的Commons Net库包含一系列网络工具和协议实现。支持的协议包括:Echo、FTP(S)、NNTP、NTP、POP3(S)、SMTP(S)、Telnet
FTP(S)支持
支持Rust的完整FTP(S)客户端。
安装
FTPS支持默认禁用。要启用它,应在Cargo.toml
中激活ftps
。
[dependencies]
commons-net = { version = "<version>", features = ["ftps"] }
使用
use std::str;
use std::io::Cursor;
use commons_net::ftp::ftp_client::FtpClient;
async fn async_main() -> Result<(), Box<dyn std::error::Error>> {
// Create a connection to an FTP server and authenticate to it.
let mut ftp_client = FtpClient::connect("192.168.32.204:21").await?;
let _ = ftp_client.login("username", "password").await?;
// Get the current Directory that the client will be reading from and writing to.
println!("Current Directory: {}", ftp_client.pwd().await?);
// Change into a new Directory, relative to the one we are currently in.
let _ = ftp_client.cwd("test_data").await?;
// Retrieve (GET) a File from the FTP server in the current working Directory.
let remote_file = ftp_client.simple_retr("ftpext-charter.txt").await?;
println!("Read File with contents\n{}\n", str::from_utf8(&remote_file.into_inner()).await?);
// Store (PUT) a File from the client to the current working Directory of the server.
let mut reader = Cursor::new("Hello from the Rust \"ftp-rs\" crate!".as_bytes());
let _ = ftp_client.put("greeting.txt", &mut reader).await?;
println!("Successfully wrote greeting.txt");
// Terminate the connection to the server.
let _ = ftp_client.quit();
}
fn main() -> Result<(), Box<dyn std::error::Error>> {
tokio::runtime::Builder::new()
.threaded_scheduler()
.enable_all()
.build()
.unwrap()
.block_on(async_main())
}
SMTP(S)支持
尽快...
依赖
~6–19MB
~250K SLoC