1个不稳定版本

0.1.0 2021年9月3日

#19#rcon

Unlicense许可证

13KB
179

mcrcon

使用Rust编写的Minecraft RCON协议的实现,允许Rust代码轻松远程执行Minecraft服务器的命令。


lib.rs:

mcrcon 是Minecraft服务器的RCON协议的客户端实现,如这里所述。它允许你编写可以在Minecraft服务器上远程执行命令的Rust代码。

示例

use mcrcon;

fn main() -> Result<(), mcrcon::RCONError> {
    let mut stream = std::net::TcpStream::new("localhost:25575")?;
    let mut connection = mcrcon::Connection::connect(stream, "password".to_string())?;
    let resp = connection.command("seed".to_string())?;

    println!("{}", resp.payload);
}

依赖项

~305KB