Initial commit
Some checks failed
Cargo test & clippy / build (push) Has been cancelled
Cargo test & clippy / rust-clippy-analyze (push) Has been cancelled
Cargo security audit / audit (push) Failing after 4s

This commit is contained in:
2024-03-02 16:04:35 +01:00
commit 16dd18b400
21 changed files with 3179 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "telnet_server"
version = "0.0.1"
edition = "2024"
authors = ["Laika Schmidt <laika.schmidt@magenta.de>"]
description = "A bare TELNET server provider"
readme = "README.md"
repository = "https://github.com/its-laika/telnet_server"
license = "MIT"
keywords = ["TELNET"]
exclude = [".github/", ".vscode/", "resources/", "telnet/", ".gitignore"]
[lib]
name = "telnet_server"
path = "src/lib.rs"
[[bin]]
name = "telnet_server"
path = "src/bin/main.rs"
[dependencies]