2017-02-20 19:22:19 +00:00
|
|
|
[package]
|
|
|
|
name = "rust-cookbook"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Brian Anderson <banderson@mozilla.com>"]
|
2017-06-13 21:19:28 +00:00
|
|
|
license = "MIT/Apache-2.0"
|
2017-05-17 17:42:13 +00:00
|
|
|
publish = false
|
2017-02-20 19:22:19 +00:00
|
|
|
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2017-07-13 11:28:47 +00:00
|
|
|
base64 = "0.6"
|
2017-07-11 13:57:42 +00:00
|
|
|
bitflags = "0.9"
|
2017-05-04 00:47:06 +00:00
|
|
|
byteorder = "1.0"
|
2017-07-13 11:28:47 +00:00
|
|
|
chrono = "0.3"
|
2017-07-11 13:57:42 +00:00
|
|
|
clap = "2.25"
|
2017-05-06 00:09:31 +00:00
|
|
|
crossbeam = "0.2"
|
2017-07-16 11:12:13 +00:00
|
|
|
csv = "1.0.0-beta.3"
|
2017-05-19 04:09:42 +00:00
|
|
|
data-encoding = "2.0.0-rc.1"
|
2017-07-13 11:28:47 +00:00
|
|
|
env_logger = "0.4"
|
2017-05-04 00:47:06 +00:00
|
|
|
error-chain = "0.10"
|
2017-05-18 13:45:10 +00:00
|
|
|
flate2 = "0.2.19"
|
2017-07-06 12:31:42 +00:00
|
|
|
glob = "0.2"
|
2017-07-13 11:28:47 +00:00
|
|
|
image = "0.14"
|
|
|
|
lazy_static = "0.2"
|
|
|
|
log = "0.3"
|
|
|
|
log4rs = "0.7"
|
|
|
|
memmap = "0.5"
|
|
|
|
num = "0.1"
|
|
|
|
num_cpus = "1.5"
|
2017-05-04 00:47:06 +00:00
|
|
|
petgraph = "0.4"
|
2017-05-06 00:09:31 +00:00
|
|
|
rand = "0.3"
|
2017-06-14 22:54:38 +00:00
|
|
|
rayon = "0.8"
|
2017-07-13 11:28:47 +00:00
|
|
|
reqwest = "0.6"
|
|
|
|
select = "0.4"
|
2017-05-04 00:47:06 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2017-05-18 13:45:10 +00:00
|
|
|
tar = "0.4.12"
|
|
|
|
tempdir = "0.3.5"
|
2017-05-29 09:56:16 +00:00
|
|
|
threadpool = "1.3"
|
2017-07-13 11:28:47 +00:00
|
|
|
toml = "0.4"
|
|
|
|
url = "1.4"
|
|
|
|
walkdir = "1.0.7"
|
2017-02-25 22:43:23 +00:00
|
|
|
|
2017-07-06 19:34:42 +00:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
syslog = "3.2.0"
|
|
|
|
|
2017-02-20 19:22:19 +00:00
|
|
|
[build-dependencies]
|
2017-07-13 11:28:47 +00:00
|
|
|
skeptic = "0.11"
|
2017-02-20 19:22:19 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2017-07-13 11:28:47 +00:00
|
|
|
skeptic = "0.11"
|