nushell/Cargo.lock

4795 lines
111 KiB
Text
Raw Normal View History

2019-05-10 16:59:12 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "addr2line"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a49806b9dadc843c61e7c97e72490ad7f7220ae249012fbda9ad0609457c0543"
dependencies = [
"gimli",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "adler32"
version = "1.1.0"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567b077b825e468cc974f0020d4082ee6e03132512f207ef1a02fd5d00d1f32d"
2019-05-18 01:24:13 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "aho-corasick"
version = "0.7.10"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8716408b8bc624ed7f65d223ddb9ac2d044c0547b6fa4b0d554f3a9540496ada"
2019-05-10 16:59:12 +00:00
dependencies = [
"memchr",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "ansi_colours"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d0f302a81afc6a7f4350c04f0ba7cfab529cc009bca3324b3fb5764e6add8b6"
dependencies = [
"cc",
]
2019-05-11 04:45:57 +00:00
[[package]]
name = "ansi_term"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee49baf6cb617b853aa8d93bf420db2383fab46d314482ca2803b40d5fde979b"
2019-05-11 04:45:57 +00:00
dependencies = [
"winapi 0.3.8",
2019-05-11 04:45:57 +00:00
]
2019-07-15 18:34:44 +00:00
[[package]]
name = "ansi_term"
2019-09-13 03:44:21 +00:00
version = "0.12.1"
2019-07-15 18:34:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2019-07-15 18:34:44 +00:00
dependencies = [
"winapi 0.3.8",
2019-07-15 18:34:44 +00:00
]
[[package]]
name = "anymap"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33954243bd79057c2de7338850b85983a44588021f8a5fee574a8888c6de4344"
[[package]]
name = "app_dirs"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e73a24bad9bd6a94d6395382a6c69fe071708ae4409f763c5475e14ee896313d"
dependencies = [
"ole32-sys",
"shell32-sys",
"winapi 0.2.8",
"xdg",
]
[[package]]
name = "arc-swap"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d25d88fd6b8041580a654f9d0c581a047baee2b3efee13275f2fc392fc75034"
2019-05-10 16:59:12 +00:00
[[package]]
2019-08-08 17:33:19 +00:00
name = "arrayref"
version = "0.3.6"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
2019-05-10 16:59:12 +00:00
2019-11-16 17:17:05 +00:00
[[package]]
name = "arrayvec"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
2019-11-16 17:17:05 +00:00
[[package]]
name = "async-attributes"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efd3d156917d94862e779f356c5acae312b08fd3121e792c857d7928c8088423"
dependencies = [
"quote",
"syn",
]
[[package]]
name = "async-recursion"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5444eec77a9ec2bfe4524139e09195862e981400c4358d3b760cae634e4c4ee"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-std"
version = "1.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00d68a33ebc8b57800847d00787307f84a562224a14db069b0acefe4c2abbf5d"
dependencies = [
"async-attributes",
"async-task",
"crossbeam-utils 0.7.2",
"futures-channel",
"futures-core",
"futures-io",
"kv-log-macro",
"log",
"memchr",
"num_cpus",
"once_cell",
"pin-project-lite",
"pin-utils",
"slab",
"smol",
"wasm-bindgen-futures 0.4.13",
]
[[package]]
name = "async-task"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17772156ef2829aadc587461c7753af20b7e8db1529bc66855add962a3b35d3"
2020-05-29 08:22:52 +00:00
[[package]]
name = "async-trait"
version = "0.1.36"
2020-05-29 08:22:52 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a265e3abeffdce30b2e26b7a11b222fe37c6067404001b434101457d0385eb92"
2020-05-29 08:22:52 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "attohttpc"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93610ce1c035e8a273fe56a19852e42798f3c019ca2726e52d2971197f116525"
dependencies = [
"http 0.2.1",
"log",
"native-tls",
"openssl",
"serde 1.0.113",
"serde_urlencoded",
"url",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "atty"
version = "0.2.14"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-05-10 16:59:12 +00:00
dependencies = [
"hermit-abi",
"libc",
"winapi 0.3.8",
2019-05-10 16:59:12 +00:00
]
2020-01-17 20:35:48 +00:00
[[package]]
name = "autocfg"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
2019-05-10 16:59:12 +00:00
[[package]]
name = "backtrace"
version = "0.3.49"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05100821de9e028f12ae3d189176b41ee198341eb8f369956407fea2f5cc666c"
2019-05-10 16:59:12 +00:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
2019-05-10 16:59:12 +00:00
]
2019-11-10 17:48:49 +00:00
[[package]]
name = "base64"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7"
2019-11-10 17:48:49 +00:00
[[package]]
name = "base64"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e223af0dc48c96d4f8342ec01a4974f139df863896b316681efd36742f22cc67"
[[package]]
name = "bat"
version = "0.15.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91f17c2d9e1cee447a788a15fa6819c0cb488fb2935e3e8c4e7120e1678b7aa8"
dependencies = [
"ansi_colours",
"ansi_term 0.12.1",
"atty",
"clap",
"console",
"content_inspector",
"dirs 2.0.2",
"encoding",
"error-chain",
"git2",
"globset",
"lazy_static 1.4.0",
"liquid",
"path_abs",
"semver 0.9.0",
"serde 1.0.113",
"serde_yaml",
"shell-words",
"syntect",
"unicode-width",
"wild",
]
2019-08-11 03:01:09 +00:00
[[package]]
name = "battery"
version = "0.7.5"
2019-08-11 03:01:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36a698e449024a5d18994a815998bf5e2e4bc1883e35a7d7ba95b6b69ee45907"
2019-08-11 03:01:09 +00:00
dependencies = [
"cfg-if",
2019-12-14 13:27:14 +00:00
"core-foundation 0.6.4",
"lazycell",
"libc",
"mach 0.2.3",
"nix 0.15.0",
"num-traits 0.2.12",
"uom 0.26.0",
"winapi 0.3.8",
2019-08-11 03:01:09 +00:00
]
[[package]]
name = "bigdecimal"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1374191e2dd25f9ae02e3aa95041ed5d747fc77b3c102b49fe2dd9a8117a6244"
dependencies = [
"num-bigint",
"num-integer",
"num-traits 0.2.12",
"serde 1.0.113",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "bincode"
2019-12-14 13:27:14 +00:00
version = "1.2.1"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-12-14 13:27:14 +00:00
checksum = "5753e2a71534719bf3f4e57006c3a4f0d2c672a4b676eec84161f763eca87dbf"
2019-05-18 01:24:13 +00:00
dependencies = [
"byteorder",
"serde 1.0.113",
2019-05-18 01:24:13 +00:00
]
2020-04-07 07:51:17 +00:00
[[package]]
name = "bit-set"
version = "0.5.2"
2020-04-07 07:51:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e11e16035ea35e4e5997b393eacbf6f63983188f7a2ad25bfb13465f5ad59de"
2020-04-07 07:51:17 +00:00
dependencies = [
"bit-vec",
]
[[package]]
name = "bit-vec"
version = "0.6.2"
2020-04-07 07:51:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f0dc55f2d8a1a85650ac47858bb001b4c0dd73d79e3c455a842925e68d29cd3"
2020-04-07 07:51:17 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "bitflags"
2019-11-16 17:17:05 +00:00
version = "1.2.1"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-05-10 16:59:12 +00:00
[[package]]
2019-08-08 17:33:19 +00:00
name = "blake2b_simd"
version = "0.5.10"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8fb2d74254a3a0b5cac33ac9f8ed0e44aa50378d9dbb2e5d83bd21ed1dc2c8a"
2019-05-10 16:59:12 +00:00
dependencies = [
"arrayref",
"arrayvec",
"constant_time_eq",
2019-05-10 16:59:12 +00:00
]
2019-06-07 16:30:50 +00:00
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2019-06-07 16:30:50 +00:00
2020-05-16 22:34:10 +00:00
[[package]]
name = "block-buffer"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b"
dependencies = [
"block-padding",
"byte-tools",
"byteorder",
"generic-array",
]
[[package]]
name = "block-padding"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5"
dependencies = [
"byte-tools",
]
[[package]]
name = "blocking"
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d17efb70ce4421e351d61aafd90c16a20fb5bfe339fcdc32a86816280e62ce0"
dependencies = [
"futures-channel",
"futures-util",
"once_cell",
"parking",
"waker-fn",
]
2019-08-25 13:57:47 +00:00
[[package]]
name = "bson"
version = "0.14.1"
2019-08-25 13:57:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c177ed0122f24ce5e0f05bf9b29e79f3ac1a359bc504e0e14c3b34896c71c00"
2019-08-25 13:57:47 +00:00
dependencies = [
"byteorder",
"chrono",
"decimal",
"hex 0.3.2",
"libc",
"linked-hash-map 0.5.3",
"md5",
"rand",
"serde 1.0.113",
"serde_json",
"time",
2019-08-25 13:57:47 +00:00
]
[[package]]
name = "bstr"
version = "0.2.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31accafdb70df7871592c058eca3985b71104e15ac32f64706022c58867da931"
dependencies = [
"lazy_static 1.4.0",
"memchr",
"regex-automata",
"serde 1.0.113",
]
[[package]]
name = "bumpalo"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e8c087f005730276d1096a652e92a8bacee2e2472bcc9715a74d2bec38b5820"
2020-05-16 22:34:10 +00:00
[[package]]
name = "byte-tools"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7"
[[package]]
name = "byte-unit"
2020-05-30 20:54:47 +00:00
version = "3.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-30 20:54:47 +00:00
checksum = "55390dbbf21ce70683f3e926dace00a21da373e35e44a60cafd232e3e9bf2041"
2019-05-10 16:59:12 +00:00
[[package]]
name = "byteorder"
version = "1.3.4"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
2019-05-10 16:59:12 +00:00
[[package]]
name = "bytes"
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c"
dependencies = [
"byteorder",
"iovec",
]
2020-01-17 20:35:48 +00:00
[[package]]
name = "bytes"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "118cf036fbb97d0816e3c34b2d7a1e8cfc60f68fcf63d550ddbe9bd5f59c213b"
dependencies = [
"loom",
]
[[package]]
name = "cache-padded"
version = "1.1.0"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24508e28c677875c380c20f4d28124fab6f8ed4ef929a1397d7b1a31e92f1005"
2020-01-17 20:35:48 +00:00
[[package]]
name = "calamine"
version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abc39da027ec520445e6e526f105170b424ca68ea9e53553d3e6a29df41713ba"
dependencies = [
"byteorder",
"codepage",
"encoding_rs",
"log",
"quick-xml",
"serde 1.0.113",
"zip",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "cc"
version = "1.0.54"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7bbb73db36c1246e9034e307d0fba23f9a2e251faa47ade70c1bd252220c8311"
2019-09-13 03:44:21 +00:00
dependencies = [
"jobserver",
2019-09-13 03:44:21 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "cfg-if"
2019-10-13 04:53:58 +00:00
version = "0.1.10"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2019-05-10 16:59:12 +00:00
[[package]]
name = "chrono"
2020-03-08 19:18:44 +00:00
version = "0.4.11"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-03-08 19:18:44 +00:00
checksum = "80094f509cf8b5ae86a4966a39b3ff66cd7e2a3e594accec3743ff3fabeab5b2"
2019-05-10 16:59:12 +00:00
dependencies = [
"num-integer",
"num-traits 0.2.12",
"serde 1.0.113",
"time",
2019-05-10 16:59:12 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "clap"
version = "2.33.1"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdfa80d47f954d53a35a64987ca1422f495b8d6483c0fe9f7117b36c2a792129"
2019-05-18 01:24:13 +00:00
dependencies = [
"ansi_term 0.11.0",
"atty",
"bitflags",
"strsim",
"term_size",
"textwrap",
"unicode-width",
"vec_map",
2019-05-18 01:24:13 +00:00
]
2019-06-07 16:30:50 +00:00
[[package]]
name = "clipboard"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25a904646c0340239dcf7c51677b33928bf24fdf424b79a57909c0109075b2e7"
2019-06-07 16:30:50 +00:00
dependencies = [
"clipboard-win",
"objc",
"objc-foundation",
"objc_id",
"x11-clipboard",
2019-06-07 16:30:50 +00:00
]
[[package]]
name = "clipboard-win"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3a093d6fed558e5fe24c3dfc85a68bb68f1c824f440d3ba5aca189e2998786b"
2019-06-07 16:30:50 +00:00
dependencies = [
"winapi 0.3.8",
2019-06-07 16:30:50 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "cloudabi"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f"
2019-05-10 16:59:12 +00:00
dependencies = [
"bitflags",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "codepage"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b0e9222c0cdf2c6ac27d73f664f9520266fa911c3106329d359f8861cb8bde9"
dependencies = [
"encoding_rs",
]
[[package]]
name = "codespan-reporting"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ceface2475f2f57a7ece9ba239b96e06bda8323ee68aa6df539752f13a74f60"
dependencies = [
"serde 1.0.113",
"termcolor",
"unicode-width",
]
[[package]]
name = "concurrent-queue"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f83c06aff61f2d899eb87c379df3cbf7876f14471dcab474e0b6dc90ab96c080"
dependencies = [
"cache-padded",
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "config"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9107d78ed62b3fa5a86e7d18e647abed48cfd8f8fab6c72f4cdb982d196f7e6"
2019-06-07 07:50:26 +00:00
dependencies = [
"lazy_static 1.4.0",
"nom 4.2.3",
"rust-ini",
"serde 1.0.113",
"serde-hjson 0.8.2",
"serde_json",
"toml 0.4.10",
"yaml-rust",
2019-06-07 07:50:26 +00:00
]
[[package]]
name = "console"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c0994e656bba7b922d8dd1245db90672ffb701e684e45be58f20719d69abc5a"
dependencies = [
"encode_unicode",
"lazy_static 1.4.0",
"libc",
"regex",
"terminal_size",
"termios",
"unicode-width",
"winapi 0.3.8",
"winapi-util",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "constant_time_eq"
version = "0.1.5"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
2019-05-10 16:59:12 +00:00
[[package]]
name = "content_inspector"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b7bda66e858c683005a53a9a60c69a4aca7eeaa45d124526e389f7aec8e62f38"
dependencies = [
"memchr",
]
2019-06-08 18:09:17 +00:00
[[package]]
name = "core-foundation"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25b9e03f145fd4f2bf705e07b900cd41fc636598fe5dc452fd0db1441c3f496d"
2019-06-08 18:09:17 +00:00
dependencies = [
2019-12-14 13:27:14 +00:00
"core-foundation-sys 0.6.2",
"libc",
]
[[package]]
name = "core-foundation"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57d24c7a13c43e870e37c1556b74555437870a04514f7685f5b354e090567171"
dependencies = [
"core-foundation-sys 0.7.0",
"libc",
2019-06-08 18:09:17 +00:00
]
[[package]]
name = "core-foundation-sys"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7ca8a5221364ef15ce201e8ed2f609fc312682a8f4e0e3d4aa5879764e0fa3b"
2019-06-08 18:09:17 +00:00
2019-12-14 13:27:14 +00:00
[[package]]
name = "core-foundation-sys"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3a71ab494c0b5b860bdc8407ae08978052417070c2ced38573a9157ad75b8ac"
2019-05-18 01:24:13 +00:00
[[package]]
name = "crc32fast"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
2019-05-18 01:24:13 +00:00
dependencies = [
"cfg-if",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "crossbeam-channel"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ec7fcd21571dc78f96cc96243cab8d8f035247c3efd16c687be154c3fa9efa"
dependencies = [
"crossbeam-utils 0.6.6",
]
[[package]]
name = "crossbeam-deque"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils 0.7.2",
"maybe-uninit",
]
[[package]]
name = "crossbeam-epoch"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace"
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils 0.7.2",
"lazy_static 1.4.0",
"maybe-uninit",
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-queue"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570"
dependencies = [
"cfg-if",
"crossbeam-utils 0.7.2",
"maybe-uninit",
2019-05-22 07:12:03 +00:00
]
2019-11-16 17:17:05 +00:00
[[package]]
name = "crossbeam-utils"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04973fa96e96579258a5091af6003abde64af786b860f18622b82e026cca60e6"
dependencies = [
"cfg-if",
"lazy_static 1.4.0",
]
[[package]]
name = "crossbeam-utils"
version = "0.7.2"
2019-11-16 17:17:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8"
2019-11-16 17:17:05 +00:00
dependencies = [
"autocfg",
"cfg-if",
"lazy_static 1.4.0",
2019-05-22 07:12:03 +00:00
]
[[package]]
name = "crossterm"
2020-05-30 20:54:47 +00:00
version = "0.17.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-30 20:54:47 +00:00
checksum = "9851d20b9809e561297ec3ca85d7cba3a57507fe8d01d07ba7b52469e1c89a11"
dependencies = [
"bitflags",
"crossterm_winapi",
"lazy_static 1.4.0",
"libc",
"mio",
"parking_lot",
"signal-hook",
"winapi 0.3.8",
]
[[package]]
name = "crossterm_winapi"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "057b7146d02fb50175fd7dbe5158f6097f33d02831f43b4ee8ae4ddf67b68f5c"
dependencies = [
"winapi 0.3.8",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "csv"
version = "1.1.3"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00affe7f6ab566df61b4be3ce8cf16bc2576bca0963ceb0955e45d514bf9a279"
2019-05-10 16:59:12 +00:00
dependencies = [
"bstr",
"csv-core",
"itoa",
"ryu",
"serde 1.0.113",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "csv-core"
version = "0.1.10"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
2019-05-10 16:59:12 +00:00
dependencies = [
"memchr",
2019-05-10 16:59:12 +00:00
]
2019-05-29 15:26:45 +00:00
[[package]]
name = "ctor"
version = "0.1.15"
2019-05-29 15:26:45 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39858aa5bac06462d4dd4b9164848eb81ffc4aa5c479746393598fd193afa227"
2019-05-29 15:26:45 +00:00
dependencies = [
"quote",
"syn",
2019-05-29 15:26:45 +00:00
]
2019-06-07 00:31:22 +00:00
[[package]]
name = "ctrlc"
2020-03-08 19:18:44 +00:00
version = "3.1.4"
2019-06-07 00:31:22 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-03-08 19:18:44 +00:00
checksum = "7a4ba686dff9fa4c1c9636ce1010b0cf98ceb421361b0bb3d6faeec43bd217a7"
2019-06-07 00:31:22 +00:00
dependencies = [
2020-03-08 19:18:44 +00:00
"nix 0.17.0",
"winapi 0.3.8",
2019-06-07 00:31:22 +00:00
]
2019-08-24 19:36:19 +00:00
[[package]]
name = "curl"
version = "0.4.29"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "762e34611d2d5233a506a79072be944fddd057db2f18e04c0d6fa79e3fd466fd"
2019-08-24 19:36:19 +00:00
dependencies = [
"curl-sys",
"libc",
"openssl-probe",
"openssl-sys",
"schannel",
"socket2",
"winapi 0.3.8",
2019-08-24 19:36:19 +00:00
]
[[package]]
name = "curl-sys"
version = "0.4.31+curl-7.70.0"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcd62757cc4f5ab9404bc6ca9f0ae447e729a1403948ce5106bd588ceac6a3b0"
2019-08-24 19:36:19 +00:00
dependencies = [
"cc",
"libc",
"libnghttp2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
"winapi 0.3.8",
2019-08-28 15:53:59 +00:00
]
[[package]]
name = "darwin-libproc"
version = "0.1.2"
2019-08-28 15:53:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb90051930c9a0f09e585762152048e23ac74d20c10590ef7cf01c0343c3046"
2019-08-28 15:53:59 +00:00
dependencies = [
"darwin-libproc-sys",
"libc",
"memchr",
2019-08-28 15:53:59 +00:00
]
[[package]]
name = "darwin-libproc-sys"
version = "0.1.2"
2019-08-28 15:53:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57cebb5bde66eecdd30ddc4b9cd208238b15db4982ccc72db59d699ea10867c1"
2019-08-28 15:53:59 +00:00
dependencies = [
"libc",
2019-08-24 19:36:19 +00:00
]
2019-08-31 14:22:45 +00:00
[[package]]
name = "decimal"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6458723bc760383275fbc02f4c769b2e5f3de782abaf5e7e0b9b7f0368a63ed"
2019-08-31 14:22:45 +00:00
dependencies = [
"bitflags",
"cc",
"libc",
2019-08-31 14:22:45 +00:00
]
2019-07-05 07:53:09 +00:00
[[package]]
name = "deflate"
version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "707b6a7b384888a70c8d2e8650b3e60170dfc6a67bb4aa67b6dfca57af4bedb4"
2019-07-05 07:53:09 +00:00
dependencies = [
"adler32",
"byteorder",
2019-07-05 07:53:09 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "derive-new"
2019-08-31 21:19:59 +00:00
version = "0.5.8"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71f31892cd5c62e414316f2963c5689242c43d8e7bbcaaeca97e5e28c95d91d9"
2019-05-10 16:59:12 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2019-05-10 16:59:12 +00:00
]
2020-05-16 22:34:10 +00:00
[[package]]
name = "digest"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5"
dependencies = [
"generic-array",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "directories"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72d337a64190607d4fcca2cb78982c5dd57f4916e19696b48a575fa746b6cb0f"
2019-05-18 01:24:13 +00:00
dependencies = [
"libc",
"winapi 0.3.8",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "directories"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "551a778172a450d7fc12e629ca3b0428d00f6afa9a43da1b630d54604e97371c"
dependencies = [
"cfg-if",
"dirs-sys",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "dirs"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fd78930633bd1c6e35c4b42b1df7b0cbc6bc191146e512bb3bedf243fcc3901"
2019-05-10 16:59:12 +00:00
dependencies = [
"libc",
"redox_users",
"winapi 0.3.8",
2019-05-10 16:59:12 +00:00
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "dirs"
2019-07-29 07:46:24 +00:00
version = "2.0.2"
2019-06-03 07:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13aea89a5c93364a98e9b37b2fa237effbb694d5cfe01c5b70941f7eb087d5e3"
2019-06-03 07:41:28 +00:00
dependencies = [
"cfg-if",
"dirs-sys",
2019-06-03 07:41:28 +00:00
]
2020-06-04 17:50:12 +00:00
[[package]]
name = "dirs-next"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cbcf9241d9e8d106295bd496bbe2e9cffd5fa098f2a8c9e2bbcbf09773c11a8"
dependencies = [
"cfg-if",
"dirs-sys-next",
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "dirs-sys"
version = "0.3.5"
2019-06-03 07:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e93d7f5705de3e49895a2b5e0b8855a1c27f080192ae9c32a6432d50741a57a"
2019-06-03 07:41:28 +00:00
dependencies = [
"libc",
"redox_users",
"winapi 0.3.8",
2019-06-03 07:41:28 +00:00
]
2020-06-04 17:50:12 +00:00
[[package]]
name = "dirs-sys-next"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c60f7b8a8953926148223260454befb50c751d3c50e1c178c4fd1ace4083c9a"
dependencies = [
"libc",
"redox_users",
"winapi 0.3.8",
]
[[package]]
name = "doc-comment"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
2019-06-03 07:41:28 +00:00
[[package]]
name = "dtoa"
version = "0.4.6"
2019-06-03 07:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "134951f4028bdadb9b84baf4232681efbf277da25144b9b0ad65df75946c422b"
2019-06-03 07:41:28 +00:00
2019-05-11 07:00:33 +00:00
[[package]]
name = "dunce"
version = "1.0.1"
2019-05-11 07:00:33 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2641c4a7c0c4101df53ea572bffdc561c146f6c2eb09e4df02bc4811e3feeb4"
2019-05-11 07:00:33 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "either"
2019-10-13 04:53:58 +00:00
version = "1.5.3"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3"
2019-05-10 16:59:12 +00:00
2020-04-26 05:32:17 +00:00
[[package]]
name = "eml-parser"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9e30d14e24cd200f2351837a02feacf8f043410f2a56441868c93ef33f90239"
dependencies = [
"regex",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "encode_unicode"
2019-10-13 04:53:58 +00:00
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encoding"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
dependencies = [
"encoding-index-japanese",
"encoding-index-korean",
"encoding-index-simpchinese",
"encoding-index-singlebyte",
"encoding-index-tradchinese",
]
[[package]]
name = "encoding-index-japanese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-korean"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-simpchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-singlebyte"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding-index-tradchinese"
version = "1.20141219.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
dependencies = [
"encoding_index_tests",
]
[[package]]
name = "encoding_index_tests"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
[[package]]
name = "encoding_rs"
version = "0.8.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8ac63f94732332f44fe654443c46f6375d1939684c17b0afb6cb56b0456e171"
dependencies = [
"cfg-if",
]
[[package]]
name = "env_logger"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44533bbbb3bb3c1fa17d9f2e4e38bbbaf8396ba82193c4cb1b6445d711445d36"
dependencies = [
"atty",
"humantime",
"log",
"regex",
"termcolor",
]
[[package]]
name = "erased-serde"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ca8b296792113e1500fd935ae487be6e00ce318952a6880555554824d6ebf38"
dependencies = [
"serde 1.0.113",
]
[[package]]
name = "error-chain"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d371106cc88ffdfb1eabd7111e432da544f16f3e2d7bf1dfe8bf575f1df045cd"
dependencies = [
"version_check 0.9.2",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "failure"
version = "0.1.8"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d32e9bd16cc02eae7db7ef620b392808b89f6a5e16bb3497d159c6b92a0f4f86"
2019-05-10 16:59:12 +00:00
dependencies = [
"backtrace",
"failure_derive",
]
[[package]]
name = "failure_derive"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
2019-05-10 16:59:12 +00:00
]
2020-05-16 22:34:10 +00:00
[[package]]
name = "fake-simd"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed"
2019-08-27 21:45:18 +00:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2019-08-27 21:45:18 +00:00
[[package]]
name = "fallible-streaming-iterator"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2019-08-27 21:45:18 +00:00
2020-04-07 07:51:17 +00:00
[[package]]
name = "fancy-regex"
version = "0.3.5"
2020-04-07 07:51:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae91abf6555234338687bb47913978d275539235fcb77ba9863b779090b42b14"
2020-04-07 07:51:17 +00:00
dependencies = [
"bit-set",
"regex",
]
[[package]]
name = "fastrand"
version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a64b0126b293b050395b37b10489951590ed024c03d7df4f249d219c8ded7cbf"
[[package]]
name = "filesize"
2020-04-07 07:51:17 +00:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-07 07:51:17 +00:00
checksum = "12d741e2415d4e2e5bd1c1d00409d1a8865a57892c2d689b504365655d237d43"
dependencies = [
"winapi 0.3.8",
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "fixedbitset"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86d4de0081402f5e88cdac65c8dcdcc73118c1a7a465e2a05f0da05843a8ea33"
2019-06-07 07:50:26 +00:00
2019-05-18 01:24:13 +00:00
[[package]]
name = "flate2"
version = "1.0.14"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cfff41391129e0a856d6d822600b8d71179d46879e310417eb9c762eb178b42"
2019-05-18 01:24:13 +00:00
dependencies = [
"cfg-if",
"crc32fast",
"libc",
"miniz_oxide",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "fnv"
version = "1.0.7"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2019-05-18 01:24:13 +00:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "fuchsia-zircon"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82"
dependencies = [
"bitflags",
"fuchsia-zircon-sys",
]
[[package]]
name = "fuchsia-zircon-sys"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7"
[[package]]
name = "futures"
2019-10-13 04:53:58 +00:00
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b980f2816d6ee8673b6517b52cb0e808a180efc92e5c19d02cdda79066703ef"
[[package]]
name = "futures"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e05b85ec287aac0dc34db7d4a569323df697f9c55b99b15d6b4ef8cde49f613"
dependencies = [
"futures-channel",
"futures-core",
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2019-12-14 13:27:14 +00:00
[[package]]
name = "futures-channel"
version = "0.3.5"
2019-12-14 13:27:14 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f366ad74c28cca6ba456d95e6422883cfb4b252a83bed929c83abfdbbf2967d5"
2019-12-14 13:27:14 +00:00
dependencies = [
"futures-core",
"futures-sink",
2019-12-14 13:27:14 +00:00
]
[[package]]
name = "futures-channel-preview"
version = "0.3.0-alpha.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5e5f4df964fa9c1c2f8bddeb5c3611631cacd93baf810fc8bb2fb4b495c263a"
dependencies = [
"futures-core-preview",
"futures-sink-preview",
]
2019-11-04 15:47:03 +00:00
[[package]]
name = "futures-core"
version = "0.3.5"
2019-11-04 15:47:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59f5fff90fd5d971f936ad674802482ba441b6f09ba5e15fd8b39145582ca399"
2019-11-04 15:47:03 +00:00
[[package]]
name = "futures-core-preview"
version = "0.3.0-alpha.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b35b6263fb1ef523c3056565fa67b1d16f0a8604ff12b11b08c25f28a734c60a"
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
[[package]]
name = "futures-executor"
version = "0.3.5"
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10d6bb888be1153d3abeb9006b11b02cf5e9b209fda28693c31ae1e4e012e314"
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-executor-preview"
version = "0.3.0-alpha.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75236e88bd9fe88e5e8bfcd175b665d0528fe03ca4c5207fabc028c8f9d93e98"
dependencies = [
"futures-core-preview",
"futures-util-preview",
"num_cpus",
]
[[package]]
name = "futures-io"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "de27142b013a8e869c14957e6d2edeef89e97c289e69d042ee3a49acd8b51789"
[[package]]
name = "futures-io-preview"
version = "0.3.0-alpha.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4914ae450db1921a56c91bde97a27846287d062087d4a652efc09bb3a01ebda"
2019-11-04 15:47:03 +00:00
[[package]]
name = "futures-macro"
version = "0.3.5"
2019-11-04 15:47:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0b5a30a4328ab5473878237c447333c093297bded83a4983d10f4deea240d39"
2019-11-04 15:47:03 +00:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
2019-11-04 15:47:03 +00:00
]
[[package]]
name = "futures-preview"
version = "0.3.0-alpha.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b1dce2a0267ada5c6ff75a8ba864b4e679a9e2aa44262af7a3b5516d530d76e"
dependencies = [
"futures-channel-preview",
"futures-core-preview",
"futures-executor-preview",
"futures-io-preview",
"futures-sink-preview",
"futures-util-preview",
]
[[package]]
name = "futures-sink"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f2032893cb734c7a05d85ce0cc8b8c4075278e93b24b66f9de99d6eb0fa8acc"
[[package]]
name = "futures-sink-preview"
version = "0.3.0-alpha.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86f148ef6b69f75bb610d4f9a2336d4fc88c4b5b67129d1a340dd0fd362efeec"
2019-11-04 15:47:03 +00:00
[[package]]
name = "futures-task"
version = "0.3.5"
2019-11-04 15:47:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bdb66b5f09e22019b1ab0830f7785bcea8e7a42148683f99214f73f8ec21a626"
dependencies = [
"once_cell",
]
2019-11-04 15:47:03 +00:00
[[package]]
name = "futures-timer"
2020-04-08 22:28:20 +00:00
version = "3.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-08 22:28:20 +00:00
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
2019-11-04 15:47:03 +00:00
[[package]]
name = "futures-util"
version = "0.3.5"
2019-11-04 15:47:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8764574ff08b701a084482c3c7031349104b07ac897393010494beaa18ce32c6"
2019-11-04 15:47:03 +00:00
dependencies = [
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
"futures 0.1.29",
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project",
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
"slab",
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
"tokio-io",
2019-11-04 15:47:03 +00:00
]
[[package]]
name = "futures-util-preview"
version = "0.3.0-alpha.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ce968633c17e5f97936bd2797b6e38fb56cf16a7422319f7ec2e30d3c470e8d"
dependencies = [
"futures 0.1.29",
"futures-channel-preview",
"futures-core-preview",
"futures-io-preview",
"futures-sink-preview",
"memchr",
"pin-utils",
"slab",
"tokio-io",
]
[[package]]
name = "futures_codec"
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
checksum = "fe8859feb7140742ed1a2a85a07941100ad2b5f98a421b353931d718a34144d1"
dependencies = [
"bytes 0.5.5",
"futures 0.3.5",
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
"memchr",
"pin-project",
]
[[package]]
name = "generator"
version = "0.6.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "add72f17bb81521258fcc8a7a3245b1e184e916bfbe34f0ea89558f440df5c68"
dependencies = [
"cc",
"libc",
"log",
"rustc_version",
"winapi 0.3.8",
]
2020-05-16 22:34:10 +00:00
[[package]]
name = "generic-array"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
dependencies = [
"typenum",
]
[[package]]
name = "gethostname"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e692e296bfac1d2533ef168d0b60ff5897b8b70a4009276834014dd8924cc028"
dependencies = [
"libc",
"winapi 0.3.8",
]
[[package]]
name = "getrandom"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7abc8dd8451921606d809ba32e95b6111925cd2906060d2dcc29c070220503eb"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2020-03-08 19:18:44 +00:00
[[package]]
name = "getset"
version = "0.1.1"
2020-03-08 19:18:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24b328c01a4d71d2d8173daa93562a73ab0fe85616876f02500f53d82948c504"
2020-03-08 19:18:44 +00:00
dependencies = [
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "ghost"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a5bcf1bbeab73aa4cf2fde60a846858dc036163c7c33bec309f8d17de785479"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "gimli"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcc8e0c9bce37868955864dbecd2b1ab2bdf967e6f28066d65aaac620444b65c"
2019-06-01 21:11:28 +00:00
[[package]]
name = "git2"
2020-05-30 20:54:47 +00:00
version = "0.13.6"
2019-06-01 21:11:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-30 20:54:47 +00:00
checksum = "11e4b2082980e751c4bf4273e9cbb4a02c655729c8ee8a79f66cad03c8f4d31e"
2019-06-01 21:11:28 +00:00
dependencies = [
"bitflags",
"libc",
"libgit2-sys",
"log",
"url",
2019-06-01 21:11:28 +00:00
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "globset"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ad1da430bd7281dde2576f44c84cc3f0f7b475e7202cd503042dff01a8c8120"
dependencies = [
"aho-corasick",
"bstr",
"fnv",
"log",
"regex",
]
[[package]]
name = "heim"
2020-06-20 18:55:16 +00:00
version = "0.1.0-beta.3"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-20 18:55:16 +00:00
checksum = "d1014732324a9baf5a691525faabb33909bf6f40dcc2b03c8f2fb07bb01e7e3f"
dependencies = [
"heim-common",
"heim-cpu",
"heim-disk",
"heim-host",
"heim-memory",
"heim-net",
"heim-process",
"heim-runtime",
"heim-sensors",
]
[[package]]
name = "heim-common"
version = "0.1.0-beta.1"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58d46c2c79530368c7a76e4808ff7263970029f38bcd544a9d43722ed0828527"
dependencies = [
"cfg-if",
2019-12-14 13:27:14 +00:00
"core-foundation 0.7.0",
"futures-core",
"futures-util",
"lazy_static 1.4.0",
"libc",
"mach 0.3.2",
"nix 0.17.0",
"pin-utils",
"uom 0.28.0",
"winapi 0.3.8",
]
[[package]]
name = "heim-cpu"
2020-06-20 18:55:16 +00:00
version = "0.1.0-beta.3"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-20 18:55:16 +00:00
checksum = "73b1442359831aa671aa931f0a084aab210e77b1330ded78f1e60cc305abc4bb"
dependencies = [
"cfg-if",
"futures 0.3.5",
"glob",
"heim-common",
"heim-runtime",
"lazy_static 1.4.0",
"libc",
"mach 0.3.2",
"ntapi",
"smol",
"winapi 0.3.8",
]
[[package]]
name = "heim-disk"
version = "0.1.0-beta.1"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c650cc53da13cb4027eba907bfeff7c764d801e83fd833e48b513c38ed78368"
dependencies = [
"bitflags",
"cfg-if",
2019-12-14 13:27:14 +00:00
"core-foundation 0.7.0",
"heim-common",
"heim-runtime",
"libc",
"mach 0.3.2",
"widestring",
"winapi 0.3.8",
]
[[package]]
name = "heim-host"
version = "0.1.0-beta.1"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79cce3ce658bd45e510ff0a2fb5c668cbe1a7368929fd1db123741c99fd6902e"
dependencies = [
"cfg-if",
"heim-common",
"heim-runtime",
"lazy_static 1.4.0",
"libc",
"log",
"mach 0.3.2",
"ntapi",
"platforms",
"winapi 0.3.8",
]
[[package]]
name = "heim-memory"
version = "0.1.0-beta.1"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edf21693fc5ebcae37997230b90876687bcf6e53d243af988a5a89215a3c2578"
dependencies = [
"cfg-if",
"heim-common",
"heim-runtime",
"lazy_static 1.4.0",
"libc",
"mach 0.3.2",
"winapi 0.3.8",
]
[[package]]
name = "heim-net"
version = "0.1.0-beta.2"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59da1108e732afcda77e1429b5d0ce648b9a31d1f8cf385108b83bea4cf91342"
dependencies = [
"bitflags",
"cfg-if",
"heim-common",
"heim-runtime",
"libc",
"macaddr",
"nix 0.17.0",
]
[[package]]
name = "heim-process"
2020-06-20 18:55:16 +00:00
version = "0.1.1-beta.3"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-20 18:55:16 +00:00
checksum = "fd969deb2a89a488b6a9bf18a65923ae4cdef6b128fa2dedb74ef5c694deb5ae"
dependencies = [
"async-trait",
"cfg-if",
"darwin-libproc",
"futures 0.3.5",
"heim-common",
"heim-cpu",
"heim-host",
"heim-net",
"heim-runtime",
"lazy_static 1.4.0",
"libc",
"mach 0.3.2",
"memchr",
"ntapi",
"ordered-float",
"smol",
"winapi 0.3.8",
]
2019-08-08 17:33:19 +00:00
[[package]]
name = "heim-runtime"
version = "0.1.0-beta.1"
2019-08-21 06:39:57 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "906dd26ed2eb6b9f5f0dc3dfc04caeb82785ccc05a3b3326e4c841613451acc7"
2019-08-08 17:33:19 +00:00
dependencies = [
"futures 0.3.5",
"futures-timer",
"smol",
"version-sync",
2019-08-08 17:33:19 +00:00
]
2019-08-28 15:53:59 +00:00
[[package]]
name = "heim-sensors"
version = "0.1.0-beta.1"
2019-08-28 15:53:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdae0cfeffcc728b469424c937abaa286a0d89e2a0c347c51eaddc60c029144"
2019-08-28 15:53:59 +00:00
dependencies = [
"cfg-if",
"heim-common",
"heim-runtime",
2019-08-28 15:53:59 +00:00
]
2019-11-16 17:17:05 +00:00
[[package]]
name = "hermit-abi"
version = "0.1.14"
2019-11-16 17:17:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9586eedd4ce6b3c498bc3b4dd92fc9f11166aa908a914071953768066c67909"
2019-11-16 17:17:05 +00:00
dependencies = [
"libc",
2019-11-16 17:17:05 +00:00
]
[[package]]
name = "hex"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
2019-09-24 19:02:35 +00:00
[[package]]
name = "hex"
version = "0.4.2"
2019-09-24 19:02:35 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "644f9158b2f133fd50f5fb3242878846d9eb792e445c893805ff0e3824006e35"
2019-09-24 19:02:35 +00:00
[[package]]
name = "htmlescape"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
2019-06-08 18:09:17 +00:00
[[package]]
name = "http"
version = "0.1.21"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6ccf5ede3a895d8856620237b2f02972c1bbc78d2965ad7fe8838d4a0ed41f0"
2019-06-08 18:09:17 +00:00
dependencies = [
2020-01-17 20:35:48 +00:00
"bytes 0.4.12",
"fnv",
"itoa",
]
[[package]]
name = "http"
version = "0.2.1"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "28d569972648b2c512421b5f2a405ad6ac9666547189d0c5477a3f200f3e02f9"
2020-01-17 20:35:48 +00:00
dependencies = [
"bytes 0.5.5",
"fnv",
"itoa",
2019-06-08 18:09:17 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "humantime"
2019-10-13 04:53:58 +00:00
version = "1.3.0"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f"
2019-05-18 01:24:13 +00:00
dependencies = [
"quick-error",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "ical"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0e9337a9d901ffb92cf655e854c51734dc004287b959b47830a3308201f18c0"
dependencies = [
"failure",
]
[[package]]
name = "ichwh"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea685d38f1becb4f0a04e6cbff9256c6c2cd5e5905563b251401d1c13d12c654"
dependencies = [
"async-std",
"cfg-if",
"futures 0.3.5",
"thiserror",
]
2019-07-29 07:46:24 +00:00
[[package]]
name = "idna"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "02e2673c30ee86b5b96a9cb52ad15718aa1f966f5ab9ad54a8b95d5ca33120a9"
2019-07-29 07:46:24 +00:00
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
2019-07-29 07:46:24 +00:00
]
2019-07-05 07:53:09 +00:00
[[package]]
name = "image"
2020-04-08 22:28:20 +00:00
version = "0.22.5"
2019-07-05 07:53:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-08 22:28:20 +00:00
checksum = "08ed2ada878397b045454ac7cfb011d73132c59f31a955d230bd1f1c2e68eb4a"
2019-07-05 07:53:09 +00:00
dependencies = [
"byteorder",
"jpeg-decoder",
"num-iter",
"num-rational",
"num-traits 0.2.12",
"png",
2019-07-05 07:53:09 +00:00
]
[[package]]
name = "indexmap"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c398b2b113b55809ceb9ee3e753fcbac793f1956663f3c36549c1346015c2afe"
dependencies = [
"autocfg",
"serde 1.0.113",
]
2019-07-05 07:53:09 +00:00
[[package]]
name = "inflate"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cdb29978cc5797bd8dcc8e5bf7de604891df2a8dc576973d71a281e916db2ff"
2019-07-05 07:53:09 +00:00
dependencies = [
"adler32",
2019-07-05 07:53:09 +00:00
]
[[package]]
name = "inventory"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "621b50c176968fd3b0bd71f821a28a0ea98db2b5aea966b2fbb8bd1b7d310328"
dependencies = [
"ctor",
"ghost",
"inventory-impl",
]
[[package]]
name = "inventory-impl"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f99a4111304bade76468d05beab3487c226e4fe4c4de1c4e8f006e815762db73"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "iovec"
2019-10-13 04:53:58 +00:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e"
dependencies = [
"libc",
]
[[package]]
name = "isahc"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17b77027f12e53ae59a379f7074259d32eb10867e6183388020e922832d9c3fb"
dependencies = [
2020-01-17 20:35:48 +00:00
"bytes 0.4.12",
"crossbeam-channel",
"crossbeam-utils 0.6.6",
"curl",
"curl-sys",
"futures-io-preview",
"futures-util-preview",
2020-01-17 20:35:48 +00:00
"http 0.1.21",
"lazy_static 1.4.0",
"log",
"slab",
"sluice",
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "isatty"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e31a8281fc93ec9693494da65fbf28c0c2aa60a2eaec25dc58e2f31952e95edc"
2019-06-07 07:50:26 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"winapi 0.3.8",
2019-06-07 07:50:26 +00:00
]
2020-03-08 19:18:44 +00:00
[[package]]
name = "itertools"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
dependencies = [
"either",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "itoa"
version = "0.4.6"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
2019-05-10 16:59:12 +00:00
2019-09-13 03:44:21 +00:00
[[package]]
name = "jobserver"
version = "0.1.21"
2019-09-13 03:44:21 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c71313ebb9439f74b00d9d2dcec36440beaf57a6aa0623068441dd7cd81a7f2"
2019-09-13 03:44:21 +00:00
dependencies = [
"libc",
2019-09-13 03:44:21 +00:00
]
2019-07-05 07:53:09 +00:00
[[package]]
name = "jpeg-decoder"
version = "0.1.19"
2019-07-05 07:53:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b47b4c4e017b01abdc5bcc126d2d1002e5a75bbe3ce73f9f4f311a916363704"
2019-07-05 07:53:09 +00:00
dependencies = [
"byteorder",
2019-07-05 07:53:09 +00:00
]
2019-08-24 19:36:19 +00:00
[[package]]
name = "js-sys"
version = "0.3.40"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce10c23ad2ea25ceca0093bd3192229da4c5b3c0f2de499c1ecac0d98d452177"
2019-08-24 19:36:19 +00:00
dependencies = [
"wasm-bindgen",
2019-08-24 19:36:19 +00:00
]
2019-05-22 07:12:03 +00:00
[[package]]
name = "kernel32-sys"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d"
2019-05-22 07:12:03 +00:00
dependencies = [
"winapi 0.2.8",
"winapi-build",
2019-05-22 07:12:03 +00:00
]
[[package]]
name = "kstring"
2020-06-20 19:25:07 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-20 19:25:07 +00:00
checksum = "fbbc30beb80d56ddf6346e935c7abcba96329ee5c5a4cde8984a4e6b6f18b58e"
dependencies = [
"serde 1.0.113",
]
[[package]]
name = "kv-log-macro"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ff57d6d215f7ca7eb35a9a64d656ba4d9d2bef114d741dc08048e75e2f5d418"
dependencies = [
"log",
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "lazy_static"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
2019-06-03 07:41:28 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "lazy_static"
2019-10-13 04:53:58 +00:00
version = "1.4.0"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-05-10 16:59:12 +00:00
2019-05-18 01:24:13 +00:00
[[package]]
name = "lazycell"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f"
2019-05-18 01:24:13 +00:00
2019-06-22 03:43:37 +00:00
[[package]]
name = "lexical-core"
version = "0.7.4"
2019-06-22 03:43:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db65c6da02e61f55dae90a0ae427b2a5f6b3e8db09f58d10efab23af92592616"
2019-06-22 03:43:37 +00:00
dependencies = [
"arrayvec",
"bitflags",
"cfg-if",
"ryu",
"static_assertions",
2019-06-22 03:43:37 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "libc"
version = "0.2.71"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9457b06509d27052635f90d6466700c65095fdf75409b3fbdd903e988b886f49"
2019-05-10 16:59:12 +00:00
2019-06-01 21:11:28 +00:00
[[package]]
name = "libgit2-sys"
version = "0.12.7+1.0.0"
2019-06-01 21:11:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bcd07968649bcb7b9351ecfde53ca4d27673cccfdf57c84255ec18710f3153e0"
2019-06-01 21:11:28 +00:00
dependencies = [
"cc",
"libc",
"libz-sys",
"pkg-config",
2019-06-01 21:11:28 +00:00
]
2019-08-24 19:36:19 +00:00
[[package]]
name = "libnghttp2-sys"
version = "0.1.4+1.41.0"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03624ec6df166e79e139a2310ca213283d6b3c30810c54844f307086d4488df1"
2019-08-24 19:36:19 +00:00
dependencies = [
"cc",
"libc",
2019-08-24 19:36:19 +00:00
]
2019-08-27 21:45:18 +00:00
[[package]]
name = "libsqlite3-sys"
2020-05-16 22:34:10 +00:00
version = "0.18.0"
2019-08-27 21:45:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-16 22:34:10 +00:00
checksum = "1e704a02bcaecd4a08b93a23f6be59d0bd79cd161e0963e9499165a0a35df7bd"
2019-08-27 21:45:18 +00:00
dependencies = [
"cc",
"pkg-config",
"vcpkg",
2019-08-27 21:45:18 +00:00
]
2019-06-01 21:11:28 +00:00
[[package]]
name = "libz-sys"
version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2eb5e43362e38e2bca2fd5f5134c4d4564a23a5c28e9b95411652021a8675ebe"
2019-06-01 21:11:28 +00:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-06-01 21:11:28 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "line-wrap"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
2019-05-18 01:24:13 +00:00
dependencies = [
"safemem",
2019-05-18 01:24:13 +00:00
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "linked-hash-map"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d262045c5b87c0861b3f004610afd0e2c851e2908d08b6c870cbb9d5f494ecd"
2019-06-03 07:41:28 +00:00
dependencies = [
"serde 0.8.23",
"serde_test",
2019-06-03 07:41:28 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "linked-hash-map"
version = "0.5.3"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8dd5a6d5999d9907cda8ed67bbd137d3af8085216c2ac62de5be860bd41f304a"
2019-05-18 01:24:13 +00:00
[[package]]
name = "liquid"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "503b7cd741bf1a6c01bfdf697ba13f67e2c8e152920af25596763bb0dbcd6215"
dependencies = [
"doc-comment",
"kstring",
"liquid-core",
"liquid-derive",
"liquid-lib",
"serde 1.0.113",
]
[[package]]
name = "liquid-core"
2020-06-20 19:25:07 +00:00
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-20 19:25:07 +00:00
checksum = "4dc58422728185d54cd044bba4d45a2ef2a7111a421f84d344f65629949de4f1"
dependencies = [
"anymap",
"chrono",
"itertools",
"kstring",
"liquid-derive",
"num-traits 0.2.12",
"pest",
"pest_derive",
"serde 1.0.113",
]
[[package]]
name = "liquid-derive"
version = "0.20.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfef35f37f019e5dfc550517045078317f5d37afa64cbf246ecde616a7091cb0"
dependencies = [
"proc-macro2",
"proc-quote",
"syn",
]
[[package]]
name = "liquid-lib"
version = "0.20.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7c4aa47dc08fd8c6c8aea70a0da2a98c0f0416d49e8b03c5c46354ef559bee3c"
dependencies = [
"chrono",
"itertools",
"kstring",
"liquid-core",
"once_cell",
"percent-encoding",
"regex",
"unicode-segmentation",
]
[[package]]
name = "lock_api"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
dependencies = [
"scopeguard",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "log"
2019-07-29 07:46:24 +00:00
version = "0.4.8"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
2019-05-10 16:59:12 +00:00
dependencies = [
"cfg-if",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "loom"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ecc775857611e1df29abba5c41355cdf540e7e9d4acfdf0f355eefee82330b7"
dependencies = [
"cfg-if",
"generator",
"scoped-tls 0.1.2",
]
2019-08-27 21:45:18 +00:00
[[package]]
name = "lru-cache"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
2019-08-27 21:45:18 +00:00
dependencies = [
"linked-hash-map 0.5.3",
2019-08-27 21:45:18 +00:00
]
[[package]]
name = "macaddr"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baee0bbc17ce759db233beb01648088061bf678383130602a298e6998eedb2d8"
2019-08-11 03:01:09 +00:00
[[package]]
name = "mach"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86dd2487cdfea56def77b88438a2c915fb45113c5319bfe7e14306ca4cd0b0e1"
2019-08-11 03:01:09 +00:00
dependencies = [
"libc",
2019-08-11 03:01:09 +00:00
]
[[package]]
name = "mach"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
dependencies = [
"libc",
]
2019-06-07 16:30:50 +00:00
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
2019-06-07 16:30:50 +00:00
dependencies = [
"libc",
2019-06-07 16:30:50 +00:00
]
2020-05-16 22:34:10 +00:00
[[package]]
name = "maplit"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
2019-06-01 21:11:28 +00:00
[[package]]
name = "matches"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08"
2019-11-16 17:17:05 +00:00
[[package]]
name = "maybe-uninit"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00"
2019-08-25 13:57:47 +00:00
[[package]]
name = "md5"
2019-08-31 14:22:45 +00:00
version = "0.6.1"
2019-08-25 13:57:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e6bcd6433cff03a4bfc3d9834d504467db1f1cf6d0ea765d37d330249ed629d"
2019-08-25 13:57:47 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "memchr"
version = "2.3.3"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3728d817d99e5ac407411fa471ff9800a778d88a24685968b36824eaf4bee400"
2019-05-10 16:59:12 +00:00
[[package]]
name = "memoffset"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4fc2c02a7e374099d4ee95a193111f72d2110197fe200272371758f6c3643d8"
dependencies = [
"autocfg",
]
2020-01-29 13:34:36 +00:00
[[package]]
name = "meval"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f79496a5651c8d57cd033c5add8ca7ee4e3d5f7587a4777484640d9cb60392d9"
dependencies = [
"fnv",
"nom 1.2.4",
]
2019-06-08 18:09:17 +00:00
[[package]]
name = "mime"
version = "0.3.16"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
2019-06-08 18:09:17 +00:00
[[package]]
name = "mime_guess"
version = "2.0.3"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2684d4c2e97d99848d30b324b00c8fcc7e5c897b7cbb5819b09e7c90e8baf212"
2019-06-08 18:09:17 +00:00
dependencies = [
"mime",
"unicase",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "miniz_oxide"
version = "0.3.7"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "791daaae1ed6889560f8c4359194f56648355540573244a5448a83ba1ecc7435"
2019-05-18 01:24:13 +00:00
dependencies = [
"adler32",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "mio"
version = "0.6.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fce347092656428bc8eaf6201042cb551b8d67855af7374542a92a0fbfcac430"
dependencies = [
"cfg-if",
"fuchsia-zircon",
"fuchsia-zircon-sys",
"iovec",
"kernel32-sys",
"libc",
"log",
"miow",
"net2",
"slab",
"winapi 0.2.8",
]
[[package]]
name = "miow"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919"
dependencies = [
"kernel32-sys",
"net2",
"winapi 0.2.8",
"ws2_32-sys",
]
[[package]]
name = "native-tls"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b0d88c06fe90d5ee94048ba40409ef1d9315d86f6f38c2efdaad4fb50c58b2d"
dependencies = [
"lazy_static 1.4.0",
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
"security-framework",
"security-framework-sys",
"tempfile",
]
2020-03-08 19:18:44 +00:00
[[package]]
name = "natural"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65e6b44f8ddc659cde3555e0140d3441ad26cb03a1410774af1f9a19097c1867"
dependencies = [
"rust-stemmers",
]
[[package]]
name = "neso"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b3c31defbcb081163db18437fd88c2a267cb3e26f7bd5e4b186e4b1b38fe8c8"
dependencies = [
"bincode",
"cfg-if",
"log",
"serde 1.0.113",
"serde_derive",
"wasm-bindgen",
2019-06-08 18:09:17 +00:00
]
[[package]]
name = "net2"
version = "0.2.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ba7c918ac76704fb42afcbbb43891e72731f3dcca3bef2a19786297baf14af7"
dependencies = [
"cfg-if",
"libc",
"winapi 0.3.8",
]
2019-08-28 15:53:59 +00:00
[[package]]
name = "nix"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b2e0b4f3320ed72aaedb9a5ac838690a8047c7b275da22711fddff4f8a14229"
2019-08-28 15:53:59 +00:00
dependencies = [
"bitflags",
"cc",
"cfg-if",
"libc",
"void",
2019-08-28 15:53:59 +00:00
]
2020-03-08 19:18:44 +00:00
[[package]]
name = "nix"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50e4785f2c3b7589a0d0c1dd60285e1188adac4006e8abd6dd578e1567027363"
dependencies = [
"bitflags",
"cc",
"cfg-if",
"libc",
"void",
]
2020-01-29 13:34:36 +00:00
[[package]]
name = "nom"
version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a5b8c256fd9471521bcb84c3cdba98921497f1a331cbc15b8030fc63b82050ce"
2019-06-07 07:50:26 +00:00
[[package]]
name = "nom"
version = "4.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ad2a91a8e869eeb30b9cb3119ae87773a8f4ae617f41b1eb9c154b2905f7bd6"
2019-06-07 07:50:26 +00:00
dependencies = [
"memchr",
"version_check 0.1.5",
2019-06-07 07:50:26 +00:00
]
2019-06-13 05:33:38 +00:00
[[package]]
2019-06-22 03:43:37 +00:00
name = "nom"
version = "5.1.2"
2019-06-22 03:43:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ffb4262d26ed83a1c0a33a38fe2bb15797329c85770da05e6b828ddb782627af"
2019-06-13 05:33:38 +00:00
dependencies = [
"lexical-core",
"memchr",
"version_check 0.9.2",
2019-06-13 05:33:38 +00:00
]
2019-08-08 17:33:19 +00:00
[[package]]
name = "ntapi"
version = "0.3.4"
2019-08-08 17:33:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a31937dea023539c72ddae0e3571deadc1414b300483fa7aaec176168cfa9d2"
2019-08-08 17:33:19 +00:00
dependencies = [
"winapi 0.3.8",
2019-08-08 17:33:19 +00:00
]
2019-05-16 23:39:58 +00:00
[[package]]
name = "nu"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"clap",
"crossterm",
"ctrlc",
"dunce",
"futures 0.3.5",
"log",
"nu-build",
"nu-cli",
"nu-errors",
"nu-parser",
"nu-plugin",
"nu-protocol",
"nu-source",
"nu-test-support",
"nu-value-ext",
"nu_plugin_binaryview",
"nu_plugin_fetch",
"nu_plugin_inc",
"nu_plugin_match",
"nu_plugin_post",
"nu_plugin_ps",
"nu_plugin_start",
"nu_plugin_sys",
"nu_plugin_textview",
"nu_plugin_tree",
"pretty_env_logger",
2020-05-30 20:54:47 +00:00
"semver 0.10.0",
"serde 1.0.113",
"syntect",
"toml 0.5.6",
"url",
]
[[package]]
name = "nu-build"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"lazy_static 1.4.0",
"serde 1.0.113",
"serde_json",
"toml 0.5.6",
]
[[package]]
name = "nu-cli"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
2019-05-16 23:39:58 +00:00
dependencies = [
"ansi_term 0.12.1",
"app_dirs",
"async-recursion",
2020-05-29 08:22:52 +00:00
"async-trait",
"base64 0.12.2",
"bigdecimal",
"bson",
"byte-unit",
"bytes 0.5.5",
"calamine",
"cfg-if",
"chrono",
"clap",
"clipboard",
"codespan-reporting",
"csv",
"ctrlc",
"derive-new",
"directories 2.0.2",
"dirs 2.0.2",
"dunce",
2020-04-26 05:32:17 +00:00
"eml-parser",
"encoding_rs",
"filesize",
"futures 0.3.5",
"futures-util",
"futures_codec",
2020-04-08 22:28:20 +00:00
"getset",
"git2",
"glob",
"hex 0.4.2",
"htmlescape",
"ical",
"ichwh",
"indexmap",
"itertools",
"log",
2020-01-29 13:34:36 +00:00
"meval",
2020-04-08 22:28:20 +00:00
"natural",
2019-12-02 21:14:51 +00:00
"nu-build",
"nu-errors",
"nu-parser",
"nu-plugin",
"nu-protocol",
"nu-source",
"nu-table",
2019-12-17 18:41:47 +00:00
"nu-test-support",
"nu-value-ext",
"num-bigint",
"num-traits 0.2.12",
"parking_lot",
"pin-utils",
"pretty-hex",
"pretty_env_logger",
"ptree",
"query_interface",
"quickcheck",
"quickcheck_macros",
"rand",
"rayon",
"regex",
"roxmltree",
"rusqlite",
"rustyline",
"serde 1.0.113",
"serde-hjson 0.9.1",
"serde_bytes",
"serde_ini",
"serde_json",
"serde_urlencoded",
"serde_yaml",
"shellexpand",
"starship",
"strip-ansi-escapes",
"tempfile",
"term",
"termcolor",
"textwrap",
2020-01-17 20:35:48 +00:00
"toml 0.5.6",
"trash",
"typetag",
"umask",
"unicode-xid",
"users",
"which",
]
[[package]]
name = "nu-errors"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"ansi_term 0.12.1",
"bigdecimal",
"codespan-reporting",
"derive-new",
2020-04-08 22:28:20 +00:00
"getset",
"glob",
2019-12-02 21:14:51 +00:00
"nu-build",
"nu-source",
"num-bigint",
"num-traits 0.2.12",
"serde 1.0.113",
"serde_json",
"serde_yaml",
2020-01-17 20:35:48 +00:00
"toml 0.5.6",
]
[[package]]
name = "nu-parser"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"bigdecimal",
"codespan-reporting",
"derive-new",
"indexmap",
"log",
"nu-errors",
"nu-protocol",
"nu-source",
"num-bigint",
"num-traits 0.2.12",
"parking_lot",
"serde 1.0.113",
"shellexpand",
]
[[package]]
name = "nu-plugin"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
2020-05-24 22:11:49 +00:00
"bigdecimal",
"indexmap",
"nu-build",
"nu-errors",
"nu-protocol",
"nu-source",
"nu-value-ext",
"num-bigint",
"serde 1.0.113",
"serde_json",
]
[[package]]
name = "nu-protocol"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"ansi_term 0.12.1",
"bigdecimal",
"byte-unit",
"chrono",
"codespan-reporting",
"derive-new",
2020-04-08 22:28:20 +00:00
"getset",
"indexmap",
"itertools",
"log",
2020-04-08 22:28:20 +00:00
"natural",
2019-12-02 21:14:51 +00:00
"nu-build",
"nu-errors",
"nu-source",
"num-bigint",
"num-traits 0.2.12",
"query_interface",
"serde 1.0.113",
"serde_bytes",
"serde_json",
"serde_yaml",
2020-01-17 20:35:48 +00:00
"toml 0.5.6",
"typetag",
]
[[package]]
name = "nu-source"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"codespan-reporting",
"derive-new",
2020-04-08 22:28:20 +00:00
"getset",
2019-12-02 21:14:51 +00:00
"nu-build",
"pretty",
"serde 1.0.113",
"termcolor",
2019-05-22 07:12:03 +00:00
]
[[package]]
name = "nu-table"
version = "0.15.1"
dependencies = [
"ansi_term 0.12.1",
"unicode-width",
]
2019-12-17 18:41:47 +00:00
[[package]]
name = "nu-test-support"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
2019-12-17 18:41:47 +00:00
dependencies = [
"directories 2.0.2",
2019-12-17 18:41:47 +00:00
"dunce",
2020-04-08 22:28:20 +00:00
"getset",
2019-12-17 18:41:47 +00:00
"glob",
"indexmap",
"nu-build",
"nu-parser",
"nu-protocol",
"nu-source",
2019-12-17 18:41:47 +00:00
"tempfile",
]
[[package]]
name = "nu-value-ext"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"indexmap",
"itertools",
"nu-build",
"nu-errors",
"nu-parser",
"nu-protocol",
"nu-source",
"num-traits 0.2.12",
]
2019-12-04 17:51:20 +00:00
[[package]]
name = "nu_plugin_binaryview"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
2019-12-04 17:51:20 +00:00
dependencies = [
"ansi_term 0.12.1",
"crossterm",
2019-12-04 17:51:20 +00:00
"image",
"neso",
"nu-build",
"nu-errors",
"nu-plugin",
2019-12-04 17:51:20 +00:00
"nu-protocol",
"nu-source",
"pretty-hex",
"rawkey",
]
2019-12-07 03:46:05 +00:00
[[package]]
name = "nu_plugin_fetch"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
2019-12-07 03:46:05 +00:00
dependencies = [
"base64 0.12.2",
"futures 0.3.5",
2019-12-07 03:46:05 +00:00
"nu-build",
"nu-errors",
"nu-plugin",
2019-12-07 03:46:05 +00:00
"nu-protocol",
"nu-source",
"surf",
"url",
]
[[package]]
name = "nu_plugin_inc"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"nu-build",
"nu-errors",
"nu-plugin",
"nu-protocol",
"nu-source",
"nu-value-ext",
2020-05-30 20:54:47 +00:00
"semver 0.10.0",
]
[[package]]
name = "nu_plugin_match"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"futures 0.3.5",
"nu-build",
"nu-errors",
"nu-plugin",
"nu-protocol",
"nu-source",
"regex",
]
2019-12-07 03:46:05 +00:00
[[package]]
name = "nu_plugin_post"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
2019-12-07 03:46:05 +00:00
dependencies = [
"base64 0.12.2",
"futures 0.3.5",
2019-12-07 03:46:05 +00:00
"nu-build",
"nu-errors",
"nu-plugin",
2019-12-07 03:46:05 +00:00
"nu-protocol",
"nu-source",
"num-traits 0.2.12",
2019-12-07 03:46:05 +00:00
"serde_json",
"surf",
"url",
]
[[package]]
name = "nu_plugin_ps"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"futures 0.3.5",
"futures-timer",
"heim",
"nu-build",
"nu-errors",
"nu-plugin",
"nu-protocol",
"nu-source",
]
[[package]]
name = "nu_plugin_start"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"glob",
"nu-build",
"nu-errors",
"nu-plugin",
"nu-protocol",
"nu-source",
"open",
"url",
]
[[package]]
name = "nu_plugin_sys"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"battery",
"futures 0.3.5",
2019-12-14 13:27:14 +00:00
"futures-util",
"heim",
"nu-build",
"nu-errors",
"nu-plugin",
"nu-protocol",
"nu-source",
]
[[package]]
name = "nu_plugin_textview"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"ansi_term 0.12.1",
"bat",
"crossterm",
"nu-build",
"nu-cli",
"nu-errors",
"nu-plugin",
"nu-protocol",
"nu-source",
"syntect",
"textwrap",
"url",
]
[[package]]
name = "nu_plugin_tree"
2020-06-14 21:54:30 +00:00
version = "0.15.1"
dependencies = [
"derive-new",
"nu-build",
"nu-errors",
"nu-plugin",
"nu-protocol",
"nu-source",
"ptree",
]
[[package]]
name = "num-bigint"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304"
dependencies = [
"autocfg",
"num-integer",
"num-traits 0.2.12",
"serde 1.0.113",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "num-integer"
version = "0.1.43"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d59457e662d541ba17869cf51cf177c0b5f0cbf476c66bdc90bf1edac4f875b"
2019-05-10 16:59:12 +00:00
dependencies = [
"autocfg",
"num-traits 0.2.12",
2019-05-22 07:12:03 +00:00
]
2019-07-05 07:53:09 +00:00
[[package]]
name = "num-iter"
version = "0.1.41"
2019-07-05 07:53:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6e6b7c748f995c4c29c5f5ae0248536e04a5739927c74ec0fa564805094b9f"
2019-07-05 07:53:09 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits 0.2.12",
2019-07-05 07:53:09 +00:00
]
[[package]]
name = "num-rational"
version = "0.2.4"
2019-07-05 07:53:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c000134b5dbf44adc5cb772486d335293351644b801551abe8f75c84cfa4aef"
2019-07-05 07:53:09 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits 0.2.12",
2019-07-05 07:53:09 +00:00
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "num-traits"
version = "0.1.43"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31"
2019-06-03 07:41:28 +00:00
dependencies = [
"num-traits 0.2.12",
2019-06-03 07:41:28 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "num-traits"
version = "0.2.12"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac267bcc07f48ee5f8935ab0d24f316fb722d7a1292e2913f0cc196b29ffd611"
2019-05-22 07:12:03 +00:00
dependencies = [
"autocfg",
2019-05-22 07:12:03 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "num_cpus"
version = "1.13.0"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
2019-05-10 16:59:12 +00:00
dependencies = [
"hermit-abi",
"libc",
2019-05-10 16:59:12 +00:00
]
2019-06-07 16:30:50 +00:00
[[package]]
name = "objc"
2019-11-16 17:17:05 +00:00
version = "0.2.7"
2019-06-07 16:30:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2019-06-07 16:30:50 +00:00
dependencies = [
"malloc_buf",
2019-06-07 16:30:50 +00:00
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
2019-06-07 16:30:50 +00:00
dependencies = [
"block",
"objc",
"objc_id",
2019-06-07 16:30:50 +00:00
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
2019-06-07 16:30:50 +00:00
dependencies = [
"objc",
2019-06-07 16:30:50 +00:00
]
[[package]]
name = "object"
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5"
[[package]]
name = "ole32-sys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d2c49021782e5233cd243168edfa8037574afed4eba4bbaf538b3d8d1789d8c"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
[[package]]
name = "once_cell"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d"
[[package]]
name = "onig"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd91ccd8a02fce2f7e8a86655aec67bc6c171e6f8e704118a0e8c4b866a05a8a"
dependencies = [
"bitflags",
"lazy_static 1.4.0",
"libc",
"onig_sys",
]
[[package]]
name = "onig_sys"
version = "69.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3814583fad89f3c60ae0701d80e87e1fd3028741723deda72d0d4a0ecf0cb0db"
dependencies = [
"cc",
"pkg-config",
]
2020-05-16 22:34:10 +00:00
[[package]]
name = "opaque-debug"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c"
2020-01-17 20:35:48 +00:00
[[package]]
name = "open"
2020-03-08 19:18:44 +00:00
version = "1.4.0"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-03-08 19:18:44 +00:00
checksum = "7c283bf0114efea9e42f1a60edea9859e8c47528eae09d01df4b29c1e489cc48"
2020-01-17 20:35:48 +00:00
dependencies = [
"winapi 0.3.8",
]
[[package]]
name = "openssl"
version = "0.10.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cee6d85f4cb4c4f59a6a85d5b68a233d280c82e29e822913b9c8b129fbf20bdd"
dependencies = [
"bitflags",
"cfg-if",
"foreign-types",
"lazy_static 1.4.0",
"libc",
"openssl-sys",
]
2019-06-01 21:11:28 +00:00
[[package]]
name = "openssl-probe"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de"
2019-06-01 21:11:28 +00:00
[[package]]
name = "openssl-sys"
version = "0.9.58"
2019-06-01 21:11:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a842db4709b604f0fe5d1170ae3565899be2ad3d9cbc72dedc789ac0511f78de"
2019-06-01 21:11:28 +00:00
dependencies = [
"autocfg",
"cc",
"libc",
"pkg-config",
"vcpkg",
2019-06-01 21:11:28 +00:00
]
2019-05-17 15:55:50 +00:00
[[package]]
name = "ordered-float"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18869315e81473c951eb56ad5558bbc56978562d3ecfb87abb7a1e944cea4518"
2019-05-17 15:55:50 +00:00
dependencies = [
"num-traits 0.2.12",
2019-05-22 07:12:03 +00:00
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "ordermap"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a86ed3f5f244b372d6b1a00b72ef7f8876d0bc6a78a4c9985c53614041512063"
2019-06-07 07:50:26 +00:00
2020-01-17 20:35:48 +00:00
[[package]]
name = "os_info"
version = "2.0.6"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67cc1fe7b45f7e51f755195fd86b0483dbae30fdcf831a3254438d29118d12c4"
2020-01-17 20:35:48 +00:00
dependencies = [
"log",
"serde 1.0.113",
2020-01-17 20:35:48 +00:00
"winapi 0.3.8",
]
[[package]]
name = "parking"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a7fad362df89617628a7508b3e9d588ade1b0ac31aa25de168193ad999c2dd4"
[[package]]
name = "parking_lot"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d58c7c768d4ba344e3e8d72518ac13e259d7c7ade24167003b8488e10b6740a3"
dependencies = [
"cfg-if",
"cloudabi",
"libc",
"redox_syscall",
"smallvec",
"winapi 0.3.8",
2019-05-29 15:26:45 +00:00
]
[[package]]
name = "path-slash"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ddf9566c1063a197427135fb518ed42f2be18630fc2401aa267ed2dc95e9c85d"
[[package]]
name = "path_abs"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb6b8e6dede0bf94e9300e669f335ba92d5fc9fc8be7f4b1ca8a05206489388c"
dependencies = [
"std_prelude",
]
2019-07-29 07:46:24 +00:00
[[package]]
name = "percent-encoding"
2019-08-08 17:33:19 +00:00
version = "2.1.0"
2019-07-29 07:46:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
2019-07-29 07:46:24 +00:00
2020-05-16 22:34:10 +00:00
[[package]]
name = "pest"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10f4872ae94d7b90ae48754df22fd42ad52ce740b8f370b03da4835417403e53"
dependencies = [
"ucd-trie",
]
[[package]]
name = "pest_derive"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "833d1ae558dc601e9a60366421196a8d94bc0ac980476d0b67e1d0988d72b2d0"
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b8db626e31e5b81787b9783425769681b347011cc59471e33ea46d2ea0cf55"
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pest_meta"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54be6e404f5317079812fc8f9f5279de376d8856929e21c184ecf6bbd692a11d"
dependencies = [
"maplit",
"pest",
"sha-1",
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "petgraph"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c3659d1ee90221741f65dd128d9998311b0e40c5d3c23a62445938214abce4f"
2019-06-07 07:50:26 +00:00
dependencies = [
"fixedbitset",
"ordermap",
2019-06-07 07:50:26 +00:00
]
2020-01-17 20:35:48 +00:00
[[package]]
name = "pin-project"
version = "0.4.22"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12e3a6cdbfe94a5e4572812a0201f8c0ed98c1c452c7b8563ce2276988ef9c17"
2020-01-17 20:35:48 +00:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "0.4.22"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a0ffd45cf79d88737d7cc85bfd5d2894bee1139b356e616fe85dc389c61aaf7"
2020-01-17 20:35:48 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282adbf10f2698a7a77f8e983a74b2d18176c19a7fd32a45446139ae7b02b715"
2019-05-23 04:30:43 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
2019-05-23 04:30:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2019-05-23 04:30:43 +00:00
[[package]]
name = "piper"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01608bfa680dafb103f9207fa944facf572e4e3e708d10de19a0d0c3d36e5f18"
dependencies = [
"crossbeam-utils 0.7.2",
"futures-io",
"futures-sink",
"futures-util",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "pkg-config"
2019-11-16 17:17:05 +00:00
version = "0.3.17"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05da548ad6865900e60eaba7f589cc0783590a92e940c26953ff81ddbab2d677"
2019-05-18 01:24:13 +00:00
[[package]]
name = "platforms"
2019-10-13 04:53:58 +00:00
version = "0.2.1"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "feb3b2b1033b8a60b4da6ee470325f887758c95d5320f52f9ce0df055a55940e"
2019-05-18 01:24:13 +00:00
[[package]]
name = "plist"
2020-05-30 20:54:47 +00:00
version = "1.0.0"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-30 20:54:47 +00:00
checksum = "7b336d94e8e4ce29bf15bba393164629764744c567e8ad306cc1fdd0119967fd"
2019-05-18 01:24:13 +00:00
dependencies = [
"base64 0.12.2",
"chrono",
2020-04-07 07:51:17 +00:00
"indexmap",
"line-wrap",
"serde 1.0.113",
"xml-rs",
2019-05-18 01:24:13 +00:00
]
2019-07-05 07:53:09 +00:00
[[package]]
name = "png"
version = "0.15.3"
2019-07-05 07:53:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef859a23054bbfee7811284275ae522f0434a3c8e7f4b74bd4a35ae7e1c4a283"
2019-07-05 07:53:09 +00:00
dependencies = [
"bitflags",
"crc32fast",
"deflate",
"inflate",
2019-07-05 07:53:09 +00:00
]
[[package]]
name = "podio"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b18befed8bc2b61abc79a457295e7e838417326da1586050b919414073977f19"
[[package]]
name = "ppv-lite86"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "237a5ed80e274dbc66f86bd59c1e25edc039660be53194b5fe0a482e0f2612ea"
2019-11-04 15:47:03 +00:00
[[package]]
name = "pretty"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f60c0d9f6fc88ecdd245d90c1920ff76a430ab34303fc778d33b1d0a4c3bf6d3"
2019-11-04 15:47:03 +00:00
dependencies = [
"typed-arena",
2019-11-04 15:47:03 +00:00
]
2019-07-04 05:23:05 +00:00
[[package]]
name = "pretty-hex"
2019-10-13 04:53:58 +00:00
version = "0.1.1"
2019-07-04 05:23:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be91bcc43e73799dc46a6c194a55e7aae1d86cc867c860fd4a436019af21bd8c"
2019-07-04 05:23:05 +00:00
[[package]]
name = "pretty_env_logger"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "926d36b9553851b8b0005f1275891b392ee4d2d833852c417ed025477350fb9d"
dependencies = [
"env_logger",
"log",
2019-05-26 06:54:41 +00:00
]
2020-03-08 19:18:44 +00:00
[[package]]
name = "proc-macro-error"
version = "1.0.2"
2020-03-08 19:18:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "98e9e4b82e0ef281812565ea4751049f1bdcdfccda7d3f459f2e138a40c08678"
2020-03-08 19:18:44 +00:00
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check 0.9.2",
2020-03-08 19:18:44 +00:00
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.2"
2020-03-08 19:18:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f5444ead4e9935abd7f27dc51f7e852a0569ac888096d5ec2499470794e2e53"
2020-03-08 19:18:44 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"syn-mid",
"version_check 0.9.2",
2020-03-08 19:18:44 +00:00
]
2019-11-04 15:47:03 +00:00
[[package]]
name = "proc-macro-hack"
version = "0.5.16"
2019-11-04 15:47:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4"
2019-11-04 15:47:03 +00:00
[[package]]
name = "proc-macro-nested"
version = "0.1.6"
2019-11-04 15:47:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
2019-11-04 15:47:03 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "proc-macro2"
version = "1.0.18"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa"
2019-08-24 19:36:19 +00:00
dependencies = [
"unicode-xid",
2019-08-24 19:36:19 +00:00
]
[[package]]
name = "proc-quote"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06ea4226882439d07839be9c7f683e13d6d69d9c2fe960d61f637d1e2fa4c081"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"proc-quote-impl",
"quote",
"syn",
]
[[package]]
name = "proc-quote-impl"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fb3ec628b063cdbcf316e06a8b8c1a541d28fa6c0a8eacd2bfb2b7f49e88aa0"
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "ptree"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b0a3be00b19ee7bd33238c1c523a7ab4df697345f6b36f90827a7860ea938d4"
2019-06-07 07:50:26 +00:00
dependencies = [
"ansi_term 0.11.0",
"config",
"directories 1.0.2",
"isatty",
"petgraph",
"serde 1.0.113",
"serde-value",
"serde_derive",
"tint",
2019-06-07 07:50:26 +00:00
]
[[package]]
name = "pulldown-cmark"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e142c3b8f49d2200605ee6ba0b1d757310e9e7a72afe78c36ee2ef67300ee00"
dependencies = [
"bitflags",
"memchr",
"unicase",
]
[[package]]
name = "query_interface"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78c0f0046284eebb86b68f93f9677d499034f88e15ca01021ceea32c4d3c3693"
2019-05-18 01:24:13 +00:00
[[package]]
name = "quick-error"
version = "1.2.3"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2019-05-18 01:24:13 +00:00
[[package]]
name = "quick-xml"
version = "0.17.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe1e430bdcf30c9fdc25053b9c459bb1a4672af4617b6c783d7d91dc17c6bbb0"
dependencies = [
"encoding_rs",
"memchr",
]
[[package]]
name = "quickcheck"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44883e74aa97ad63db83c4bf8ca490f02b2fc02f92575e720c8551e843c945f"
dependencies = [
"env_logger",
"log",
"rand",
"rand_core",
]
[[package]]
name = "quickcheck_macros"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "608c156fd8e97febc07dc9c2e2c80bf74cfc6ef26893eae3daf8bc2bc94a4b7f"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-08-24 19:36:19 +00:00
[[package]]
name = "quote"
version = "1.0.7"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
2019-08-24 19:36:19 +00:00
dependencies = [
"proc-macro2",
2019-08-24 19:36:19 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "rand"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
dependencies = [
"getrandom",
"libc",
"rand_chacha",
"rand_core",
"rand_hc",
]
[[package]]
name = "rand_chacha"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
dependencies = [
"ppv-lite86",
"rand_core",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "rand_core"
2019-10-13 04:53:58 +00:00
version = "0.5.1"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
2019-05-18 01:24:13 +00:00
dependencies = [
"getrandom",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "rand_hc"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
dependencies = [
"rand_core",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "rawkey"
2019-08-02 03:58:10 +00:00
version = "0.1.2"
2019-07-16 19:10:25 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ec17a493dcb820725c002bc253f6f3ba4e4dc635e72c238540691b05e43897"
dependencies = [
"readkey",
"user32-sys",
"winapi 0.3.8",
"x11",
]
[[package]]
name = "rayon"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62f02856753d04e03e26929f820d0a0a337ebe71f849801eea335d464b349080"
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e92e15d89083484e11353891f1af602cc661426deb9564c298b270c726973280"
dependencies = [
"crossbeam-deque",
"crossbeam-queue",
"crossbeam-utils 0.7.2",
"lazy_static 1.4.0",
"num_cpus",
]
[[package]]
name = "readkey"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "86d401b6d6a1725a59f1b4e813275d289dff3ad09c72b373a10a7a8217ba3146"
2019-05-10 16:59:12 +00:00
[[package]]
name = "redox_syscall"
2019-07-29 07:46:24 +00:00
version = "0.1.56"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84"
2019-05-10 16:59:12 +00:00
[[package]]
name = "redox_users"
version = "0.3.4"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09b23093265f8d200fa7b4c2c76297f47e681c655f6f1285a8780d6a022f7431"
2019-05-10 16:59:12 +00:00
dependencies = [
"getrandom",
"redox_syscall",
"rust-argon2",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "regex"
version = "1.3.9"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c3780fcf44b193bc4d09f36d2a3c87b251da4a046c87795a0d35f4f927ad8e6"
2019-05-10 16:59:12 +00:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
"thread_local",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "regex-automata"
version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1ded71d66a4a97f5e961fd0cb25a5f366a42a41570d16a763a69c092c26ae4"
dependencies = [
"byteorder",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "regex-syntax"
version = "0.6.18"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26412eb97c6b088a6997e05f69403a802a92d520de2f8e63c2b65f9e0f47c4e8"
2019-05-10 16:59:12 +00:00
2019-06-08 18:09:17 +00:00
[[package]]
name = "remove_dir_all"
version = "0.5.3"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
2019-06-08 18:09:17 +00:00
dependencies = [
"winapi 0.3.8",
2019-06-08 18:09:17 +00:00
]
2019-06-16 06:43:40 +00:00
[[package]]
name = "result"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "194d8e591e405d1eecf28819740abed6d719d1a2db87fc0bcdedee9a26d55560"
2019-06-16 06:43:40 +00:00
2019-06-11 06:26:03 +00:00
[[package]]
name = "roxmltree"
version = "0.11.1"
2019-06-11 06:26:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0278075f8c72d2a96dfd214591b14d5a3b46ab5c2f80f806c538011f34f8bf0c"
2019-06-11 06:26:03 +00:00
dependencies = [
"xmlparser",
2019-06-11 06:26:03 +00:00
]
2019-08-27 21:45:18 +00:00
[[package]]
name = "rusqlite"
2020-05-16 22:34:10 +00:00
version = "0.23.1"
2019-08-27 21:45:18 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-16 22:34:10 +00:00
checksum = "45d0fd62e1df63d254714e6cb40d0a0e82e7a1623e7a27f679d851af092ae58b"
2019-08-27 21:45:18 +00:00
dependencies = [
"bitflags",
"fallible-iterator",
"fallible-streaming-iterator",
"libsqlite3-sys",
"lru-cache",
"memchr",
2020-05-16 22:34:10 +00:00
"smallvec",
"time",
2019-08-27 21:45:18 +00:00
]
2019-08-08 17:33:19 +00:00
[[package]]
name = "rust-argon2"
version = "0.7.0"
2019-08-08 17:33:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bc8af4bda8e1ff4932523b94d3dd20ee30a87232323eda55903ffd71d2fb017"
2019-08-08 17:33:19 +00:00
dependencies = [
"base64 0.11.0",
"blake2b_simd",
"constant_time_eq",
"crossbeam-utils 0.7.2",
2019-08-08 17:33:19 +00:00
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "rust-ini"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e52c148ef37f8c375d49d5a73aa70713125b7f19095948a923f80afdeb22ec2"
2019-06-07 07:50:26 +00:00
2020-03-08 19:18:44 +00:00
[[package]]
name = "rust-stemmers"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
dependencies = [
"serde 1.0.113",
2020-03-08 19:18:44 +00:00
"serde_derive",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "rustc-demangle"
2019-10-13 04:53:58 +00:00
version = "0.1.16"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783"
2019-05-10 16:59:12 +00:00
2019-05-18 01:24:13 +00:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2019-05-18 01:24:13 +00:00
dependencies = [
2020-05-30 20:54:47 +00:00
"semver 0.9.0",
2019-05-18 01:24:13 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "rustyline"
2020-06-04 17:50:12 +00:00
version = "6.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-04 17:50:12 +00:00
checksum = "3358c21cbbc1a751892528db4e1de4b7a2b6a73f001e215aaba97d712cfa9777"
2019-05-10 16:59:12 +00:00
dependencies = [
2019-12-14 13:27:14 +00:00
"cfg-if",
2020-06-04 17:50:12 +00:00
"dirs-next",
"libc",
"log",
"memchr",
2020-04-07 07:51:17 +00:00
"nix 0.17.0",
"scopeguard",
"unicode-segmentation",
"unicode-width",
2020-04-07 07:51:17 +00:00
"utf8parse 0.2.0",
"winapi 0.3.8",
2019-05-10 16:59:12 +00:00
]
2019-07-04 03:06:43 +00:00
[[package]]
name = "ryu"
version = "1.0.5"
2019-07-04 03:06:43 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
2019-07-04 03:06:43 +00:00
2019-05-18 01:24:13 +00:00
[[package]]
name = "safemem"
2019-11-16 17:17:05 +00:00
version = "0.3.3"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2019-05-18 01:24:13 +00:00
[[package]]
name = "same-file"
version = "1.0.6"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2019-05-18 01:24:13 +00:00
dependencies = [
"winapi-util",
2019-05-18 01:24:13 +00:00
]
2019-06-08 18:09:17 +00:00
[[package]]
name = "schannel"
version = "0.1.19"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
2019-06-08 18:09:17 +00:00
dependencies = [
"lazy_static 1.4.0",
"winapi 0.3.8",
2019-06-08 18:09:17 +00:00
]
[[package]]
name = "scoped-tls"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "332ffa32bf586782a3efaeb58f127980944bbc8c4d6913a86107ac2a5ab24b28"
[[package]]
name = "scoped-tls"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ea6a9290e3c9cf0f18145ef7ffa62d68ee0bf5fcd651017e586dc7fd5da448c2"
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2020-01-17 20:35:48 +00:00
[[package]]
name = "security-framework"
version = "0.4.4"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64808902d7d99f78eaddd2b4e2509713babc3dc3c85ad6f4c447680f3c01e535"
2020-01-17 20:35:48 +00:00
dependencies = [
"bitflags",
"core-foundation 0.7.0",
"core-foundation-sys 0.7.0",
"libc",
2020-01-17 20:35:48 +00:00
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
version = "0.4.3"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17bf11d99252f512695eb468de5516e5cf75455521e69dfe343f3b74e4748405"
2020-01-17 20:35:48 +00:00
dependencies = [
"core-foundation-sys 0.7.0",
"libc",
2020-01-17 20:35:48 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2019-05-18 01:24:13 +00:00
dependencies = [
"semver-parser 0.7.0",
2019-05-18 01:24:13 +00:00
]
2020-05-30 20:54:47 +00:00
[[package]]
name = "semver"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "394cec28fa623e00903caf7ba4fa6fb9a0e260280bb8cdbbba029611108a0190"
dependencies = [
2020-06-01 16:32:24 +00:00
"semver-parser 0.7.0",
2020-05-30 20:54:47 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2019-05-18 01:24:13 +00:00
[[package]]
name = "semver-parser"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b46e1121e8180c12ff69a742aabc4f310542b6ccb69f1691689ac17fdf8618aa"
2019-06-03 07:41:28 +00:00
[[package]]
name = "serde"
version = "0.8.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9dad3f759919b92c3068c696c15c3d17238234498bbdcc80f2c469606f948ac8"
2019-06-03 07:41:28 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "serde"
version = "1.0.113"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6135c78461981c79497158ef777264c51d9d0f4f3fc3a4d22b915900e42dac6a"
2019-06-08 18:09:17 +00:00
dependencies = [
"serde_derive",
2019-06-08 18:09:17 +00:00
]
2019-05-10 16:59:12 +00:00
2019-06-07 07:50:26 +00:00
[[package]]
name = "serde-hjson"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b833c5ad67d52ced5f5938b2980f32a9c1c5ef047f0b4fb3127e7a423c76153"
2019-06-07 07:50:26 +00:00
dependencies = [
"lazy_static 0.2.11",
"linked-hash-map 0.3.0",
"num-traits 0.1.43",
"regex",
"serde 0.8.23",
2019-06-07 07:50:26 +00:00
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "serde-hjson"
2019-08-23 03:29:08 +00:00
version = "0.9.1"
2019-06-03 07:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a3a4e0ea8a88553209f6cc6cfe8724ecad22e1acf372793c27d995290fe74f8"
2019-06-03 07:41:28 +00:00
dependencies = [
"lazy_static 1.4.0",
"linked-hash-map 0.3.0",
"num-traits 0.1.43",
"regex",
"serde 0.8.23",
2019-06-03 07:41:28 +00:00
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "serde-value"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a663f873dedc4eac1a559d4c6bc0d0b2c34dc5ac4702e105014b8281489e44f"
2019-06-07 07:50:26 +00:00
dependencies = [
"ordered-float",
"serde 1.0.113",
2019-06-07 07:50:26 +00:00
]
2019-07-15 18:34:44 +00:00
[[package]]
name = "serde_bytes"
version = "0.11.5"
2019-07-15 18:34:44 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16ae07dd2f88a366f15bd0632ba725227018c69a1c8550a927324f8eb8368bb9"
2019-07-15 18:34:44 +00:00
dependencies = [
"serde 1.0.113",
2019-07-15 18:34:44 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "serde_derive"
version = "1.0.113"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93c5eaa17d0954cb481cdcfffe9d84fcfa7a1a9f2349271e678677be4c26ae31"
2019-05-18 01:24:13 +00:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2019-05-18 01:24:13 +00:00
]
2019-06-16 06:43:40 +00:00
[[package]]
name = "serde_ini"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb236687e2bb073a7521c021949be944641e671b8505a94069ca37b656c81139"
2019-06-16 06:43:40 +00:00
dependencies = [
"result",
"serde 1.0.113",
"void",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "serde_json"
version = "1.0.55"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec2c5d7e739bc07a3e73381a39d61fdb5f671c60c1df26a130690665803d8226"
2019-05-18 01:24:13 +00:00
dependencies = [
"indexmap",
"itoa",
"ryu",
"serde 1.0.113",
2019-05-18 01:24:13 +00:00
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "serde_test"
version = "0.8.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "110b3dbdf8607ec493c22d5d947753282f3bae73c0f56d322af1e8c78e4c23d5"
2019-06-03 07:41:28 +00:00
dependencies = [
"serde 0.8.23",
2019-06-03 07:41:28 +00:00
]
2019-06-08 18:09:17 +00:00
[[package]]
name = "serde_urlencoded"
2019-08-24 19:36:19 +00:00
version = "0.6.1"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ec5d77e2d4c73717816afac02670d5c4f534ea95ed430442cad02e7a6e32c97"
2019-06-08 18:09:17 +00:00
dependencies = [
"dtoa",
"itoa",
"serde 1.0.113",
"url",
2019-06-08 18:09:17 +00:00
]
2019-06-03 07:41:28 +00:00
[[package]]
name = "serde_yaml"
version = "0.8.13"
2019-06-03 07:41:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae3e2dd40a7cdc18ca80db804b7f461a39bb721160a85c9a1fa30134bf3c02a5"
2019-06-03 07:41:28 +00:00
dependencies = [
"dtoa",
"linked-hash-map 0.5.3",
"serde 1.0.113",
"yaml-rust",
2019-06-03 07:41:28 +00:00
]
2020-05-16 22:34:10 +00:00
[[package]]
name = "sha-1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7d94d0bede923b3cea61f3f1ff57ff8cdfd77b400fb8f9998949e0cf04163df"
dependencies = [
"block-buffer",
"digest",
"fake-simd",
"opaque-debug",
]
[[package]]
name = "shell-words"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6fa3938c99da4914afedd13bf3d79bcb6c277d1b2c398d23257a304d9e1b074"
[[package]]
name = "shell32-sys"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ee04b46101f57121c9da2b151988283b6beb79b34f5bb29a58ee48cb695122c"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
2020-03-08 19:18:44 +00:00
[[package]]
name = "shellexpand"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2b22262a9aaf9464d356f656fea420634f78c881c5eebd5ef5e66d8b9bc603"
dependencies = [
"dirs 2.0.2",
]
[[package]]
name = "signal-hook"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "604508c1418b99dfe1925ca9224829bb2a8a9a04dda655cc01fcad46f4ab05ed"
dependencies = [
"libc",
"mio",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-registry"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94f478ede9f64724c5d173d7bb56099ec3e2d9fc2774aac65d34b8b890405f41"
dependencies = [
"arc-swap",
"libc",
]
2019-05-23 04:30:43 +00:00
[[package]]
name = "slab"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
2019-05-23 04:30:43 +00:00
2019-08-24 19:36:19 +00:00
[[package]]
name = "sluice"
version = "0.4.2"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a7d06dfb3e8743bc19e6de8a302277471d08077d68946b307280496dc5a3531"
2019-08-24 19:36:19 +00:00
dependencies = [
"futures-channel-preview",
"futures-core-preview",
"futures-io-preview",
2019-08-24 19:36:19 +00:00
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "smallvec"
version = "1.4.0"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7cb5678e1615754284ec264d9bb5b4c27d2018577fd90ac0ceb578591ed5ee4"
2019-05-18 01:24:13 +00:00
[[package]]
name = "smol"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f50d21240d7045d848746d6244762b8cb96449b586b4200519719784859ef50"
dependencies = [
"async-task",
"blocking",
"concurrent-queue",
"fastrand",
"futures-io",
"futures-util",
"libc",
"once_cell",
"piper",
"scoped-tls 1.0.0",
"slab",
"socket2",
"wepoll-binding",
]
2019-08-24 19:36:19 +00:00
[[package]]
name = "socket2"
version = "0.3.12"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03088793f677dce356f3ccc2edb1b314ad191ab702a5de3faf49304f7e104918"
2019-08-24 19:36:19 +00:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"winapi 0.3.8",
2019-08-24 19:36:19 +00:00
]
[[package]]
name = "starship"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3e5fbb7eefc575ca97af2adcd9176933d28b0fc9357af45bac5d653c0e922342"
dependencies = [
"ansi_term 0.12.1",
"attohttpc",
"battery",
"byte-unit",
"chrono",
"clap",
"dirs 2.0.2",
"gethostname",
"git2",
"log",
"nom 5.1.2",
"once_cell",
2020-01-17 20:35:48 +00:00
"open",
"os_info",
"path-slash",
2020-05-16 22:34:10 +00:00
"pest",
"pest_derive",
"pretty_env_logger",
"rayon",
2020-03-08 19:18:44 +00:00
"regex",
"serde_json",
"starship_module_config_derive",
"sysinfo",
2020-01-17 20:35:48 +00:00
"term_size",
"textwrap",
"toml 0.5.6",
"unicode-segmentation",
2020-01-17 20:35:48 +00:00
"unicode-width",
"urlencoding",
"yaml-rust",
]
[[package]]
name = "starship_module_config_derive"
2019-12-14 13:27:14 +00:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-12-14 13:27:14 +00:00
checksum = "9d1ccdf8467ad115d088ab970010266b27deec41b9d940f154c785b3808bd04e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-06-22 03:43:37 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
2019-06-22 03:43:37 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2019-06-22 03:43:37 +00:00
[[package]]
name = "std_prelude"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8207e78455ffdf55661170876f88daf85356e4edd54e0a3dbc79586ca1e50cbe"
[[package]]
name = "strip-ansi-escapes"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d63676e2abafa709460982ddc02a3bb586b6d15a49b75c212e06edd3933acee"
dependencies = [
"vte",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2019-05-18 01:24:13 +00:00
2019-08-24 19:36:19 +00:00
[[package]]
name = "surf"
version = "1.0.3"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "741a8008f8a833ef16f47df94a30754478fb2c2bf822b9c2e6f7f09203b97ace"
2019-08-24 19:36:19 +00:00
dependencies = [
"futures-preview",
2020-01-17 20:35:48 +00:00
"http 0.1.21",
"isahc",
"js-sys",
"log",
"mime",
"mime_guess",
"serde 1.0.113",
"serde_json",
"serde_urlencoded",
"url",
"wasm-bindgen",
"wasm-bindgen-futures 0.3.27",
"web-sys",
2019-05-10 16:59:12 +00:00
]
2019-08-24 19:36:19 +00:00
[[package]]
name = "syn"
version = "1.0.31"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5304cfdf27365b7585c25d4af91b35016ed21ef88f17ced89c7093b43dba8b6"
2019-05-10 16:59:12 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
2019-05-10 16:59:12 +00:00
]
2020-03-08 19:18:44 +00:00
[[package]]
name = "syn-mid"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7be3539f6c128a931cf19dcee741c1af532c7fd387baa739c03dd2e96479338a"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "synstructure"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b834f2d66f734cb897113e34aaff2f1ab4719ca946f9a7358dba8f8064148701"
dependencies = [
"proc-macro2",
"quote",
"syn",
"unicode-xid",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "syntect"
2020-05-30 20:54:47 +00:00
version = "4.2.0"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-30 20:54:47 +00:00
checksum = "83b43a6ca1829ccb0c933b615c9ea83ffc8793ae240cecbd15119b13d741161d"
2019-05-18 01:24:13 +00:00
dependencies = [
"bincode",
"bitflags",
2020-04-07 07:51:17 +00:00
"fancy-regex",
"flate2",
"fnv",
"lazy_static 1.4.0",
"lazycell",
"onig",
"plist",
"regex-syntax",
"serde 1.0.113",
"serde_derive",
"serde_json",
"walkdir",
"yaml-rust",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "sysinfo"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "11c9e4fd26a5b1dfa0aceb8417d4825b65b49cf98b84a45b7af4007ad403e797"
dependencies = [
"cfg-if",
"doc-comment",
"libc",
2020-01-17 20:35:48 +00:00
"ntapi",
"once_cell",
"rayon",
"winapi 0.3.8",
]
2019-06-08 18:09:17 +00:00
[[package]]
name = "tempfile"
version = "3.1.0"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
2019-06-08 18:09:17 +00:00
dependencies = [
"cfg-if",
"libc",
"rand",
"redox_syscall",
"remove_dir_all",
"winapi 0.3.8",
2019-06-08 18:09:17 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "term"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edd106a334b7657c10b7c540a0106114feadeb4dc314513e97df481d5d966f42"
2019-05-10 16:59:12 +00:00
dependencies = [
"byteorder",
"dirs 1.0.5",
"winapi 0.3.8",
2019-05-10 16:59:12 +00:00
]
2019-08-16 05:47:47 +00:00
[[package]]
name = "term_size"
version = "0.3.2"
2019-08-16 05:47:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e4129646ca0ed8f45d09b929036bafad5377103edd06e50bf574b353d2b08d9"
2019-08-16 05:47:47 +00:00
dependencies = [
"libc",
"winapi 0.3.8",
2019-08-16 05:47:47 +00:00
]
2019-05-26 06:54:41 +00:00
[[package]]
name = "termcolor"
2020-01-17 20:35:48 +00:00
version = "1.1.0"
2019-05-26 06:54:41 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-17 20:35:48 +00:00
checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
2019-05-26 06:54:41 +00:00
dependencies = [
2020-01-17 20:35:48 +00:00
"winapi-util",
2019-05-26 06:54:41 +00:00
]
[[package]]
name = "terminal_size"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8038f95fc7a6f351163f4b964af631bd26c9e828f7db085f2a84aca56f70d13b"
dependencies = [
"libc",
"winapi 0.3.8",
]
[[package]]
name = "termios"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f0fcee7b24a25675de40d5bb4de6e41b0df07bc9856295e7e2b3a3600c400c2"
dependencies = [
"libc",
]
2019-05-18 01:24:13 +00:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2019-05-18 01:24:13 +00:00
dependencies = [
"term_size",
"unicode-width",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "thiserror"
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7dfdd070ccd8ccb78f4ad66bf1982dc37f620ef696c6b5028fe2ed83dd3d0d08"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd80fc12f73063ac132ac92aceea36734f04a1d93c1240c6944e23a3b8841793"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "thread_local"
version = "1.0.1"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d40c6d1b69745a6ec6fb1ca717914848da4b44ae29d9b3080cbee91d72a69b14"
2019-05-10 16:59:12 +00:00
dependencies = [
"lazy_static 1.4.0",
2019-05-10 16:59:12 +00:00
]
[[package]]
name = "time"
version = "0.1.43"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
2019-05-10 16:59:12 +00:00
dependencies = [
"libc",
"winapi 0.3.8",
2019-05-10 16:59:12 +00:00
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "tint"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7af24570664a3074673dbbf69a65bdae0ae0b72f2949b1adfbacb736ee4d6896"
2019-06-07 07:50:26 +00:00
dependencies = [
"lazy_static 0.2.11",
2019-06-07 07:50:26 +00:00
]
[[package]]
name = "tinyvec"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53953d2d3a5ad81d9f844a32f14ebb121f50b650cd59d0ee2a07cf13c617efed"
[[package]]
name = "tokio-io"
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
Futures v0.3 upgrade (#1344) * Upgrade futures, async-stream, and futures_codec These were the last three dependencies on futures-preview. `nu` itself is now fully dependent on `futures@0.3`, as opposed to `futures-preview` alpha. Because the update to `futures` from `0.3.0-alpha.19` to `0.3.0` removed the `Stream` implementation of `VecDeque` ([changelog][changelog]), most commands that convert a `VecDeque` to an `OutputStream` broke and had to be fixed. The current solution is to now convert `VecDeque`s to a `Stream` via `futures::stream::iter`. However, it may be useful for `futures` to create an `IntoStream` trait, implemented on the `std::collections` (or really any `IntoIterator`). If something like this happends, it may be worthwhile to update the trait implementations on `OutputStream` and refactor these commands again. While upgrading `futures_codec`, we remove a custom implementation of `LinesCodec`, as one has been added to the library. There's also a small refactor to make the stream output more idiomatic. [changelog]: https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md#030---2019-11-5 * Upgrade sys & ps plugin dependencies They were previously dependent on `futures-preview`, and `nu_plugin_ps` was dependent on an old version of `futures-timer`. * Remove dependency on futures-timer from nu * Update Cargo.lock * Fix formatting * Revert fmt regressions CI is still on 1.40.0, but the latest rustfmt v1.41.0 has changes to the `val @ pattern` syntax, causing the linting job to fail. * Fix clippy warnings
2020-02-06 03:46:48 +00:00
checksum = "57fc868aae093479e3131e3d165c93b1c7474109d13c90ec0dda2a1bbfff0674"
dependencies = [
2020-01-17 20:35:48 +00:00
"bytes 0.4.12",
"futures 0.1.29",
"log",
]
2019-06-07 07:50:26 +00:00
[[package]]
name = "toml"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
2019-06-07 07:50:26 +00:00
dependencies = [
"serde 1.0.113",
2019-06-07 07:50:26 +00:00
]
2019-05-22 07:12:03 +00:00
[[package]]
name = "toml"
2020-01-17 20:35:48 +00:00
version = "0.5.6"
2019-05-22 07:12:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-17 20:35:48 +00:00
checksum = "ffc92d160b1eef40665be3a05630d003936a3bc7da7421277846c2613e92c71a"
2019-05-22 07:12:03 +00:00
dependencies = [
2020-05-16 22:34:10 +00:00
"indexmap",
"serde 1.0.113",
2019-05-22 07:12:03 +00:00
]
[[package]]
name = "trash"
2020-05-16 22:34:10 +00:00
version = "1.0.1"
2019-05-22 07:12:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-16 22:34:10 +00:00
checksum = "a3d3efa66f2eb71069c3ba9582361e823626067b728ec882490e68c9c43b5e32"
2019-05-22 07:12:03 +00:00
dependencies = [
"winapi 0.3.8",
2019-05-22 07:12:03 +00:00
]
2019-11-04 15:47:03 +00:00
[[package]]
name = "typed-arena"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9b2228007eba4120145f785df0f6c92ea538f5a3635a612ecf4e334c8c1446d"
2019-11-04 15:47:03 +00:00
2019-08-11 03:01:09 +00:00
[[package]]
name = "typenum"
version = "1.12.0"
2019-08-11 03:01:09 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
2019-08-11 03:01:09 +00:00
[[package]]
name = "typetag"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9275125decb5d75fe57ebfe92debd119b15757aae27c56d7cb61ecab871960bc"
dependencies = [
"erased-serde",
"inventory",
"lazy_static 1.4.0",
"serde 1.0.113",
"typetag-impl",
]
[[package]]
name = "typetag-impl"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc232cda3b1d82664153e6c95d1071809aa0f1011f306c3d6989f33d8c6ede17"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-05-16 22:34:10 +00:00
[[package]]
name = "ucd-trie"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c"
2019-11-19 05:46:47 +00:00
[[package]]
name = "umask"
2020-05-30 20:54:47 +00:00
version = "1.0.0"
2019-11-19 05:46:47 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-05-30 20:54:47 +00:00
checksum = "982efbf70ec4d28f7862062c03dd1a4def601a5079e0faf1edc55f2ad0f6fe46"
2019-11-19 05:46:47 +00:00
2019-06-08 18:09:17 +00:00
[[package]]
name = "unicase"
2019-11-16 17:17:05 +00:00
version = "2.6.0"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
2019-06-08 18:09:17 +00:00
dependencies = [
"version_check 0.9.2",
2019-06-08 18:09:17 +00:00
]
2019-06-01 21:11:28 +00:00
[[package]]
name = "unicode-bidi"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49f2bd0c6468a8230e1db229cff8029217cf623c767ea5d60bfbd42729ea54d5"
2019-06-01 21:11:28 +00:00
dependencies = [
"matches",
2019-06-01 21:11:28 +00:00
]
[[package]]
name = "unicode-normalization"
version = "0.1.13"
2019-06-01 21:11:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fb19cf769fa8c6a80a162df694621ebeb4dafb606470b2b2fce0be40a98a977"
2019-06-01 21:11:28 +00:00
dependencies = [
"tinyvec",
2019-06-01 21:11:28 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "unicode-segmentation"
2019-11-16 17:17:05 +00:00
version = "1.6.0"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e83e153d1053cbb5a118eeff7fd5be06ed99153f00dbcd8ae310c5fb2b22edc0"
2019-05-10 16:59:12 +00:00
[[package]]
name = "unicode-width"
2019-12-14 13:27:14 +00:00
version = "0.1.7"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-12-14 13:27:14 +00:00
checksum = "caaa9d531767d1ff2150b9332433f32a24622147e5ebb1f26409d5da67afd479"
2019-05-10 16:59:12 +00:00
2019-07-29 07:46:24 +00:00
[[package]]
name = "unicode-xid"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
2019-07-29 07:46:24 +00:00
2020-01-17 20:35:48 +00:00
[[package]]
name = "uom"
version = "0.26.0"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cec796ec5f7ac557631709079168286056205c51c60aac33f51764bdc7b8dc4"
dependencies = [
"num-traits 0.2.12",
"typenum",
]
2020-01-17 20:35:48 +00:00
2019-08-28 15:53:59 +00:00
[[package]]
name = "uom"
version = "0.28.0"
2019-08-28 15:53:59 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "627142a1043c2d460613232ce4f7e322e756636e000c0f1d1f2e779cb431358a"
2019-08-28 15:53:59 +00:00
dependencies = [
2019-12-14 13:27:14 +00:00
"num-rational",
"num-traits 0.2.12",
"typenum",
2019-08-28 15:53:59 +00:00
]
2019-07-29 07:46:24 +00:00
[[package]]
name = "url"
2020-01-17 20:35:48 +00:00
version = "2.1.1"
2019-07-29 07:46:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-01-17 20:35:48 +00:00
checksum = "829d4a8476c35c9bf0bbce5a3b23f4106f79728039b726d292bb93bc106787cb"
2019-07-29 07:46:24 +00:00
dependencies = [
"idna",
"matches",
"percent-encoding",
2019-07-29 07:46:24 +00:00
]
2020-01-17 20:35:48 +00:00
[[package]]
name = "urlencoding"
version = "1.1.1"
2020-01-17 20:35:48 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9232eb53352b4442e40d7900465dfc534e8cb2dc8f18656fcb2ac16112b5593"
2020-01-17 20:35:48 +00:00
[[package]]
name = "user32-sys"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ef4711d107b21b410a3a974b1204d9accc8b10dad75d8324b5d755de1617d47"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
[[package]]
name = "users"
2020-04-07 07:51:17 +00:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-07 07:51:17 +00:00
checksum = "aa4227e95324a443c9fcb06e03d4d85e91aabe9a5a02aa818688b6918b6af486"
dependencies = [
"libc",
2020-04-07 07:51:17 +00:00
"log",
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "utf8parse"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8772a4ccbb4e89959023bc5b7cb8623a795caa7092d99f3aa9501b9484d4557d"
2019-05-10 16:59:12 +00:00
2020-04-07 07:51:17 +00:00
[[package]]
name = "utf8parse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372"
2019-06-01 21:11:28 +00:00
[[package]]
name = "vcpkg"
version = "0.2.10"
2019-06-01 21:11:28 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6454029bf181f092ad1b853286f23e2c507d8e8194d01d92da4a55c274a5508c"
2019-06-01 21:11:28 +00:00
2019-05-18 01:24:13 +00:00
[[package]]
name = "vec_map"
version = "0.8.2"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2019-05-18 01:24:13 +00:00
[[package]]
name = "version-sync"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "382f6877399646e1b88f4b89813b4577147fa924464317378eb39c280d1e9e4c"
dependencies = [
"itertools",
"proc-macro2",
"pulldown-cmark",
"regex",
"semver-parser 0.9.0",
"syn",
"toml 0.5.6",
"url",
]
2019-05-11 04:45:57 +00:00
[[package]]
name = "version_check"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "914b1a6776c4c929a602fafd8bc742e06365d4bcbe48c30f9cca5824f70dc9dd"
2019-05-11 04:45:57 +00:00
2019-11-16 17:17:05 +00:00
[[package]]
name = "version_check"
version = "0.9.2"
2019-11-16 17:17:05 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2019-11-16 17:17:05 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
2019-05-10 16:59:12 +00:00
[[package]]
name = "vte"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f42f536e22f7fcbb407639765c8fd78707a33109301f834a594758bedd6e8cf"
dependencies = [
2020-04-07 07:51:17 +00:00
"utf8parse 0.1.1",
]
[[package]]
name = "waker-fn"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9571542c2ce85ce642e6b58b3364da2fb53526360dfb7c211add4f5c23105ff7"
2019-05-18 01:24:13 +00:00
[[package]]
name = "walkdir"
version = "2.3.1"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
2019-05-18 01:24:13 +00:00
dependencies = [
"same-file",
"winapi 0.3.8",
"winapi-util",
2019-05-18 01:24:13 +00:00
]
2019-10-13 04:53:58 +00:00
[[package]]
name = "wasi"
version = "0.9.0+wasi-snapshot-preview1"
2019-10-13 04:53:58 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2019-10-13 04:53:58 +00:00
2019-06-08 18:09:17 +00:00
[[package]]
2019-08-24 19:36:19 +00:00
name = "wasm-bindgen"
version = "0.2.63"
2019-06-08 18:09:17 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2dc4aa152834bc334f506c1a06b866416a8b6697d5c9f75b9a689c8486def0"
2019-06-08 18:09:17 +00:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
2019-06-08 18:09:17 +00:00
]
[[package]]
2019-08-24 19:36:19 +00:00
name = "wasm-bindgen-backend"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ded84f06e0ed21499f6184df0e0cb3494727b0c5da89534e0fcc55c51d812101"
dependencies = [
"bumpalo",
"lazy_static 1.4.0",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
2019-08-24 19:36:19 +00:00
name = "wasm-bindgen-futures"
version = "0.3.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83420b37346c311b9ed822af41ec2e82839bfe99867ec6c54e2da43b7538771c"
dependencies = [
"cfg-if",
"futures 0.1.29",
"futures-channel-preview",
"futures-util-preview",
"js-sys",
"lazy_static 1.4.0",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64487204d863f109eb77e8462189d111f27cb5712cc9fdb3461297a76963a2f6"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "838e423688dac18d73e31edce74ddfac468e37b1506ad163ffaf0a46f703ffe3"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3156052d8ec77142051a533cdd686cba889537b213f948cd1d20869926e68e92"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.63"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c9ba19973a58daf4db6f352eda73dc0e289493cd29fb2632eb172085b6521acd"
2019-08-24 19:36:19 +00:00
[[package]]
name = "web-sys"
version = "0.3.40"
2019-08-24 19:36:19 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b72fe77fd39e4bd3eaa4412fd299a0be6b3dfe9d2597e2f1c20beb968f41d17"
2019-08-24 19:36:19 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
2019-08-24 19:36:19 +00:00
]
[[package]]
name = "wepoll-binding"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "374fff4ff9701ff8b6ad0d14bacd3156c44063632d8c136186ff5967d48999a7"
dependencies = [
"bitflags",
"wepoll-sys",
]
[[package]]
name = "wepoll-sys"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9082a777aed991f6769e2b654aa0cb29f1c3d615daf009829b07b66c7aff6a24"
dependencies = [
"cc",
]
[[package]]
name = "which"
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5fe1a9cb33fe7cf77d431070d0223e544b1e4e7f7764bad0a3e691a6678a131"
dependencies = [
"libc",
"thiserror",
]
[[package]]
name = "widestring"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a763e303c0e0f23b0da40888724762e802a8ffefbc22de4127ef42493c2ea68c"
[[package]]
name = "wild"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "035793abb854745033f01a07647a79831eba29ec0be377205f2a25b0aa830020"
dependencies = [
"glob",
]
2019-05-22 07:12:03 +00:00
[[package]]
name = "winapi"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a"
2019-05-22 07:12:03 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "winapi"
2019-08-28 15:53:59 +00:00
version = "0.3.8"
2019-05-10 16:59:12 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
2019-05-10 16:59:12 +00:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-05-10 16:59:12 +00:00
]
2019-05-22 07:12:03 +00:00
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc"
2019-05-22 07:12:03 +00:00
2019-05-10 16:59:12 +00:00
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-05-10 16:59:12 +00:00
2019-05-18 01:24:13 +00:00
[[package]]
name = "winapi-util"
version = "0.1.5"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
2019-05-18 01:24:13 +00:00
dependencies = [
"winapi 0.3.8",
2019-05-18 01:24:13 +00:00
]
2019-05-10 16:59:12 +00:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2019-05-10 16:59:12 +00:00
[[package]]
name = "ws2_32-sys"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e"
dependencies = [
"winapi 0.2.8",
"winapi-build",
]
[[package]]
name = "x11"
version = "2.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ecd092546cb16f25783a5451538e73afc8d32e242648d54f4ae5459ba1e773"
dependencies = [
"libc",
"pkg-config",
]
2019-06-07 16:30:50 +00:00
[[package]]
name = "x11-clipboard"
2019-07-29 07:46:24 +00:00
version = "0.3.3"
2019-06-07 16:30:50 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89bd49c06c9eb5d98e6ba6536cf64ac9f7ee3a009b2f53996d405b3944f6bcea"
2019-06-07 16:30:50 +00:00
dependencies = [
"xcb",
2019-06-07 16:30:50 +00:00
]
[[package]]
name = "xcb"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e917a3f24142e9ff8be2414e36c649d47d6cc2ba81f16201cdef96e533e02de"
2019-06-07 16:30:50 +00:00
dependencies = [
"libc",
"log",
2019-06-07 16:30:50 +00:00
]
[[package]]
name = "xdg"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d089681aa106a86fade1b0128fb5daf07d5867a509ab036d99988dec80429a57"
2019-05-18 01:24:13 +00:00
[[package]]
name = "xml-rs"
version = "0.8.3"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b07db065a5cf61a7e4ba64f29e67db906fb1787316516c4e6e5ff0fea1efcd8a"
2019-05-18 01:24:13 +00:00
2019-06-11 06:26:03 +00:00
[[package]]
name = "xmlparser"
version = "0.13.2"
2019-06-11 06:26:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52613e655f6f11f63c0fe7d1c3b5ef69e44d96df9b65dab296b441ed0e1125f5"
2019-06-11 06:26:03 +00:00
2019-05-18 01:24:13 +00:00
[[package]]
name = "yaml-rust"
version = "0.4.4"
2019-05-18 01:24:13 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39f0c922f1a334134dc2f7a8b67dc5d25f0735263feec974345ff706bcf20b0d"
2019-05-18 01:24:13 +00:00
dependencies = [
"linked-hash-map 0.5.3",
2019-05-18 01:24:13 +00:00
]
[[package]]
name = "zip"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58287c28d78507f5f91f2a4cf1e8310e2c76fd4c6932f93ac60fd1ceb402db7d"
dependencies = [
"crc32fast",
"flate2",
"podio",
]