-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
83 lines (69 loc) · 1.79 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "can"
authors = ["Sascha Smolkov <sascha.smolkov@gmail.com>"]
categories = ["linux", "automatic", "sensor"]
description = "LAR process water analyzers"
edition = "2018"
keywords = ["can", "socketcan", "co2", "airflow", "humidity", "pressure","pump","valve"]
license = "Apache-2.0 OR MIT"
readme = "README.md"
repository = "https://github.com/lar-rs/can"
version = "0.1.0"
[build-dependencies]
autocfg = "0.1"
cc = "1.0"
cfg-if = "0.1.10"
[dependencies]
### cli|args
structopt = { version = "0.3", features = [ "paw" ] }
paw = "1.0"
clap_flags= "0.4.0"
# cli|communication|check
# atty = "0.2.13"
# cli|fine|terminal
ansi_term = "0.12.1"
yansi = "0.5.0"
## error|managment
failure = "0.1.6"
exitfailure = "0.5.1"
human-panic = "1.0.1"
## log
log = "0.4.8"
femme = "1.3.0"
# configuration|serialize
toml = "0.5.5"
# time|date
chrono = "0.4.10"
## value|bit
bitvec = "0.15.2"
nom = "5.0.1"
regex= "1.3.1"
## Serealizers
serde = { version = "1.0", default-features = false, features = ["derive"] }
bincode = "1.2.0"
serde_json = "1.0.42"
### driver|hardware
socketcan = "1.7.0"
dbus="0.7.1"
### channels|async|net|static
crossbeam = "0.7.3"
lazy_static = "1.4.0"
# futures-preview = {version = "0.3.0-alpha.19", features = ["async-await"], optional = true }
# surf = { git = "https://github.com/rustasync/surf.git" }
### protocol|jsonrpc
# jsonrpc-core = "14.0.3"
# jsonrpc-derive = "14.0.3"
# jsonrpc-ipc-server = "14.0.3"
# jsonrpc-core-client = "14.0.3"
# jsonrpc-tcp-server = "14.0.3"
# tarpc = "0.19.0"
notify = "4.0.14"
ctrlc = "3.1.3"
# nom = "5.0.1"
# bytes = "0.4.12"
# serial = "0.4.0"
# futures-preview = { version = "0.3.0-alpha.19", optional = true, features = [ "async-await"] }
embedded-hal = { version = "0.2.3", features = ["unproven"] }
nb = "0.1.2"
dirs = "2.0.2"
# mio = { path="../mio"}