rust-cookbook/Cargo.toml

72 lines
1.4 KiB
TOML
Raw Normal View History

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