Files
telnet-server/Cargo.toml
Laika 16dd18b400
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
Initial commit
2025-11-19 23:04:40 +01:00

22 lines
483 B
TOML

[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]