-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 771 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 771 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
[package]
name = "tokio_kcp"
version = "0.10.0"
authors = ["Matrix <113445886@qq.com>", "Y. T. Chung <zonyitoo@gmail.com>"]
description = "A kcp implementation for tokio"
license = "MIT"
readme = "README.md"
keywords = ["kcp", "udp", "reliable", "tokio"]
documentation = "https://docs.rs/tokio_kcp"
repository = "https://github.com/Matrix-Zhang/tokio_kcp"
edition = "2018"
[dependencies]
bytes = "1.1"
futures-util = "0.3"
kcp = "0.5.3"
log = "0.4"
tokio = { version = "1.37", features = ["net", "sync", "rt", "macros", "time"] }
byte_string = "1"
rand = "0.8"
spin = "0.9"
[dev-dependencies]
env_logger = "0.11"
tokio = { version = "1.11", features = [
"net",
"sync",
"rt",
"rt-multi-thread",
"macros",
"time",
"io-util",
"io-std",
] }