-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
30 lines (26 loc) · 1.01 KB
/
Cargo.toml
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 = "libmudtelnet"
description = "low-level Telnet protocol implementation for MUD clients"
version = "2.0.1"
edition = "2018"
readme = "README.md"
homepage = "https://github.com/blightmud/libmudtelnet"
repository = "https://github.com/blightmud/libmudtelnet"
documentation = "https://docs.rs/libmudtelnet"
license = "MIT"
keywords = ["telnet", "libtelnet", "mud"]
categories = ["network-programming"]
exclude = ["docs/**", ".github/**"]
[dependencies]
bytes = "1.1.0"
arbitrary = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
compat = { path = "compat", features = ["arbitrary"] }
[features]
default = ["std"]
std = []
[patch.crates-io]
# We use a fork of libtelnet-rs that has a few patches applied to it to fix bugs also fixed in this repo. If we use
# the vanilla upstream 2.0.0 release our fuzzing/interop testing will fail when we encounter input that tickles
# these unfixed bugs.
libtelnet-rs = { git = "https://github.com/cpu/libtelnet-rs", branch = "cpu-libmudtelnet-compat" }