comparison rust/Cargo.toml @ 634:a5721c02d3ee rust

build succeeds
author Matt Johnston <matt@ucc.asn.au>
date Sun, 22 Sep 2019 20:35:40 +0800
parents 490e9e15b98c
children 1e147b3c2c55
comparison
equal deleted inserted replaced
633:490e9e15b98c 634:a5721c02d3ee
3 version = "0.1.0" 3 version = "0.1.0"
4 authors = ["Matt Johnston <[email protected]>"] 4 authors = ["Matt Johnston <[email protected]>"]
5 edition = "2018" 5 edition = "2018"
6 6
7 [dependencies] 7 [dependencies]
8 serde = "1.0" 8 serde = { version = "1.0", features = ["derive"] }
9 serde_derive = "1.0" 9 serde_json = "1.0"
10 rand = "0.7" 10 rand = "0.7"
11 log = "0.4" 11 log = "0.4"
12 env_logger = "0.6" 12 env_logger = "0.6"
13 docopt = "1.1" 13 chrono = "0.4"
14 #rustc-serialize = "0.3"
15 #time = "0.1"
16 lazy_static = "1.3" 14 lazy_static = "1.3"
17 regex = "1.2" 15 regex = "1.2"
18 toml = "0.5"
19 hyper = "0.12"
20 serde_json = "0.9"
21 base64 = "0.4" 16 base64 = "0.4"
22 libc = "0.2" 17 libc = "0.2"
23 atomicwrites = "0.2" 18 atomicwrites = "0.2"
24 riker = "0.3" 19 riker = "0.3"
20 structopt = "0.3"
21 config = "0.9"
22
23 # alpha for async
24 hyper = "=0.13.0-alpha.1"
25 futures-preview = "=0.3.0-alpha.18"
26 futures-util-preview = "=0.3.0-alpha.18"
25 27
26 [target.'cfg(target_os = "linux")'.dependencies] 28 [target.'cfg(target_os = "linux")'.dependencies]
27 sysfs_gpio = "0.5" 29 sysfs_gpio = "0.5"