-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (32 loc) · 1004 Bytes
/
Cargo.toml
File metadata and controls
37 lines (32 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Moonbase BBS - Main workspace root
[workspace]
members = [
".", # The main moonbase crate
"telnet-negotiation" # Our new telnet library crate
]
[package]
name = "moonbase"
version = "0.1.2"
edition = "2024"
authors = ["b3rts <dev@b3rts.dev>"]
license = "GPL-3.0"
description = "A modern BBS (Bulletin Board System) server written in Rust with telnet support"
homepage = "https://github.com/sdsalyer/moonbase"
repository = "https://github.com/sdsalyer/moonbase"
keywords = ["bbs", "telnet", "bulletin-board", "server", "retro"]
categories = ["network-programming", "command-line-utilities"]
[[bin]]
name = "moonbase"
path = "src/main.rs"
[lib]
name = "moonbase"
path = "src/lib.rs"
[dependencies]
crossterm = "0.29.0"
jiff = { version = "0.2.15", features = ["serde"] }
serde = { version = "1.0.226", features = ["derive"] }
serde_json = "1.0.145"
# Phase 3: Add telnet command detection
telnet-negotiation = { path = "telnet-negotiation" }
[dev-dependencies]
tempfile = "3.23.0"