-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 794 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 794 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
[package]
name = "hypermud"
description = "HyperMUD: Mystery. Multi-User Dungeon (multiplayer real-time virtual world)."
license = "ISC"
readme = "README.md"
repository = "https://github.com/ctsrc/hypermud"
homepage = "https://www.hypermud-game.com/"
version = "0.0.2"
authors = ["Erik Nordstrøm <erik@nordstroem.no>"]
categories = ["command-line-utilities"]
keywords = ["MUD", "role-playing-game", "hack-and-slash", "player-versus-player", "online-chat"]
edition = "2021"
[[bin]]
name = "hypermud-server"
path = "src/server.rs"
required-features = ["server"]
[[bin]]
name = "hypermud-client"
path = "src/client.rs"
required-features = ["client"]
[features]
default = ["server", "client"]
server = []
client = []
[dependencies]
clap = { version = "2.33.0", features = ["yaml"] }