2017-02-20 19:22:19 +00:00
|
|
|
[package]
|
|
|
|
name = "rust-cookbook"
|
2020-06-07 02:12:09 +00:00
|
|
|
version = "1.0.0"
|
|
|
|
authors = ["Brian Anderson <banderson@mozilla.com>", "Andrew Gauger <andygauge@gmail.com>"]
|
2020-06-01 00:26:32 +00:00
|
|
|
edition = "2018"
|
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]
|
2019-04-12 16:05:36 +00:00
|
|
|
ansi_term = "0.11.0"
|
2020-06-01 00:26:32 +00:00
|
|
|
approx = "0.3"
|
2018-01-11 11:13:30 +00:00
|
|
|
base64 = "0.9"
|
2017-09-24 07:44:44 +00:00
|
|
|
bitflags = "1.0"
|
2017-05-04 00:47:06 +00:00
|
|
|
byteorder = "1.0"
|
2018-01-11 11:13:30 +00:00
|
|
|
cc = "1.0"
|
2017-08-15 20:57:41 +00:00
|
|
|
chrono = "0.4"
|
2018-01-11 11:13:30 +00:00
|
|
|
clap = "2.29"
|
2018-12-08 02:51:26 +00:00
|
|
|
crossbeam = "0.5"
|
2019-12-17 02:22:36 +00:00
|
|
|
crossbeam-channel = "0.3.9"
|
2018-05-14 16:20:44 +00:00
|
|
|
csv = "1.0"
|
2018-01-11 11:13:30 +00:00
|
|
|
data-encoding = "2.1.0"
|
2018-05-14 21:02:20 +00:00
|
|
|
env_logger = "0.5"
|
2018-07-10 20:43:57 +00:00
|
|
|
error-chain = "0.12"
|
2018-01-11 11:13:30 +00:00
|
|
|
flate2 = "1.0"
|
2020-06-07 18:40:48 +00:00
|
|
|
glob = "0.3"
|
2018-10-05 23:58:59 +00:00
|
|
|
image = "0.20"
|
2018-05-14 16:20:44 +00:00
|
|
|
lazy_static = "1.0"
|
2018-05-14 21:02:20 +00:00
|
|
|
log = "0.4"
|
|
|
|
log4rs = "0.8"
|
2018-10-05 23:58:59 +00:00
|
|
|
memmap = "0.7"
|
2018-05-02 23:46:38 +00:00
|
|
|
mime = "0.3"
|
2020-06-13 21:18:33 +00:00
|
|
|
nalgebra = { version = "0.16.12", features = ["serde-serialize"] }
|
2019-12-17 02:13:33 +00:00
|
|
|
ndarray = { version = "0.13", features = ["approx"] }
|
2018-07-11 08:30:31 +00:00
|
|
|
num = "0.2"
|
2018-01-11 11:13:30 +00:00
|
|
|
num_cpus = "1.8"
|
2019-09-19 18:04:37 +00:00
|
|
|
percent-encoding = "2.1"
|
2017-05-04 00:47:06 +00:00
|
|
|
petgraph = "0.4"
|
2020-04-18 22:54:01 +00:00
|
|
|
postgres = "0.17.2"
|
2021-01-01 23:24:59 +00:00
|
|
|
rand = "0.8.0"
|
|
|
|
rand_distr = "0.4.0"
|
2018-05-14 16:20:44 +00:00
|
|
|
rayon = "1.0"
|
|
|
|
regex = "1.0"
|
2020-06-07 02:12:09 +00:00
|
|
|
reqwest = { version = "0.10", features = ["blocking", "json", "stream"] }
|
2020-03-01 05:12:36 +00:00
|
|
|
ring = "0.16.11"
|
2020-04-11 20:59:12 +00:00
|
|
|
rusqlite = { version = "0.22", features = ["chrono"] }
|
2017-11-02 19:05:43 +00:00
|
|
|
same-file = "1.0"
|
2017-07-13 11:28:47 +00:00
|
|
|
select = "0.4"
|
2017-11-02 19:05:43 +00:00
|
|
|
semver = "0.9"
|
2020-06-07 02:12:09 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2017-05-04 00:47:06 +00:00
|
|
|
serde_derive = "1.0"
|
|
|
|
serde_json = "1.0"
|
2017-05-18 13:45:10 +00:00
|
|
|
tar = "0.4.12"
|
2019-09-19 19:52:27 +00:00
|
|
|
tempfile = "3.1"
|
2017-08-15 20:57:41 +00:00
|
|
|
threadpool = "1.6"
|
2017-07-13 11:28:47 +00:00
|
|
|
toml = "0.4"
|
2020-06-07 02:12:09 +00:00
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
2019-04-12 16:05:36 +00:00
|
|
|
unicode-segmentation = "1.2.1"
|
2019-09-19 18:04:37 +00:00
|
|
|
url = "2.1"
|
2017-11-02 19:05:43 +00:00
|
|
|
walkdir = "2.0"
|
2017-02-25 22:43:23 +00:00
|
|
|
|
2017-07-06 19:34:42 +00:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
2020-06-01 00:26:32 +00:00
|
|
|
syslog = "5.0"
|
2017-07-06 19:34:42 +00:00
|
|
|
|
2017-02-20 19:22:19 +00:00
|
|
|
[build-dependencies]
|
2020-06-07 18:40:48 +00:00
|
|
|
skeptic = { git = 'https://github.com/andygauge/rust-skeptic'}
|
2018-07-10 21:07:24 +00:00
|
|
|
walkdir = "2.0"
|
2017-02-20 19:22:19 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-06-07 18:40:48 +00:00
|
|
|
skeptic = { git = 'https://github.com/andygauge/rust-skeptic'}
|
2018-07-10 21:07:24 +00:00
|
|
|
walkdir = "2.0"
|