forked from NetrexMC/RakNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 792 Bytes
/
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
[package]
name = "rak-rs"
version = "0.3.2"
authors = ["John Bergman <[email protected]>"]
edition = "2021"
description = "A fully functional RakNet implementation in pure rust, asynchronously driven."
license = "Apache-2.0"
repository = "https://github.com/NetrexMC/RakNet"
[package.metadata.docs.rs]
rustdoc-args = ["--html-in-header", "./resources/header.html"]
[features]
default = [ "async_std" ]
# default = ["async_tokio" ]
mcpe = []
debug = []
debug_all = []
async_std = [ "async-std" ]
async_tokio = [ "tokio" ]
[dependencies]
rand = "0.8.3"
binary-util = "0.3.4"
tokio = { version = "1.28.2", features = ["full"], optional = true }
byteorder = "1.4.3"
futures = "0.3.19"
futures-executor = "0.3.19"
async-std = { version = "1.12.0", optional = true, features = [ "unstable" ] }