mirror of
https://github.com/rust-lang-nursery/rust-cookbook
synced 2024-11-13 23:47:12 +00:00
16a043b09a
Fix docs directing developer to incorrect pathname for spellcheck.sh Add note on the normal behavior of spellcheck.sh for clarity Fix instances of inclusive range syntax to use '..=' style Depend directly on percent-encoding instead of expecting re-exports This commit compiles and tests correctly on rustc v1.37.0 link-checker found 452 failures before this commit link-checker found 452 failures after this commit no new errors were added by this commit
67 lines
1.1 KiB
TOML
67 lines
1.1 KiB
TOML
[package]
|
|
name = "rust-cookbook"
|
|
version = "0.1.0"
|
|
authors = ["Brian Anderson <banderson@mozilla.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
publish = false
|
|
|
|
build = "build.rs"
|
|
|
|
[dependencies]
|
|
ansi_term = "0.11.0"
|
|
base64 = "0.9"
|
|
bitflags = "1.0"
|
|
byteorder = "1.0"
|
|
cc = "1.0"
|
|
chrono = "0.4"
|
|
clap = "2.29"
|
|
crossbeam = "0.5"
|
|
csv = "1.0"
|
|
data-encoding = "2.1.0"
|
|
env_logger = "0.5"
|
|
error-chain = "0.12"
|
|
flate2 = "1.0"
|
|
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"
|
|
ndarray = "0.12"
|
|
num = "0.2"
|
|
num_cpus = "1.8"
|
|
percent-encoding = "2.1"
|
|
petgraph = "0.4"
|
|
postgres = "0.15"
|
|
rand = "0.6"
|
|
rayon = "1.0"
|
|
regex = "1.0"
|
|
reqwest = "0.9"
|
|
ring = "0.13.0-alpha"
|
|
rusqlite = { version = "0.16", features = ["chrono"] }
|
|
same-file = "1.0"
|
|
select = "0.4"
|
|
semver = "0.9"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
tar = "0.4.12"
|
|
tempdir = "0.3.5"
|
|
threadpool = "1.6"
|
|
toml = "0.4"
|
|
unicode-segmentation = "1.2.1"
|
|
url = "2.1"
|
|
walkdir = "2.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
syslog = "4.0"
|
|
|
|
[build-dependencies]
|
|
skeptic = "0.13"
|
|
walkdir = "2.0"
|
|
|
|
[dev-dependencies]
|
|
skeptic = "0.13"
|
|
walkdir = "2.0"
|