-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (28 loc) · 857 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
34
35
36
37
38
[package]
name = "fnwalk"
version = "0.1.0"
authors = ["Georg Müller <[email protected]>"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["libudev"]
libudev = ["tokio-serial/libudev", "serialport/libudev"]
[dependencies]
env_logger = "*"
log = "*"
bytes = "*"
futures = "0.3.1"
futures-util = "*"
futures-core = "*"
tokio = { version = "1", features = ["macros", "time", "rt", "rt-multi-thread"], default-features = false }
tokio-util = { version = "0.7", features = ["codec"], default-features = false }
tokio-serial = { version = "5.4.1" }
serialport = { version = "4.0.0", default-features = false }
actix = "0.12.0"
actix-files = "0.6"
actix-web = "4"
actix-web-actors = "4"
actix-broker = "0.4.1"
async-stream = "*"
serde_json = "*"