-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 718 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 = "tokio-socketcan-bcm"
version = "2.0.0"
authors = ["marcelbuesing <buesing.marcel@googlemail.com>"]
license = "MIT"
description = "Asynchronous Linux SocketCAN - Broadcast Manager support (BCM) with tokio"
homepage = "https://github.com/marcelbuesing/tokio-socketcan-bcm"
repository = "https://github.com/marcelbuesing/tokio-socketcan-bcm.git"
keywords = ["can", "socketcan", "bcm"]
edition = "2018"
[dependencies]
bitflags = "1.2"
embedded-can = "0.3"
futures = "0.3"
futures-util = "0.3"
libc = "0.2"
mio = "0.7"
nix = "0.20"
socketcan = "1.7"
tokio = { version = "1", features = ["net"] }
[dev-dependencies.tokio]
version = "*"
# required for tokio::test
features = ["macros", "rt-multi-thread"]