forked from first-rust-competition/nt-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 769 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
[package]
name = "nt"
version = "3.0.0"
authors = ["Redrield <redrield@gmail.com>"]
description = "A NetworkTables revision 3 library for Rust"
license = "MIT"
repository = "https://github.com/first-rust-competition/nt-rs"
edition = "2018"
[dependencies]
tokio = { version = "0.2", features = ["full"] }
bytes = "0.5"
nt-network = { version = "3.0.0", path = "nt-network" }
multimap = "0.5"
nt-leb128 = "0.3"
futures-channel = "0.3"
futures-util = { version = "0.3", features = ["sink"] }
tokio-util = { version = "0.2", features = ["codec"] }
url = { version = "2.1", optional = true }
tokio-tungstenite = { version = "0.10", optional = true, features = ["stream"] }
thiserror = "1.0"
anyhow = "1.0"
[features]
default = []
websocket = ["tokio-tungstenite", "url"]