forked from johsunds/libutp-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 845 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
30
31
32
33
[package]
name = "libutp-rs"
version = "1.0.0"
authors = ["johsunds <jsundstrom1994@gmail.com>"]
edition = "2018"
description = "Async libutp interface"
keywords = ["bittorrent", "network"]
license = "MIT"
repository = "https://github.com/johsunds/libutp-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libutp-sys = "0.1.4"
mio = { version = "0.7.0", features = ["os-poll", "udp"]}
tokio = "1.3.0"
futures = "0.3.5"
log = "0.4.11"
socket2 = "0.3.15"
crossbeam = "0.7.3"
lazy_static = "1.4.0"
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2.86"
[target.'cfg(windows)'.dependencies]
winapi = "0.3.9"
[dev-dependencies]
tokio = { version = "1.3.0", features = ["rt-multi-thread", "macros", "io-util"]}
env_logger = "0.7.1"
portpicker = "0.1.0"
bytesize = "1.0.1"