forked from berkowski/tokio-serial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (27 loc) · 1.03 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
31
[package]
name = "tokio-serial"
version = "4.3.3"
authors = ["Zac Berkowitz <[email protected]>"]
description = "A serial port implementation for tokio"
license = "MIT"
homepage = "https://github.com/berkowski/tokio-serial"
repository = "https://github.com/berkowski/tokio-serial"
documentation = "http://docs.rs/tokio-serial"
readme = "README.md"
keywords = ["rs232", "serial", "tokio"]
categories = ["asynchronous", "hardware-support"]
edition = "2018"
[badges]
appveyor = { repository = "berkowski/tokio-serial", service = "github" }
travis-ci = { repository = "berkowski/tokio-serial", service = "github" }
[features]
default = ["libudev"]
libudev = ["mio-serial/libudev"]
[dependencies]
tokio = { version = "0.2.0", features = ["io-driver"], default-features = false }
mio-serial = { version = "3.3.0", default-features = false }
[dev-dependencies]
futures = "0.3.1"
tokio = { version = "0.2.0", features = ["macros"], default-features = false }
tokio-util = { version = "0.2.0", features = ["codec"], default-features = false }
bytes = "0.5"