# This file was @generated by crate2nix 0.7.0-rc.2 with the command: # "generate" # See https://github.com/kolloch/crate2nix for more info. { pkgs ? import { config = {}; } , lib ? pkgs.lib , stdenv ? pkgs.stdenv , buildRustCrate ? pkgs.buildRustCrate # This is used as the `crateOverrides` argument for `buildRustCrate`. , defaultCrateOverrides ? pkgs.defaultCrateOverrides # The features to enable for the root_crate or the workspace_members. , rootFeatures ? [ "default" ] # If true, throw errors instead of issueing deprecation warnings. , strictDeprecation ? false }: rec { # # "public" attributes that we attempt to keep stable with new versions of crate2nix. # rootCrate = rec { packageId = "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)"; # Use this attribute to refer to the derivation building your root crate package. # You can override the features with rootCrate.build.override { features = [ "default" "feature1" ... ]; }. build = internal.buildRustCrateWithFeatures { inherit packageId; }; # Debug support which might change between releases. # File a bug if you depend on any for non-debug work! debug = internal.debugCrate { inherit packageId; }; }; root_crate = internal.deprecationWarning "root_crate is deprecated since crate2nix 0.4. Please use rootCrate instead." rootCrate.build; # Refer your crate build derivation by name here. # You can override the features with # workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }. workspaceMembers = { "hoc" = rec { packageId = "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)"; build = internal.buildRustCrateWithFeatures { packageId = "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)"; }; # Debug support which might change between releases. # File a bug if you depend on any for non-debug work! debug = internal.debugCrate { inherit packageId; }; }; }; workspace_members = internal.deprecationWarning "workspace_members is deprecated in crate2nix 0.4. Please use workspaceMembers instead." lib.mapAttrs (n: v: v.build) workspaceMembers; # # "internal" ("private") attributes that may change in every new version of crate2nix. # internal = rec { # Build and dependency information for crates. # Many of the fields are passed one-to-one to buildRustCrate. # # Noteworthy: # * `crateBin = [{name = ","; path = ",";}];`: a hack to disable building the binary. # * `dependencies`/`buildDependencies`: similar to the corresponding fields for buildRustCrate. # but with additional information which is used during dependency/feature resolution. # * `resolvedDependencies`: the selected default features reported by cargo - only included for debugging. # * `devDependencies` as of now not used by `buildRustCrate` but used to # inject test dependencies into the build crates = { "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-codec"; version = "0.2.0"; edition = "2018"; sha256 = "100k0n155fnnjqjz2s1gnwim2fp7s1mw942x0famg89cbh55zr89"; libName = "actix_codec"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "tokio-util"; packageId = "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "codec" ]; } ]; }; "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-connect"; version = "1.0.2"; edition = "2018"; sha256 = "0v77m394gzbrrzg12xkqgli11vwhig0zcxy3yhmq1s91j9bcjp69"; libName = "actix_connect"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-codec"; packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-utils"; packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "derive_more"; packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "either"; packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "trust-dns-proto"; packageId = "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "trust-dns-resolver"; packageId = "trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "uri" ]; "openssl" = [ "open-ssl" "tokio-openssl" ]; "rustls" = [ "rust-tls" "tokio-rustls" "webpki" ]; "uri" = [ "http" ]; }; resolvedDefaultFeatures = [ "default" "http" "uri" ]; }; "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-http"; version = "1.0.1"; edition = "2018"; sha256 = "06chrs9asbxmxzgiw5sw7ky97yrin9g88nmd6w407a6y9z668rn1"; libName = "actix_http"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-codec"; packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-connect"; packageId = "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-threadpool"; packageId = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-utils"; packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "base64"; packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "brotli2"; packageId = "brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "chrono"; packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "copyless"; packageId = "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "derive_more"; packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "either"; packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "encoding_rs"; packageId = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "failure"; packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "fail-ure"; optional = true; } { name = "flate2"; packageId = "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "futures-channel"; packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "fxhash"; packageId = "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "h2"; packageId = "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "httparse"; packageId = "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "indexmap"; packageId = "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "language-tags"; packageId = "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "mime"; packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "percent-encoding"; packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pin-project"; packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "rand"; packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "regex"; packageId = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde_urlencoded"; packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "sha1"; packageId = "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "time"; packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "actix-connect"; packageId = "actix-connect 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "openssl" ]; } ]; features = { "compress" = [ "flate2" "brotli2" ]; "failure" = [ "fail-ure" ]; "openssl" = [ "actix-tls/openssl" "actix-connect/openssl" ]; "rustls" = [ "actix-tls/rustls" "actix-connect/rustls" ]; "secure-cookies" = [ "ring" ]; }; resolvedDefaultFeatures = [ "brotli2" "compress" "default" "fail-ure" "failure" "flate2" ]; }; "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-macros"; version = "0.1.1"; edition = "2018"; sha256 = "1dhn4fvw79pfnq5sc12pbq0wc06di4xfg4288fcbrr5vfvf5lw11"; procMacro = true; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; } ]; }; "actix-router 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-router"; version = "0.2.4"; edition = "2018"; sha256 = "1j1y7l4k2dfj3h72p81waskajyxrl6mp6lbwm3kwis4l9p510ylx"; libName = "actix_router"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "bytestring"; packageId = "bytestring 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "regex"; packageId = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "http" ]; }; resolvedDefaultFeatures = [ "default" "http" ]; }; "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-rt"; version = "1.0.0"; edition = "2018"; sha256 = "0vgvnljgc4i40xwy5zxgiiyfcraam0k0sbvb94d48ikha1ahlsiz"; libName = "actix_rt"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-macros"; packageId = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-threadpool"; packageId = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "copyless"; packageId = "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "rt-core" "rt-util" "io-driver" "tcp" "uds" "udp" "time" "signal" "stream" ]; } ]; }; "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-server"; version = "1.0.1"; edition = "2018"; sha256 = "06l4y449sc74rd62a9snf4gqcjw8bjrjx0kvkpja6g60m9g4blsi"; libName = "actix_server"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-codec"; packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-utils"; packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "mio"; packageId = "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "mio-uds"; packageId = "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "num_cpus"; packageId = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-service"; version = "1.0.5"; edition = "2018"; sha256 = "0r3m51fackpwj73awg2fkr4yic4abyw4dfyhn9ql3qm7vyazrr6k"; libName = "actix_service"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pin-project"; packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "actix-testing 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-testing"; version = "1.0.0"; edition = "2018"; sha256 = "04f969nz596y9v0f07h8sw1yx8r2nvwslx7q1kzsh3idnx2lfja8"; libName = "actix_testing"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-macros"; packageId = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-server"; packageId = "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-threadpool"; version = "0.3.1"; edition = "2018"; sha256 = "0kp8qqihll3s6r7v4zxgqhdnmjl19pw9yw0k60q5zph14qcq4h6g"; libName = "actix_threadpool"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "derive_more"; packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-channel"; packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "num_cpus"; packageId = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "parking_lot"; packageId = "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "threadpool"; packageId = "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "actix-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-tls"; version = "1.0.0"; edition = "2018"; sha256 = "1a4m96jz6vzmknpk5m803c337c6dillnqq4w71nrlphhmzxb9rd4"; libName = "actix_tls"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-codec"; packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-utils"; packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "derive_more"; packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "either"; packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "nativetls" = [ "native-tls" "tokio-tls" ]; "openssl" = [ "open-ssl" "tokio-openssl" ]; "rustls" = [ "rust-tls" "webpki" "webpki-roots" "tokio-rustls" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-utils"; version = "1.0.6"; edition = "2018"; sha256 = "0kkz2hfz8r2k1gxcjk2qq1h1qxlb487g023q4v1dw6ph3dizby7w"; libName = "actix_utils"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-codec"; packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "either"; packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pin-project"; packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-web"; version = "2.0.0"; edition = "2018"; sha256 = "0dgnn7xiw2yhvrx7l7b57gwra7yfqawka5xz1lpq4h0h8qifhn1i"; libName = "actix_web"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-codec"; packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-http"; packageId = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-macros"; packageId = "actix-macros 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-router"; packageId = "actix-router 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-server"; packageId = "actix-server 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-testing"; packageId = "actix-testing 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-threadpool"; packageId = "actix-threadpool 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-tls"; packageId = "actix-tls 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-utils"; packageId = "actix-utils 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-web-codegen"; packageId = "actix-web-codegen 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "awc"; packageId = "awc 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "derive_more"; packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "encoding_rs"; packageId = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "fxhash"; packageId = "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "mime"; packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pin-project"; packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "regex"; packageId = "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "derive" ]; } { name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde_urlencoded"; packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "time"; packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "url"; packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "compress" = [ "actix-http/compress" "awc/compress" ]; "default" = [ "compress" "failure" ]; "failure" = [ "actix-http/failure" ]; "openssl" = [ "actix-tls/openssl" "awc/openssl" "open-ssl" ]; "rustls" = [ "actix-tls/rustls" "awc/rustls" "rust-tls" ]; "secure-cookies" = [ "actix-http/secure-cookies" ]; }; resolvedDefaultFeatures = [ "compress" "default" "failure" ]; }; "actix-web-codegen 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "actix-web-codegen"; version = "0.2.0"; edition = "2018"; sha256 = "1mdxlzag8i217qfj3z5s0fbi3l4z68w66fkiliq3fqk21srph26y"; procMacro = true; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" "parsing" ]; } ]; }; "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "adler32"; version = "1.0.4"; edition = "2015"; sha256 = "1hnan4fgmnidgn2k84hh2i67c3wp2c5iwd5hs61yi7gwwx1p6bjx"; authors = [ "Remi Rampin " ]; }; "aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "aho-corasick"; version = "0.7.8"; edition = "2015"; sha256 = "048q5vr1qac4lf90z80lw8kcya6qmlxw857xhwxsssk832jdafkl"; libName = "aho_corasick"; authors = [ "Andrew Gallant " ]; dependencies = [ { name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; "std" = [ "memchr/use_std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ansi_term"; version = "0.11.0"; edition = "2015"; sha256 = "16wpvrghvd0353584i1idnsgm0r3vchg8fyrm0x8ayv1rgvbljgf"; authors = [ "ogham@bsago.me" "Ryan Scheel (Havvy) " "Josh Triplett " ]; dependencies = [ { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "windows"); features = [ "errhandlingapi" "consoleapi" "processenv" ]; } ]; }; "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "antidote"; version = "1.0.0"; edition = "2015"; sha256 = "19g2sw2qa2ibnh4x7j1snk46593jgx6y7rnvva496ynq61af5z9l"; authors = [ "Steven Fackler " ]; }; "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "anyhow"; version = "1.0.26"; edition = "2018"; sha256 = "0g6mzcxyj88k8bv8rr3zx4yczgimqvvgr12n14a29sqj6s1zc9bq"; authors = [ "David Tolnay " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "arc-swap"; version = "0.4.4"; edition = "2015"; sha256 = "1zwswfi9n7n3hiq51w1xv34572k2diazx680rrxlc9w07c9akf6p"; authors = [ "Michal 'vorner' Vaner " ]; features = { }; }; "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "arrayvec"; version = "0.4.12"; edition = "2015"; sha256 = "1fdiv5m627gh6flp4mpmi1mh647imm9x423licsr11psz97d97yd"; authors = [ "bluss" ]; dependencies = [ { name = "nodrop"; packageId = "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; "serde-1" = [ "serde" ]; }; resolvedDefaultFeatures = [ "array-sizes-33-128" "default" "std" ]; }; "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "async-trait"; version = "0.1.24"; edition = "2018"; sha256 = "1qd6h0bkcwn95k4gj9dk76xz2zyw9j7w008gv84d3bfzl4w1q2vm"; procMacro = true; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" "visit-mut" ]; } ]; features = { }; }; "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "atty"; version = "0.2.14"; edition = "2015"; sha256 = "1s7yslcs6a28c5vz7jwj63lkfgyx8mx99fdirlhi9lbhhzhrpcyr"; authors = [ "softprops " ]; dependencies = [ { name = "hermit-abi"; packageId = "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "hermit"); } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = { target, features }: target."unix"; } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "consoleapi" "processenv" "minwinbase" "minwindef" "winbase" ]; } ]; }; "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "autocfg"; version = "1.0.0"; edition = "2015"; sha256 = "17cv6pwb4q08s0ynpr4n8hv5299hcmhdgvdchzixfpw8y5qcgapq"; authors = [ "Josh Stone " ]; }; "awc 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "awc"; version = "1.0.1"; edition = "2018"; sha256 = "1idacmq7n3irmdjkbxc5kdwspxk9w1gip94pcmfk7wky3m6isq6p"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "actix-codec"; packageId = "actix-codec 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-http"; packageId = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-service"; packageId = "actix-service 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "base64"; packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "derive_more"; packageId = "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "mime"; packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "percent-encoding"; packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "rand"; packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde_urlencoded"; packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "actix-http"; packageId = "actix-http 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "openssl" ]; } ]; features = { "compress" = [ "actix-http/compress" ]; "default" = [ "compress" ]; "openssl" = [ "open-ssl" "actix-http/openssl" ]; "rustls" = [ "rust-tls" "actix-http/rustls" ]; }; resolvedDefaultFeatures = [ "compress" ]; }; "backtrace 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "backtrace"; version = "0.3.44"; edition = "2018"; sha256 = "0djmbf6caj7qm2p7jw6wzjxc83sji9gdd8vjp9mg2g0gyjdnn0z4"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "backtrace-sys"; packageId = "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "rustc-demangle"; packageId = "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" "libunwind" "libbacktrace" "dladdr" "dbghelp" ]; "gimli-symbolize" = [ "addr2line" "findshlibs" "memmap" "goblin" ]; "libbacktrace" = [ "backtrace-sys" ]; "rustc-dep-of-std" = [ "backtrace-sys/rustc-dep-of-std" "cfg-if/rustc-dep-of-std" "core" "compiler_builtins" "libc/rustc-dep-of-std" "rustc-demangle/rustc-dep-of-std" ]; "serialize-rustc" = [ "rustc-serialize" ]; "serialize-serde" = [ "serde" ]; "verify-winapi" = [ "winapi/dbghelp" "winapi/handleapi" "winapi/libloaderapi" "winapi/minwindef" "winapi/processthreadsapi" "winapi/synchapi" "winapi/winbase" "winapi/winnt" ]; }; resolvedDefaultFeatures = [ "backtrace-sys" "dbghelp" "default" "dladdr" "libbacktrace" "libunwind" "std" ]; }; "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "backtrace-sys"; version = "0.1.32"; edition = "2015"; sha256 = "14c406z8bdmms8a5l8cv79jfkz1mk10qk5p97izf4vai53qparax"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "cc"; packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "badge"; version = "0.2.0"; edition = "2015"; sha256 = "014np5njm4alz5xsavj2wky8hpx500rs6zq2d87vjdklcbza5f46"; libPath = "badge.rs"; authors = [ "Onur Aslan " ]; dependencies = [ { name = "base64"; packageId = "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "rusttype"; packageId = "rusttype 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "base64"; version = "0.11.0"; edition = "2018"; sha256 = "1iqmims6yvr6vwzyy54qd672zw29ipjj17p8klcr578c9ajpw6xl"; authors = [ "Alice Maz " "Marshall Pierce " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "base64"; version = "0.9.3"; edition = "2015"; sha256 = "0hs62r35bgxslawyrn1vp9rmvrkkm76fqv0vqcwd048vs876r7a8"; authors = [ "Alice Maz " "Marshall Pierce " ]; dependencies = [ { name = "byteorder"; packageId = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "safemem"; packageId = "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bitflags"; version = "1.2.1"; edition = "2015"; sha256 = "14qnd5nq8p2almk79m4m8ydqhd413yaxsyjp5xd19g3mikzf47fg"; authors = [ "The Rust Project Developers" ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "brotli-sys"; version = "0.3.2"; edition = "2015"; sha256 = "1kdfdbcba6zwa13xpjwgiplblkdf6vigxjbwwp6l2ascbylxwia4"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "brotli2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "brotli2"; version = "0.3.2"; edition = "2015"; sha256 = "13jnhpmfkqy2xar4lxrsk3rx3i12bgnarnsxq4arhc6yxb1kdc0c"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "brotli-sys"; packageId = "brotli-sys 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bumpalo"; version = "3.2.0"; edition = "2018"; sha256 = "0hpp4wfcn04gnl1ji4a80b85xwknsci81xqyllq174gq9z0rsd8z"; authors = [ "Nick Fitzgerald " ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bytecount"; version = "0.6.0"; edition = "2018"; sha256 = "0vplsx73zncb7mz8x0fs3k0p0rz5bmavj09vjk5nqn4z6fa7h0dh"; authors = [ "Andre Bogus " "Joshua Landau " ]; features = { "generic-simd" = [ "packed_simd" ]; }; }; "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "byteorder"; version = "1.3.4"; edition = "2015"; sha256 = "1pkjfhgjnq898g1d38ygcfi0msg3m6756cwv0sgysj1d26p8mi08"; authors = [ "Andrew Gallant " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bytes"; version = "0.5.4"; edition = "2018"; sha256 = "1q9r7si1l8vndg4n2ny2nv833ghp5vyqzk5indb9rmhd5ibaq2hk"; authors = [ "Carl Lerche " "Sean McArthur " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "bytestring 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "bytestring"; version = "0.1.4"; edition = "2018"; sha256 = "1m7advs49l66s7nj72ic6scx1c1y8ah64k06fj4crxlfymkp89pw"; authors = [ "Nikolay Kim " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "c2-chacha"; version = "0.2.3"; edition = "2018"; sha256 = "1fzn2n9k51b8wp4m41pkdzwlk1dbkjb6ha9rqdp4jfmzl753hhi1"; authors = [ "The CryptoCorrosion Contributors" ]; dependencies = [ { name = "ppv-lite86"; packageId = "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "ppv-lite86"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" "simd" "rustcrypto_api" ]; "rustcrypto_api" = [ "stream-cipher" "byteorder" ]; "simd" = [ "ppv-lite86/simd" ]; "std" = [ "ppv-lite86/std" ]; }; resolvedDefaultFeatures = [ "simd" "std" ]; }; "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "cc"; version = "1.0.50"; edition = "2018"; # Hack to suppress building binaries crateBin = [ { name = ","; path = ","; } ]; sha256 = "1kdqm8ka7xg9h56b694pcz29ka33fsz27mzrphqc78gx96h8zqlm"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "jobserver"; packageId = "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "parallel" = [ "jobserver" ]; }; resolvedDefaultFeatures = [ "jobserver" "parallel" ]; }; "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "cfg-if"; version = "0.1.10"; edition = "2018"; sha256 = "08h80ihs74jcyp24cd75wwabygbbdgl05k6p5dmq8akbr78vv1a7"; authors = [ "Alex Crichton " ]; features = { "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "chrono"; version = "0.4.10"; edition = "2015"; sha256 = "00dw7k11hmkm7yhc1v9pi0lrk0n28k4r3rh9g9pk3bkb9m50p19i"; authors = [ "Kang Seonghoon " "Brandon W Maister " ]; dependencies = [ { name = "num-integer"; packageId = "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "num-traits"; packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "time"; packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "bench" = [ "std" ]; "clock" = [ "time" "std" ]; "default" = [ "clock" "std" ]; "wasmbind" = [ "wasm-bindgen" "js-sys" ]; }; resolvedDefaultFeatures = [ "clock" "default" "std" "time" ]; }; "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "clap"; version = "2.33.0"; edition = "2015"; sha256 = "1nf6ld3bims1n5vfzhkvcb55pdzh04bbhzf8nil5vvw05nxzarsh"; authors = [ "Kevin K. " ]; dependencies = [ { name = "ansi_term"; packageId = "ansi_term 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: (!target."windows"); } { name = "atty"; packageId = "atty 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "strsim"; packageId = "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "textwrap"; packageId = "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "unicode-width"; packageId = "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "vec_map"; packageId = "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "color" = [ "ansi_term" "atty" ]; "default" = [ "suggestions" "color" "vec_map" ]; "doc" = [ "yaml" ]; "lints" = [ "clippy" ]; "suggestions" = [ "strsim" ]; "wrap_help" = [ "term_size" "textwrap/term_size" ]; "yaml" = [ "yaml-rust" ]; }; resolvedDefaultFeatures = [ "ansi_term" "atty" "color" "default" "strsim" "suggestions" "vec_map" ]; }; "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "cloudabi"; version = "0.0.3"; edition = "2015"; sha256 = "0kxcg83jlihy0phnd2g8c2c303px3l2p3pkjz357ll6llnd5pz6x"; libPath = "cloudabi.rs"; authors = [ "Nuxi (https://nuxi.nl/) and contributors" ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "default" = [ "bitflags" ]; }; resolvedDefaultFeatures = [ "bitflags" "default" ]; }; "copyless 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "copyless"; version = "0.1.4"; edition = "2018"; sha256 = "09s1fagd14fqch3xq9ijschay014la2i8hqfxw2rr95jkxncbybg"; authors = [ "Dzmitry Malyshau " ]; }; "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "core-foundation"; version = "0.6.4"; edition = "2015"; sha256 = "0va97wf49c8dzm9c8pgyk1jn7z21rl0bj1syf2zz5m2z2hzy1f95"; authors = [ "The Servo Project Developers" ]; dependencies = [ { name = "core-foundation-sys"; packageId = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "mac_os_10_7_support" = [ "core-foundation-sys/mac_os_10_7_support" ]; "mac_os_10_8_features" = [ "core-foundation-sys/mac_os_10_8_features" ]; "with-chrono" = [ "chrono" ]; "with-uuid" = [ "uuid" ]; }; }; "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "core-foundation-sys"; version = "0.6.2"; edition = "2015"; sha256 = "0fzsw1j9g1x598yhwklg59l15hwzc0pyvs01w9fg2kin4598mjp7"; authors = [ "The Servo Project Developers" ]; features = { }; }; "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "crc32fast"; version = "1.2.0"; edition = "2015"; sha256 = "1c9dhkvf3brrzzplcijaywxi2w8wv5578i0ryhcm7x8dmzi5s4ms"; authors = [ "Sam Rijs " "Alex Crichton " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "derive_more 0.99.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "derive_more"; version = "0.99.2"; edition = "2018"; sha256 = "1s6a87q7izsj3i786gify9swf05h9c1ygg0mhgk6v5kr542bwn91"; procMacro = true; authors = [ "Jelte Fennema " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "extra-traits" ]; } ]; features = { "default" = [ "add_assign" "add" "as_mut" "as_ref" "constructor" "deref" "deref_mut" "display" "from" "from_str" "index" "index_mut" "into" "into_iterator" "iterator" "mul_assign" "mul" "not" "sum" "try_into" ]; "generate-parsing-rs" = [ "peg" ]; }; resolvedDefaultFeatures = [ "add" "add_assign" "as_mut" "as_ref" "constructor" "default" "deref" "deref_mut" "display" "from" "from_str" "index" "index_mut" "into" "into_iterator" "iterator" "mul" "mul_assign" "not" "sum" "try_into" ]; }; "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "dtoa"; version = "0.4.5"; edition = "2015"; sha256 = "18qycvcp0vaqzw0j784ansbxgs39l54ini9v719cy2cs3ghsjn23"; authors = [ "David Tolnay " ]; }; "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "either"; version = "1.5.3"; edition = "2015"; sha256 = "1qyz1b1acad6w0k5928jw5zaq900zhsk7p8dlcp4hh61w4f6n7xv"; authors = [ "bluss" ]; features = { "default" = [ "use_std" ]; }; resolvedDefaultFeatures = [ "default" "use_std" ]; }; "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "encoding_rs"; version = "0.8.22"; edition = "2015"; sha256 = "0a5wckbnpjjgxvvycahy5vw31br7x2xxgylxc0qi837ylzx073fd"; authors = [ "Henri Sivonen " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "fast-legacy-encode" = [ "fast-hangul-encode" "fast-hanja-encode" "fast-kanji-encode" "fast-gb-hanzi-encode" "fast-big5-hanzi-encode" ]; "simd-accel" = [ "packed_simd" "packed_simd/into_bits" ]; }; }; "enum-as-inner 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "enum-as-inner"; version = "0.3.0"; edition = "2018"; sha256 = "0bj914fh5b57j1ij66m021l9pdhvp1bnpwpahhl4qgsjprznq2lh"; procMacro = true; authors = [ "Benjamin Fry " ]; dependencies = [ { name = "heck"; packageId = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "failure"; version = "0.1.6"; edition = "2015"; sha256 = "1nay5c2cgi40kp84rbiir1dgwlh9aap9jazbnxfmqrkpr49ky9zq"; authors = [ "Without Boats " ]; dependencies = [ { name = "backtrace"; packageId = "backtrace 0.3.44 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "failure_derive"; packageId = "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "default" = [ "std" "derive" ]; "derive" = [ "failure_derive" ]; "std" = [ "backtrace" ]; }; resolvedDefaultFeatures = [ "backtrace" "default" "derive" "failure_derive" "std" ]; }; "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "failure_derive"; version = "0.1.6"; edition = "2015"; sha256 = "022xfb9wcs1bdssfm2airsrfxpn2ccpbyh1ld2wf9483isvjbhhb"; procMacro = true; authors = [ "Without Boats " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "synstructure"; packageId = "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { }; }; "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "flate2"; version = "1.0.13"; edition = "2018"; sha256 = "03rwyh691j20ih2vcskwp1sinhf9paggrkv32fvzwli9fpsddmkb"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "crc32fast"; packageId = "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "miniz_oxide"; packageId = "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "miniz_oxide"; packageId = "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: ((target."arch" == "wasm32") && (!(target."os" == "emscripten"))); } ]; features = { "default" = [ "rust_backend" ]; "rust_backend" = [ "miniz_oxide" ]; "tokio" = [ "tokio-io" "futures" ]; "zlib" = [ "libz-sys" ]; }; resolvedDefaultFeatures = [ "default" "miniz_oxide" "rust_backend" ]; }; "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fnv"; version = "1.0.6"; edition = "2015"; sha256 = "1ww56bi1r5b8id3ns9j3qxbi7w5h005rzhiryy0zi9h97raqbb9g"; libPath = "lib.rs"; authors = [ "Alex Crichton " ]; }; "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "foreign-types"; version = "0.3.2"; edition = "2015"; sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "foreign-types-shared"; packageId = "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "foreign-types-shared 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "foreign-types-shared"; version = "0.1.1"; edition = "2015"; sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00"; authors = [ "Steven Fackler " ]; }; "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fuchsia-zircon"; version = "0.3.3"; edition = "2015"; sha256 = "10jxc5ks1x06gpd0xg51kcjrxr35nj6qhx2zlc5n7bmskv3675rf"; authors = [ "Raph Levien " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "fuchsia-zircon-sys"; packageId = "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fuchsia-zircon-sys"; version = "0.3.3"; edition = "2015"; sha256 = "19zp2085qsyq2bh1gvcxq1lb8w6v6jj9kbdkhpdjrl95fypakjix"; authors = [ "Raph Levien " ]; }; "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures"; version = "0.3.4"; edition = "2018"; sha256 = "105p5bwjf2dsclvi95g784n6b51az8ibdhjgmr2gn0imfpl9lcjw"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "futures-channel"; packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "sink" ]; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-executor"; packageId = "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; } { name = "futures-io"; packageId = "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-task"; packageId = "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "sink" ]; } ]; features = { "alloc" = [ "futures-core/alloc" "futures-task/alloc" "futures-sink/alloc" "futures-channel/alloc" "futures-util/alloc" ]; "async-await" = [ "futures-util/async-await" "futures-util/async-await-macro" ]; "bilock" = [ "futures-util/bilock" ]; "cfg-target-has-atomic" = [ "futures-core/cfg-target-has-atomic" "futures-task/cfg-target-has-atomic" "futures-channel/cfg-target-has-atomic" "futures-util/cfg-target-has-atomic" ]; "compat" = [ "std" "futures-util/compat" ]; "default" = [ "std" "async-await" "executor" ]; "executor" = [ "std" "futures-executor/std" ]; "io-compat" = [ "compat" "futures-util/io-compat" ]; "read-initializer" = [ "futures-io/read-initializer" "futures-util/read-initializer" ]; "std" = [ "alloc" "futures-core/std" "futures-task/std" "futures-io/std" "futures-sink/std" "futures-util/std" "futures-util/io" "futures-util/channel" ]; "thread-pool" = [ "executor" "futures-executor/thread-pool" ]; "unstable" = [ "futures-core/unstable" "futures-task/unstable" "futures-channel/unstable" "futures-io/unstable" "futures-util/unstable" ]; }; resolvedDefaultFeatures = [ "alloc" "async-await" "default" "executor" "futures-executor" "std" ]; }; "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-channel"; version = "0.3.4"; edition = "2018"; sha256 = "1a7iq7m4ggq2njrm7h1x2v2gxzxkd2160awk0fwrrpcfrq27vizh"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; } ]; features = { "alloc" = [ "futures-core/alloc" ]; "cfg-target-has-atomic" = [ "futures-core/cfg-target-has-atomic" ]; "default" = [ "std" ]; "sink" = [ "futures-sink" ]; "std" = [ "alloc" "futures-core/std" ]; "unstable" = [ "futures-core/unstable" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "futures-sink" "sink" "std" ]; }; "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-core"; version = "0.3.4"; edition = "2018"; sha256 = "0jj6mjvjbvv36r6w86lmjkh62mwndz901nsq4fwqjpl2d7vr4mgj"; authors = [ "Alex Crichton " ]; features = { "default" = [ "std" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "futures-executor 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-executor"; version = "0.3.4"; edition = "2018"; sha256 = "1fj1jw8g7l5v1sf7lh0w0smq596vmxaxzklh98l3fnxipkhz6x7n"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-task"; packageId = "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; "std" = [ "futures-core/std" "futures-task/std" "futures-util/std" ]; "thread-pool" = [ "std" "num_cpus" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-io"; version = "0.3.4"; edition = "2018"; sha256 = "1ihd1429kyfncxpc4mvina1hbppywfqzql6zrnjcflk1m6d9af56"; authors = [ "Alex Crichton " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-macro"; version = "0.3.4"; edition = "2018"; sha256 = "19r3akc8y0br6jbx0lh1cfq07n8f23g7qfaag4m59xz17nm82l4s"; procMacro = true; authors = [ "Taylor Cramer " "Taiki Endo " ]; dependencies = [ { name = "proc-macro-hack"; packageId = "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; } ]; }; "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-sink"; version = "0.3.4"; edition = "2018"; sha256 = "19n88jlh8cwam4gqzj4vj9g130vg9ir0m1bv11dxj5619cdq4ril"; authors = [ "Alex Crichton " ]; features = { "default" = [ "std" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-task"; version = "0.3.4"; edition = "2018"; sha256 = "09ss6zg7w36s3y2715bnvfrnwr3b8vnklmxag00wvkgn7kjk82kv"; authors = [ "Alex Crichton " ]; features = { "default" = [ "std" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "std" ]; }; "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "futures-util"; version = "0.3.4"; edition = "2018"; sha256 = "1i84h30q2q93y4l4bk2g22mp96aws02a0k9qy3nnnc34bpr6qxi2"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "futures-channel"; packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; features = [ "std" ]; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-io"; packageId = "futures-io 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; features = [ "std" ]; } { name = "futures-macro"; packageId = "futures-macro 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; } { name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; } { name = "futures-task"; packageId = "futures-task 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "pin-utils"; packageId = "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro-hack"; packageId = "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "proc-macro-nested"; packageId = "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "alloc" = [ "futures-core/alloc" "futures-task/alloc" ]; "async-await-macro" = [ "async-await" "futures-macro" "proc-macro-hack" "proc-macro-nested" ]; "cfg-target-has-atomic" = [ "futures-core/cfg-target-has-atomic" "futures-task/cfg-target-has-atomic" ]; "channel" = [ "std" "futures-channel" ]; "compat" = [ "std" "futures_01" ]; "default" = [ "std" "async-await" "async-await-macro" ]; "io" = [ "std" "futures-io" "memchr" ]; "io-compat" = [ "io" "compat" "tokio-io" ]; "read-initializer" = [ "io" "futures-io/read-initializer" "futures-io/unstable" ]; "sink" = [ "futures-sink" ]; "std" = [ "alloc" "futures-core/std" "futures-task/std" "slab" ]; "unstable" = [ "futures-core/unstable" "futures-task/unstable" ]; }; resolvedDefaultFeatures = [ "alloc" "async-await" "async-await-macro" "channel" "default" "futures-channel" "futures-io" "futures-macro" "futures-sink" "io" "memchr" "proc-macro-hack" "proc-macro-nested" "sink" "slab" "std" ]; }; "fxhash 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "fxhash"; version = "0.2.1"; edition = "2015"; sha256 = "037mb9ichariqi45xm6mz0b11pa92gj38ba0409z3iz239sns6y3"; libPath = "lib.rs"; authors = [ "cbreeden " ]; dependencies = [ { name = "byteorder"; packageId = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "getrandom"; version = "0.1.14"; edition = "2018"; sha256 = "1sq30li71h19rhnhs1h6576ja68insajx8wvh1nn088r8pc8vg3s"; authors = [ "The Rand Project Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = { target, features }: target."unix"; } { name = "wasi"; packageId = "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "wasi"); } ]; features = { "rustc-dep-of-std" = [ "compiler_builtins" "core" ]; "test-in-browser" = [ "wasm-bindgen" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "git2 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "git2"; version = "0.11.0"; edition = "2018"; sha256 = "1i0fgsr91r97hsjbgqnymkcyiyg0057m7m04116k3vmyqpvrwlbp"; authors = [ "Josh Triplett " "Alex Crichton " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libgit2-sys"; packageId = "libgit2-sys 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "openssl-probe"; packageId = "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: (target."unix" && (!(target."os" == "macos"))); } { name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: (target."unix" && (!(target."os" == "macos"))); } { name = "url"; packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "ssh" "https" "ssh_key_from_memory" ]; "https" = [ "libgit2-sys/https" "openssl-sys" "openssl-probe" ]; "ssh" = [ "libgit2-sys/ssh" ]; "ssh_key_from_memory" = [ "libgit2-sys/ssh_key_from_memory" ]; "vendored-openssl" = [ "openssl-sys/vendored" ]; }; resolvedDefaultFeatures = [ "default" "https" "openssl-probe" "openssl-sys" "ssh" "ssh_key_from_memory" ]; }; "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "h2"; version = "0.2.1"; edition = "2018"; sha256 = "1lc87gmqzk83inanqrigk6idfj5iq0gnf6x6smpp7hbiwiqkshxr"; authors = [ "Carl Lerche " "Sean McArthur " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "fnv"; packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "indexmap"; packageId = "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "io-util" "sync" ]; } { name = "tokio-util"; packageId = "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "codec" ]; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "dns" "macros" "rt-core" "tcp" ]; } ]; features = { }; }; "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "heck"; version = "0.3.1"; edition = "2015"; sha256 = "01a2v7yvkiqxakdqz4hw3w3g4sm52ivz9cs3qcsv2arxsmw4wmi0"; authors = [ "Without Boats " ]; dependencies = [ { name = "unicode-segmentation"; packageId = "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hermit-abi"; version = "0.1.6"; edition = "2015"; sha256 = "0wippj5nkw9q5yyyaqpdrgdhag3l3nbrwja7149cwn7ii1nnbwpg"; authors = [ "Stefan Lankes" ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "rustc-dep-of-std" = [ "core" "compiler_builtins/rustc-dep-of-std" "libc/rustc-dep-of-std" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "hoc 0.11.5 (path+file:///home/me/Codes/rust/hoc)" = rec { crateName = "hoc"; version = "0.11.5"; edition = "2018"; crateBin = [ { name = "hoc"; path = "src/main.rs"; } ]; src = (builtins.filterSource sourceFilter ./.); authors = [ "Valentin Brandl " ]; dependencies = [ { name = "actix-rt"; packageId = "actix-rt 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "actix-web"; packageId = "actix-web 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "badge"; packageId = "badge 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "git2"; packageId = "git2 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log4rs"; packageId = "log4rs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "number_prefix"; packageId = "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "openssl-probe"; packageId = "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "reqwest"; packageId = "reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde_derive"; packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "structopt"; packageId = "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "ructe"; packageId = "ructe 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "vergen"; packageId = "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hostname"; version = "0.1.5"; edition = "2015"; sha256 = "0kprf862qaa7lwdms6aw7f3275h0j2rwhs9nz5784pm8hdmb9ki1"; authors = [ "fengcen " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."unix" || (target."os" == "redox")); } { name = "winutil"; packageId = "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } ]; features = { }; }; "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "http"; version = "0.2.0"; edition = "2018"; sha256 = "0sqm60mi6ha9x9cfx393qqg5s6hjg8dadfakdw15jd290rzwq25p"; authors = [ "Alex Crichton " "Carl Lerche " "Sean McArthur " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "fnv"; packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "itoa"; packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "http-body"; version = "0.3.1"; edition = "2018"; sha256 = "06qi0ni45lb92w3ml260c0bxbq5zd4snjmz0a9k69xq6021zzm8k"; authors = [ "Carl Lerche " "Lucio Franco " "Sean McArthur " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "httparse"; version = "1.3.4"; edition = "2015"; sha256 = "1yf23ldnjwfkkhkca7f4w15mky9961gjz28dlwyybhphc7l9l5yd"; authors = [ "Sean McArthur " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "humantime"; version = "1.3.0"; edition = "2015"; sha256 = "0krwgbf35pd46xvkqg14j070vircsndabahahlv3rwhflpy4q06z"; authors = [ "Paul Colomiets " ]; dependencies = [ { name = "quick-error"; packageId = "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hyper"; version = "0.13.2"; edition = "2018"; sha256 = "0gl973c5qw3wkckicsa1ylhb1fzrvvjf8cdslwmffjv3pixm477s"; authors = [ "Sean McArthur " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-channel"; packageId = "futures-channel 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "h2"; packageId = "h2 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "http-body"; packageId = "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "httparse"; packageId = "httparse 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "itoa"; packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "pin-project"; packageId = "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "time"; packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "sync" ]; } { name = "tower-service"; packageId = "tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "want"; packageId = "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "alloc" ]; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "fs" "macros" "io-std" "rt-util" "sync" "time" "test-util" ]; } ]; features = { "default" = [ "runtime" "stream" ]; "runtime" = [ "tcp" "tokio/rt-core" ]; "tcp" = [ "net2" "tokio/blocking" "tokio/tcp" "tokio/time" ]; }; resolvedDefaultFeatures = [ "net2" "tcp" ]; }; "hyper-tls 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "hyper-tls"; version = "0.4.1"; edition = "2018"; sha256 = "1amg79v9dmcc7r4s471544w8pr57fxmw7s9l0xim759b804d7p1s"; authors = [ "Sean McArthur " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "hyper"; packageId = "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "tcp" ]; } { name = "native-tls"; packageId = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio-tls"; packageId = "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "io-std" "macros" ]; } ]; features = { "vendored" = [ "native-tls/vendored" ]; }; }; "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "idna"; version = "0.2.0"; edition = "2015"; sha256 = "1a9066imqpdrm1aavfasdyb1zahqaz8jmdcwdawvb1pf60y6gqh2"; authors = [ "The rust-url developers" ]; dependencies = [ { name = "matches"; packageId = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "unicode-bidi"; packageId = "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "unicode-normalization"; packageId = "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "indexmap 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "indexmap"; version = "1.3.2"; edition = "2015"; sha256 = "14i2gmq9pwaafvlxmsc12j6539hjgqk4j4jz40fz763vbcn08vq7"; authors = [ "bluss" "Josh Stone " ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "serde-1" = [ "serde" ]; }; }; "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "iovec"; version = "0.1.4"; edition = "2015"; sha256 = "0ph73qygwx8i0mblrf110cj59l00gkmsgrpzz1rm85syz5pymcxj"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } ]; }; "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ipconfig"; version = "0.2.1"; edition = "2018"; sha256 = "0gyqiqr4nk2dw9ild1aq3hnv6984sgydfdq7ki586q5ydwhzlyda"; authors = [ "Liran Ringel " ]; dependencies = [ { name = "socket2"; packageId = "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } { name = "widestring"; packageId = "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } { name = "winreg"; packageId = "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } ]; }; "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "itertools"; version = "0.8.2"; edition = "2015"; sha256 = "1154j48aw913v5jnyhpxialxhdn2sfpl4d7bwididyb1r05jsspm"; authors = [ "bluss" ]; dependencies = [ { name = "either"; packageId = "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "default" = [ "use_std" ]; }; resolvedDefaultFeatures = [ "default" "use_std" ]; }; "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "itoa"; version = "0.4.5"; edition = "2015"; sha256 = "13nxqrfnh83a7x5rw4wq2ilp8nxvwy74dxzysdg59dbxqk0agdxq"; authors = [ "David Tolnay " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "jobserver 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "jobserver"; version = "0.1.21"; edition = "2018"; sha256 = "1wm7h76xf7a4d0q6583agbsyl2s46vndrlnr015zffclpcz32waw"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } ]; }; "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "js-sys"; version = "0.3.35"; edition = "2018"; sha256 = "1ybwazllkbif71i195dadgrsw64k6l04ggk5yimiy5c2cb1wg2bq"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "wasm-bindgen"; packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "kernel32-sys"; version = "0.2.2"; edition = "2015"; sha256 = "1389av0601a9yz8dvx5zha9vmkd6ik7ax0idpb032d28555n41vm"; libName = "kernel32"; authors = [ "Peter Atashian " ]; dependencies = [ { name = "winapi"; packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "winapi-build"; packageId = "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "language-tags 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "language-tags"; version = "0.2.2"; edition = "2015"; sha256 = "16hrjdpa827carq5x4b8zhas24d8kg4s16m6nmmn1kb7cr5qh7d9"; authors = [ "Pyfisch " ]; features = { "heap_size" = [ "heapsize" "heapsize_plugin" ]; }; }; "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lazy_static"; version = "1.4.0"; edition = "2015"; sha256 = "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2"; authors = [ "Marvin Löbel " ]; features = { "spin_no_std" = [ "spin" ]; }; }; "lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lexical-core"; version = "0.4.6"; edition = "2015"; sha256 = "056bqpjbpkv2fwbd9630d32af0havx3x4da8787h4jwc4b5vq113";type = [ "lib" "staticlib" "cdylib" ]; authors = [ "Alex Huszagh " ]; dependencies = [ { name = "arrayvec"; packageId = "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; features = [ "array-sizes-33-128" ]; } { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "ryu"; packageId = "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "static_assertions"; packageId = "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "rustc_version"; packageId = "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "correct" = [ "arrayvec" "table" ]; "default" = [ "correct" "ryu" "std" ]; "grisu3" = [ "dtoa" ]; }; resolvedDefaultFeatures = [ "arrayvec" "correct" "default" "ryu" "std" "table" ]; }; "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libc"; version = "0.2.66"; edition = "2015"; sha256 = "0n0mwry21fxfwc063k33mvxk8xj7ia5ar8m42c9ymbam2ksb25fm"; authors = [ "The Rust Project Developers" ]; features = { "default" = [ "std" ]; "rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ]; "use_std" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "libgit2-sys 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libgit2-sys"; version = "0.10.0"; edition = "2018"; sha256 = "0l9fvki7qxsl97vgzqwlv75nl213a5vxw7b1jaik97ala356pv6r"; libName = "libgit2_sys"; libPath = "lib.rs"; authors = [ "Josh Triplett " "Alex Crichton " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libssh2-sys"; packageId = "libssh2-sys 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "libz-sys"; packageId = "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: target."unix"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "parallel" ]; } { name = "pkg-config"; packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "https" = [ "openssl-sys" ]; "ssh" = [ "libssh2-sys" ]; }; resolvedDefaultFeatures = [ "https" "libssh2-sys" "openssl-sys" "ssh" "ssh_key_from_memory" ]; }; "libssh2-sys 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libssh2-sys"; version = "0.2.14"; edition = "2015"; sha256 = "042gsgbvxgm5by4mk906j3zm4qdvzcfhjxrb55is1lrr6f0nxain"; libName = "libssh2_sys"; libPath = "lib.rs"; authors = [ "Alex Crichton " "Wez Furlong " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libz-sys"; packageId = "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pkg-config"; packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "vcpkg"; packageId = "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = {target, features}: (target."env" == "msvc"); } ]; features = { "vendored-openssl" = [ "openssl-sys/vendored" ]; }; }; "libz-sys 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "libz-sys"; version = "1.0.25"; edition = "2015"; sha256 = "1gjycyl2283525abks98bhxa4r259m617xfm5z52p3p3c8ry9d9f"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pkg-config"; packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "vcpkg"; packageId = "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = {target, features}: (target."env" == "msvc"); } ]; features = { }; }; "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "linked-hash-map"; version = "0.5.2"; edition = "2015"; sha256 = "10qgbvh00q36ql0jh00rxh2jlq6qvl11n6mig0cvkpf4xf5bd4df"; authors = [ "Stepan Koltsov " "Andrew Paseltiner " ]; features = { "heapsize_impl" = [ "heapsize" ]; "serde_impl" = [ "serde" "serde_test" ]; }; }; "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lock_api"; version = "0.3.3"; edition = "2018"; sha256 = "0yzlz7f5xl5sm129dq8jqsrcrkyv7jjnqwd4zr4ijsdlxjaxxckr"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "scopeguard"; packageId = "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { }; }; "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "log"; version = "0.4.8"; edition = "2015"; sha256 = "1xz18ixccl5c6np4linv3ypc7hpmmgpc5zzd2ymp2ssfx0mhbdhl"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; } ]; features = { "kv_unstable_sval" = [ "kv_unstable" "sval/fmt" ]; }; resolvedDefaultFeatures = [ "serde" "std" ]; }; "log-mdc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "log-mdc"; version = "0.1.0"; edition = "2015"; sha256 = "1iw1x3qhjvrac35spikn5h06a1rxd9vw216jk8h52jhz9i0j2kd9"; authors = [ "Steven Fackler " ]; }; "log4rs 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "log4rs"; version = "0.10.0"; edition = "2018"; sha256 = "0wgf8jh6zk0pyamadila02smrpa1cm4bwz82rzfri5y54jbbjgc5"; authors = [ "Steven Fackler " "Evan Simmons " ]; dependencies = [ { name = "antidote"; packageId = "antidote 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "arc-swap"; packageId = "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "chrono"; packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "flate2"; packageId = "flate2 1.0.13 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "fnv"; packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "humantime"; packageId = "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: (!target."windows"); } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "std" ]; } { name = "log-mdc"; packageId = "log-mdc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "serde-value"; packageId = "serde-value 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "serde_derive"; packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "serde_yaml"; packageId = "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "thread-id"; packageId = "thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "typemap"; packageId = "typemap 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: target."windows"; features = [ "handleapi" "minwindef" "processenv" "winbase" "wincon" ]; } ]; features = { "all_components" = [ "console_appender" "file_appender" "rolling_file_appender" "compound_policy" "delete_roller" "fixed_window_roller" "size_trigger" "json_encoder" "pattern_encoder" "threshold_filter" ]; "console_appender" = [ "console_writer" "simple_writer" "pattern_encoder" ]; "console_writer" = [ "ansi_writer" "libc" "winapi" ]; "default" = [ "all_components" "gzip" "file" "yaml_format" ]; "file" = [ "humantime" "serde" "serde_derive" "serde-value" "typemap" "log/serde" ]; "file_appender" = [ "antidote" "simple_writer" "pattern_encoder" ]; "gzip" = [ "flate2" ]; "json_encoder" = [ "serde" "serde_json" "chrono" "log-mdc" "serde_derive" "log/serde" "thread-id" ]; "json_format" = [ "serde_json" ]; "pattern_encoder" = [ "chrono" "log-mdc" "thread-id" ]; "rolling_file_appender" = [ "antidote" "simple_writer" "pattern_encoder" ]; "toml_format" = [ "toml" ]; "xml_format" = [ "serde-xml-rs" ]; "yaml_format" = [ "serde_yaml" ]; }; resolvedDefaultFeatures = [ "all_components" "ansi_writer" "antidote" "chrono" "compound_policy" "console_appender" "console_writer" "default" "delete_roller" "file" "file_appender" "fixed_window_roller" "flate2" "gzip" "humantime" "json_encoder" "libc" "log-mdc" "pattern_encoder" "rolling_file_appender" "serde" "serde-value" "serde_derive" "serde_json" "serde_yaml" "simple_writer" "size_trigger" "thread-id" "threshold_filter" "typemap" "winapi" "yaml_format" ]; }; "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "lru-cache"; version = "0.1.2"; edition = "2015"; sha256 = "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii"; authors = [ "Stepan Koltsov " ]; dependencies = [ { name = "linked-hash-map"; packageId = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "heapsize_impl" = [ "heapsize" "linked-hash-map/heapsize_impl" ]; }; }; "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "matches"; version = "0.1.8"; edition = "2015"; sha256 = "020axl4q7rk9vz90phs7f8jas4imxal9y9kxl4z4v7a6719mrz3z"; libPath = "lib.rs"; authors = [ "Simon Sapin " ]; }; "md5 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "md5"; version = "0.7.0"; edition = "2015"; sha256 = "0wcps37hrhz59fkhf8di1ppdnqld6l1w5sdy7jp7p51z0i4c8329"; authors = [ "Ivan Ukhov " "Kamal Ahmad " "Konstantin Stepanov " "Lukas Kalbertodt " "Nathan Musoke " "Scott Mabin " "Tony Arcieri " "Wim de With " "Yosef Dinerstein " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "memchr"; version = "2.3.0"; edition = "2015"; sha256 = "08r2qw1wwvvahicjj94ci05qx3ya5ixgrpbiq23kya6vgq6f55ri"; authors = [ "Andrew Gallant " "bluss" ]; features = { "default" = [ "std" ]; "use_std" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" "use_std" ]; }; "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mime"; version = "0.3.16"; edition = "2015"; sha256 = "13dcm9lh01hdwfjcg74ppljyjfj1c6w3a3cwkhxf0w8wa37cfq1a"; authors = [ "Sean McArthur " ]; }; "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mime_guess"; version = "2.0.1"; edition = "2015"; sha256 = "16c5ssgali30db6jh1cndy77dd1qgcykhshiyfyjvxxf94wx03hs"; authors = [ "Austin Bonander " ]; dependencies = [ { name = "mime"; packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "unicase"; packageId = "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "unicase"; packageId = "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "rev-mappings" ]; }; resolvedDefaultFeatures = [ "default" "rev-mappings" ]; }; "miniz_oxide 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "miniz_oxide"; version = "0.3.6"; edition = "2018"; sha256 = "198n4hfpq0qcxf275l6fpzh7b9cl7ck2xs6pjgpds74bazv9yrxa"; authors = [ "Frommi " "oyvindln " ]; dependencies = [ { name = "adler32"; packageId = "adler32 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mio"; version = "0.6.21"; edition = "2015"; sha256 = "13q02a7cwc140aygf8amadpzpl5lyj3p2r4wnvgydfpnphifqb9h"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "fuchsia-zircon"; packageId = "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "fuchsia"); } { name = "fuchsia-zircon-sys"; packageId = "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "fuchsia"); } { name = "iovec"; packageId = "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "kernel32-sys"; packageId = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "miow"; packageId = "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } { name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "winapi"; packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } ]; features = { "default" = [ "with-deprecated" ]; }; resolvedDefaultFeatures = [ "default" "with-deprecated" ]; }; "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "mio-uds"; version = "0.6.7"; edition = "2015"; sha256 = "09gimdbnj7b9yca99pk8lxh9jhl79msj795c8fxi2sqr9slmfqln"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "iovec"; packageId = "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } { name = "mio"; packageId = "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } ]; }; "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "miow"; version = "0.2.1"; edition = "2015"; sha256 = "06g9b8sqlh5gxakwqq4rrib07afwanfnxgxajrldwcgk3hxjy7wc"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "kernel32-sys"; packageId = "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "net2"; packageId = "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "winapi"; packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "ws2_32-sys"; packageId = "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "native-tls"; version = "0.2.3"; edition = "2015"; sha256 = "0ki7cj4wzyd2nach4qdjly69sp7rs0yz3n3z2ii4mm1gqajg2bab"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); } { name = "openssl"; packageId = "openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); } { name = "openssl-probe"; packageId = "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); } { name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!((target."os" == "windows") || (target."os" == "macos") || (target."os" == "ios"))); } { name = "schannel"; packageId = "schannel 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "windows"); } { name = "security-framework"; packageId = "security-framework 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); } { name = "security-framework-sys"; packageId = "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); } { name = "tempfile"; packageId = "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: ((target."os" == "macos") || (target."os" == "ios")); } ]; features = { "vendored" = [ "openssl/vendored" ]; }; }; "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "net2"; version = "0.2.33"; edition = "2015"; sha256 = "126g3fgfxp06zimc1l9iyxnn9cif1hjsg7sd81nlls5nnyghsma2"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: ((target."os" == "redox") || target."unix"); } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "handleapi" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ]; } ]; features = { "default" = [ "duration" ]; }; resolvedDefaultFeatures = [ "default" "duration" ]; }; "nodrop 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "nodrop"; version = "0.1.14"; edition = "2015"; sha256 = "1fz1v9r8ijacf0hlq0pdv5l9mz8vgqg1snmhvpjmi9aci1b4mvvj"; authors = [ "bluss" ]; features = { "default" = [ "std" ]; "use_union" = [ "nodrop-union" ]; }; }; "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "nom"; version = "4.2.3"; edition = "2015"; sha256 = "1mkvby8b4m61p4g1px0pwr58yfkphyp1jcfbp4qfp7l6iqdaklia"; authors = [ "contact@geoffroycouprie.com" ]; dependencies = [ { name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "version_check"; packageId = "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" ]; "regexp" = [ "regex" ]; "regexp_macros" = [ "regexp" "lazy_static" ]; "std" = [ "alloc" "memchr/use_std" ]; "verbose-errors" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "nom 5.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "nom"; version = "5.1.0"; edition = "2018"; sha256 = "01sfs72wrrfbicb2dz41w682d7qb7ahjygajg3zyfv7y0paz8cy4"; authors = [ "contact@geoffroycouprie.com" ]; dependencies = [ { name = "lexical-core"; packageId = "lexical-core 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "version_check"; packageId = "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" "lexical" ]; "lexical" = [ "lexical-core" ]; "regexp" = [ "regex" ]; "regexp_macros" = [ "regexp" "lazy_static" ]; "std" = [ "alloc" "memchr/use_std" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "lexical" "lexical-core" "std" ]; }; "num-integer 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num-integer"; version = "0.1.42"; edition = "2015"; sha256 = "1fpw8yr9xwsf3qrh91rm7mzqaiwlc2dmnalsxv9pr9w1klpacviz"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "num-traits"; packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" ]; "i128" = [ "num-traits/i128" ]; "std" = [ "num-traits/std" ]; }; }; "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num-traits"; version = "0.1.43"; edition = "2015"; sha256 = "0c9whknf2dm74a3cqirafy6gj83a76gl56g4v3g19k6lkwz13rcj"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "num-traits"; packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num-traits"; version = "0.2.11"; edition = "2015"; sha256 = "15khrlm1bra50nd48ijl1vln13m9xg4fxzghf28jp16ic5zf8ay6"; authors = [ "The Rust Project Developers" ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "num_cpus"; version = "1.12.0"; edition = "2015"; sha256 = "1riw641hsmp2vwb9wz7d26dsycrjbw3zf4nd6p18kzw5y1a3a826"; authors = [ "Sean McArthur " ]; dependencies = [ { name = "hermit-abi"; packageId = "hermit-abi 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (((target."arch" == "x86_64") || (target."arch" == "aarch64")) && (target."os" == "hermit")); } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "number_prefix 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "number_prefix"; version = "0.3.0"; edition = "2015"; sha256 = "0slm4mqmpgs6hvz22ycny9lvyvl9ivs80a1lncslp7lszz02zc0p"; authors = [ "Benjamin Sago " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "openssl 0.10.28 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "openssl"; version = "0.10.28"; edition = "2015"; sha256 = "0llb6xhl4albcm616nf40sgv278d7d91xnnnf1ixvmr2k1s96clp"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "foreign-types"; packageId = "foreign-types 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "openssl-sys"; packageId = "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "vendored" = [ "openssl-sys/vendored" ]; }; }; "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "openssl-probe"; version = "0.1.2"; edition = "2015"; sha256 = "1pijrdifgsdwd45b08c2g0dsmnhz7c3kmagb70839ngrd7d29bvp"; authors = [ "Alex Crichton " ]; }; "openssl-sys 0.9.54 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "openssl-sys"; version = "0.9.54"; edition = "2015"; sha256 = "11h98n78nk5c2ar57qs4yfjrb41s4lzxm9l7a1ahl83ljyjw090h"; build = "build/main.rs"; authors = [ "Alex Crichton " "Steven Fackler " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "cc"; packageId = "cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pkg-config"; packageId = "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "vcpkg"; packageId = "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = {target, features}: (target."env" == "msvc"); } ]; features = { "vendored" = [ "openssl-src" ]; }; }; "ordered-float 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ordered-float"; version = "0.5.2"; edition = "2015"; sha256 = "17b6ck0kvdwfch742ndixbbj9fivylnnn53s5hlkyp948fb2bdby"; authors = [ "Jonathan Reem " ]; dependencies = [ { name = "num-traits"; packageId = "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "unreachable"; packageId = "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ordered-float"; version = "1.0.2"; edition = "2015"; sha256 = "0625x96987kspdxbikry5mb7hsf5pdc5bbanxd8wjwqlx0ar71hq"; authors = [ "Jonathan Reem " "Matt Brubeck " ]; dependencies = [ { name = "num-traits"; packageId = "num-traits 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; "std" = [ "num-traits/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "parking_lot"; version = "0.10.0"; edition = "2018"; sha256 = "1z0wgf2sd1266y768kxxs3313zjfzj9r3k7j4arfaz0bmd4qrscj"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "lock_api"; packageId = "lock_api 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "parking_lot_core"; packageId = "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "deadlock_detection" = [ "parking_lot_core/deadlock_detection" ]; "nightly" = [ "parking_lot_core/nightly" "lock_api/nightly" ]; "owning_ref" = [ "lock_api/owning_ref" ]; "serde" = [ "lock_api/serde" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "parking_lot_core 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "parking_lot_core"; version = "0.7.0"; edition = "2018"; sha256 = "1wdbrvh35nn09ga570vl5062dpwfbrwgzyrlhhy78ifzhj2870km"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "cloudabi"; packageId = "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "cloudabi"); } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } { name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "redox"); } { name = "smallvec"; packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ]; } ]; features = { "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ]; }; }; "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "percent-encoding"; version = "2.1.0"; edition = "2015"; sha256 = "0bp3zrsk3kr47fbpipyczidbbx4g54lzxdm77ni1i3qws10mdzfl"; libPath = "lib.rs"; authors = [ "The rust-url developers" ]; }; "pin-project 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-project"; version = "0.4.8"; edition = "2018"; sha256 = "0b3pfbqfy3hhgq62zvbw7m0a4d55mrgnll9w8l9jymyrm1is813q"; authors = [ "Taiki Endo " ]; dependencies = [ { name = "pin-project-internal"; packageId = "pin-project-internal 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; }; "pin-project-internal 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-project-internal"; version = "0.4.8"; edition = "2018"; sha256 = "0gwvrd8y9x1zfhwqw9qg3l2yi1969ad58aldqq839krfbyj24lrq"; procMacro = true; authors = [ "Taiki Endo " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" "visit-mut" ]; } ]; }; "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-project-lite"; version = "0.1.4"; edition = "2018"; sha256 = "1bljczwz9yyb6jskjhbkilcbdg7v1mhfwzp2mxknzf7v1isl8y13"; authors = [ "Taiki Endo " ]; }; "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pin-utils"; version = "0.1.0-alpha.4"; edition = "2018"; sha256 = "11xmyx00n4m37d546by2rxb8ryxs12v55cc172i3yak1rqccd52q"; authors = [ "Josef Brandl " ]; }; "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "pkg-config"; version = "0.3.17"; edition = "2015"; sha256 = "0xynnaxdv0gzadlw4h79j855k0q7rj4zb9xb1vk00nc6ss559nh5"; authors = [ "Alex Crichton " ]; }; "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ppv-lite86"; version = "0.2.6"; edition = "2018"; sha256 = "06zs492wbms7j5qhy58cs3976c7kyc47rx0d6fn63rgvp580njbl"; authors = [ "The CryptoCorrosion Contributors" ]; features = { "default" = [ "std" "simd" ]; }; resolvedDefaultFeatures = [ "simd" "std" ]; }; "proc-macro-error 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-error"; version = "0.4.8"; edition = "2018"; sha256 = "02jfpscv0fcqdi98a9rzkk423csmh4flgm0ac45s4bzjk9spfl47"; authors = [ "CreepySkeleton " ]; dependencies = [ { name = "proc-macro-error-attr"; packageId = "proc-macro-error-attr 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "rustversion"; packageId = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "rustversion"; packageId = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "proc-macro-error-attr 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-error-attr"; version = "0.4.8"; edition = "2018"; sha256 = "0yiwdy12lhv1l1jwnhnb46jh377hdppsafyp3sh52hv6lagpswf5"; procMacro = true; authors = [ "CreepySkeleton " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "rustversion"; packageId = "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "derive" "parsing" "proc-macro" ]; } { name = "syn-mid"; packageId = "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-hack"; version = "0.5.11"; edition = "2018"; sha256 = "1idz5vmnjjhvr51yvwyjb45mza18wa53fr05m1skqvbdyw15gm7c"; procMacro = true; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro-nested"; version = "0.1.3"; edition = "2015"; sha256 = "0bmlksm8vl44wkwihmwr7jsjznhbg0n7aibcw1cs2jgjcp86x6in"; authors = [ "David Tolnay " ]; }; "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "proc-macro2"; version = "1.0.8"; edition = "2018"; sha256 = "0j45p176fnw0d02dzcky9sxyr4fadiggq07skmblwspqdxy33jrs"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "unicode-xid"; packageId = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "quick-error"; version = "1.2.3"; edition = "2015"; sha256 = "1q6za3v78hsspisc197bg3g7rpc989qycy8ypr8ap8igv10ikl51"; authors = [ "Paul Colomiets " "Colin Kiegel " ]; }; "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "quote"; version = "1.0.2"; edition = "2018"; sha256 = "1zkc46ryacf2jdkc6krsy2z615xbk1x8kp1830rcxz3irj5qqfh5"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "default" = [ "proc-macro" ]; "proc-macro" = [ "proc-macro2/proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand"; version = "0.7.3"; edition = "2018"; sha256 = "00sdaimkbz491qgi6qxkv582yivl32m2jd401kzbn94vsiwicsva"; authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; dependencies = [ { name = "getrandom"; packageId = "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "getrandom_package"; optional = true; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; target = { target, features }: target."unix"; } { name = "rand_chacha"; packageId = "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = { target, features }: (!(target."os" == "emscripten")); } { name = "rand_core"; packageId = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "rand_hc"; packageId = "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "emscripten"); } ]; devDependencies = [ { name = "rand_hc"; packageId = "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "alloc" = [ "rand_core/alloc" ]; "default" = [ "std" ]; "getrandom" = [ "getrandom_package" "rand_core/getrandom" ]; "nightly" = [ "simd_support" ]; "simd_support" = [ "packed_simd" ]; "small_rng" = [ "rand_pcg" ]; "std" = [ "rand_core/std" "rand_chacha/std" "alloc" "getrandom" "libc" ]; "stdweb" = [ "getrandom_package/stdweb" ]; "wasm-bindgen" = [ "getrandom_package/wasm-bindgen" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "getrandom" "getrandom_package" "libc" "std" ]; }; "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand_chacha"; version = "0.2.1"; edition = "2018"; sha256 = "0lv8imzzl4h2glm6sjj8mkvasgi8jym23ya48dakyln7m06sk8h3"; authors = [ "The Rand Project Developers" "The Rust Project Developers" "The CryptoCorrosion Contributors" ]; dependencies = [ { name = "c2-chacha"; packageId = "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "simd" ]; } { name = "rand_core"; packageId = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" "simd" ]; "std" = [ "c2-chacha/std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand_core"; version = "0.5.1"; edition = "2018"; sha256 = "06bdvx08v3rkz451cm7z59xwwqn1rkfh6v9ay77b14f8dwlybgch"; authors = [ "The Rand Project Developers" "The Rust Project Developers" ]; dependencies = [ { name = "getrandom"; packageId = "getrandom 0.1.14 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "serde1" = [ "serde" ]; "std" = [ "alloc" "getrandom" "getrandom/std" ]; }; resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ]; }; "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rand_hc"; version = "0.2.0"; edition = "2018"; sha256 = "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa"; authors = [ "The Rand Project Developers" ]; dependencies = [ { name = "rand_core"; packageId = "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "redox_syscall"; version = "0.1.56"; edition = "2015"; sha256 = "110y7dyfm2vci4x5vk7gr0q551dvp31npl99fnsx2fb17wzwcf94"; libName = "syscall"; authors = [ "Jeremy Soller " ]; }; "regex 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "regex"; version = "1.3.4"; edition = "2015"; sha256 = "1a1mh9mgr8jipnxdaykla6xlw4a6kjn2bzkq3cifx8xy4ivzjb1j"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "aho-corasick"; packageId = "aho-corasick 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "regex-syntax"; packageId = "regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "thread_local"; packageId = "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; features = { "default" = [ "std" "perf" "unicode" ]; "perf" = [ "perf-cache" "perf-dfa" "perf-inline" "perf-literal" ]; "perf-cache" = [ "thread_local" ]; "perf-literal" = [ "aho-corasick" "memchr" ]; "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; "unicode-age" = [ "regex-syntax/unicode-age" ]; "unicode-bool" = [ "regex-syntax/unicode-bool" ]; "unicode-case" = [ "regex-syntax/unicode-case" ]; "unicode-gencat" = [ "regex-syntax/unicode-gencat" ]; "unicode-perl" = [ "regex-syntax/unicode-perl" ]; "unicode-script" = [ "regex-syntax/unicode-script" ]; "unicode-segment" = [ "regex-syntax/unicode-segment" ]; "unstable" = [ "pattern" ]; "use_std" = [ "std" ]; }; resolvedDefaultFeatures = [ "aho-corasick" "default" "memchr" "perf" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "std" "thread_local" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; "regex-syntax 0.6.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "regex-syntax"; version = "0.6.14"; edition = "2015"; sha256 = "01myl8xqpbnird23xnsb92sjmz1cmp69r6m7y3dwbpmsx4zzx3dj"; authors = [ "The Rust Project Developers" ]; features = { "default" = [ "unicode" ]; "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; resolvedDefaultFeatures = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "remove_dir_all"; version = "0.5.2"; edition = "2015"; sha256 = "0bkrlyg26mgizpiy1yb2hhpgscxcag8r5fnckqsvk25608vzm0sa"; authors = [ "Aaronepower " ]; dependencies = [ { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "std" "errhandlingapi" "winerror" "fileapi" "winbase" ]; } ]; }; "reqwest 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "reqwest"; version = "0.10.1"; edition = "2018"; sha256 = "1r1z26di07vf09x8b8867d40x0mcx7ij4iih1b1zd2r5kvhriry0"; authors = [ "Sean McArthur " ]; dependencies = [ { name = "base64"; packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "encoding_rs"; packageId = "encoding_rs 0.8.22 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "futures-util"; packageId = "futures-util 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "http"; packageId = "http 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "http-body"; packageId = "http-body 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "hyper"; packageId = "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = { target, features }: (!(target."arch" == "wasm32")); features = [ "tcp" ]; } { name = "hyper-tls"; packageId = "hyper-tls 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "js-sys"; packageId = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."arch" == "wasm32"); } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "mime"; packageId = "mime 0.3.16 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "mime_guess"; packageId = "mime_guess 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "native-tls"; packageId = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "native-tls-crate"; optional = true; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "percent-encoding"; packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "pin-project-lite"; packageId = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "serde_urlencoded"; packageId = "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "time"; packageId = "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = { target, features }: (!(target."arch" == "wasm32")); features = [ "tcp" "time" ]; } { name = "tokio-tls"; packageId = "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: (!(target."arch" == "wasm32")); } { name = "url"; packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "wasm-bindgen"; packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."arch" == "wasm32"); features = [ "serde-serialize" ]; } { name = "wasm-bindgen-futures"; packageId = "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."arch" == "wasm32"); } { name = "web-sys"; packageId = "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."arch" == "wasm32"); features = [ "Headers" "Request" "RequestInit" "RequestMode" "Response" "Window" ]; } { name = "winreg"; packageId = "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } ]; devDependencies = [ { name = "hyper"; packageId = "hyper 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = {target, features}: (!(target."arch" == "wasm32")); features = [ "tcp" "stream" ]; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; target = {target, features}: (!(target."arch" == "wasm32")); features = [ "derive" ]; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; target = {target, features}: (!(target."arch" == "wasm32")); features = [ "macros" ]; } ]; features = { "blocking" = [ "futures-util/io" "tokio/rt-threaded" "tokio/rt-core" "tokio/sync" ]; "cookies" = [ "cookie_crate" "cookie_store" ]; "default" = [ "default-tls" ]; "default-tls" = [ "hyper-tls" "native-tls-crate" "__tls" "tokio-tls" ]; "gzip" = [ "async-compression" ]; "json" = [ "serde_json" ]; "native-tls" = [ "default-tls" ]; "native-tls-vendored" = [ "native-tls" "native-tls-crate/vendored" ]; "rustls-tls" = [ "hyper-rustls" "tokio-rustls" "webpki-roots" "rustls" "__tls" ]; "socks" = [ "tokio-socks" ]; }; resolvedDefaultFeatures = [ "__tls" "default" "default-tls" "hyper-tls" "native-tls-crate" "tokio-tls" ]; }; "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "resolv-conf"; version = "0.6.2"; edition = "2015"; sha256 = "1jvdsmksdf6yiipm3aqahyv8n1cjd7wqc8sa0p0gzsax3fmb8qxj"; libName = "resolv_conf"; authors = [ "paul@colomiets.name" ]; dependencies = [ { name = "hostname"; packageId = "hostname 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "quick-error"; packageId = "quick-error 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "system" = [ "hostname" ]; }; resolvedDefaultFeatures = [ "hostname" "system" ]; }; "ructe 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ructe"; version = "0.9.2"; edition = "2015"; sha256 = "17qns867zs3i5v1gr6qkg767dv2dj1bgm41xv5qai23g0jw20mn8"; authors = [ "Rasmus Kaj " ]; dependencies = [ { name = "base64"; packageId = "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "bytecount"; packageId = "bytecount 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "itertools"; packageId = "itertools 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "md5"; packageId = "md5 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "nom"; packageId = "nom 5.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "mime03" = [ "mime" ]; "sass" = [ "rsass" ]; "warp01" = [ "warp" "mime03" ]; "warp02" = [ "mime03" ]; }; }; "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rustc-demangle"; version = "0.1.16"; edition = "2015"; sha256 = "10qp42sl1wrdbgbbh8rnay2grm976z7hqgz32c4y09l1c071qsac"; authors = [ "Alex Crichton " ]; features = { "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rustc_version"; version = "0.2.3"; edition = "2015"; sha256 = "02h3x57lcr8l2pm0a645s9whdh33pn5cnrwvn5cb57vcrc53x3hk"; authors = [ "Marvin Löbel " ]; dependencies = [ { name = "semver"; packageId = "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "rusttype 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rusttype"; version = "0.4.3"; edition = "2015"; sha256 = "16aryqlcqwsrqg3kpf8kl1pbv6pz0gnmxiayxsxl1lzn0bd07zqi"; authors = [ "Dylan Ede " "Jeremy Soller " ]; dependencies = [ { name = "arrayvec"; packageId = "arrayvec 0.4.12 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "ordered-float"; packageId = "ordered-float 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "stb_truetype"; packageId = "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "bench" = [ "gpu_cache" ]; "gpu_cache" = [ "linked-hash-map" "fnv" ]; }; }; "rustversion 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "rustversion"; version = "1.0.2"; edition = "2018"; sha256 = "1xkr1g792w728py2qpg2zj0vfviv2xzmxkkd9w6035l9d5ss3fxk"; procMacro = true; build = "build/build.rs"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; } ]; }; "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ryu"; version = "1.0.2"; edition = "2015"; sha256 = "1j0h74f1xqf9hjkhanp8i20mqc1aw35kr1iq9i79q7713mn51a5z"; authors = [ "David Tolnay " ]; features = { }; }; "safemem 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "safemem"; version = "0.3.3"; edition = "2015"; sha256 = "0wp0d2b2284lw11xhybhaszsczpbq1jbdklkxgifldcknmy3nw7g"; authors = [ "Austin Bonander " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "schannel 0.1.17 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "schannel"; version = "0.1.17"; edition = "2015"; sha256 = "15gjmg99gxpwm03vpf7i0ry6bxzxc8z2j44spc74w2pyixp9wyjh"; authors = [ "Steven Fackler " "Steffen Butzer " ]; dependencies = [ { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "lmcons" "minschannel" "securitybaseapi" "schannel" "sspi" "sysinfoapi" "timezoneapi" "winbase" "wincrypt" "winerror" ]; } ]; }; "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "scopeguard"; version = "1.0.0"; edition = "2015"; sha256 = "03aay84r1f6w87ckbpj6cc4rnsxkxcfs13n5ynxjia0qkgjiabml"; authors = [ "bluss" ]; features = { "default" = [ "use_std" ]; }; }; "security-framework 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "security-framework"; version = "0.3.4"; edition = "2015"; sha256 = "1pqn79cl9njnnhsmjvvphkzx8is5jhfd8bhxpllgvrgggjfl5wlf"; authors = [ "Steven Fackler " "Kornel " ]; dependencies = [ { name = "core-foundation"; packageId = "core-foundation 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "core-foundation-sys"; packageId = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "security-framework-sys"; packageId = "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "OSX_10_10" = [ "OSX_10_9" "security-framework-sys/OSX_10_10" ]; "OSX_10_11" = [ "OSX_10_10" "security-framework-sys/OSX_10_11" ]; "OSX_10_12" = [ "OSX_10_11" "security-framework-sys/OSX_10_12" ]; "OSX_10_13" = [ "OSX_10_12" "security-framework-sys/OSX_10_13" "alpn" ]; "OSX_10_9" = [ "security-framework-sys/OSX_10_9" ]; }; }; "security-framework-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "security-framework-sys"; version = "0.3.3"; edition = "2015"; sha256 = "15gqhhi206lzynd0pcbswxhvqc4p9bmpl2h9qnwfnpb16zy96573"; authors = [ "Steven Fackler " "Kornel " ]; dependencies = [ { name = "core-foundation-sys"; packageId = "core-foundation-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "OSX_10_10" = [ "OSX_10_9" ]; "OSX_10_11" = [ "OSX_10_10" ]; "OSX_10_12" = [ "OSX_10_11" ]; "OSX_10_13" = [ "OSX_10_12" ]; }; }; "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "semver"; version = "0.9.0"; edition = "2015"; sha256 = "00q4lkcj0rrgbhviv9sd4p6qmdsipkwkbra7rh11jrhq5kpvjzhx"; authors = [ "Steve Klabnik " "The Rust Project Developers" ]; dependencies = [ { name = "semver-parser"; packageId = "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "ci" = [ "serde" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "semver-parser"; version = "0.7.0"; edition = "2015"; sha256 = "18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq"; authors = [ "Steve Klabnik " ]; }; "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde"; version = "1.0.104"; edition = "2015"; sha256 = "0ja4mgw4p42syjk7jkzwhj2yg6llfrfm7vn8rvy7v3c1bzr1aha1"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "serde_derive"; packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } ]; devDependencies = [ { name = "serde_derive"; packageId = "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "std" ]; "derive" = [ "serde_derive" ]; }; resolvedDefaultFeatures = [ "default" "derive" "serde_derive" "std" ]; }; "serde-value 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde-value"; version = "0.6.0"; edition = "2015"; sha256 = "1swh6870pr1cxr6ha769rv4wdnyfxdvsc42cmvf8lmla38lsfras"; authors = [ "arcnmx" ]; dependencies = [ { name = "ordered-float"; packageId = "ordered-float 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "serde_derive 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_derive"; version = "1.0.104"; edition = "2015"; sha256 = "0r7gjlwfry44b4ylz524ynjp9v3qiwdj4c588lh94aas78q9x3qj"; procMacro = true; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "visit" ]; } ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_json"; version = "1.0.47"; edition = "2018"; sha256 = "145z9ilww45kc6wjrks287rksand7wbd8bykmxafh2qynsaki48m"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "itoa"; packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "ryu"; packageId = "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "alloc" = [ "serde/alloc" ]; "default" = [ "std" ]; "preserve_order" = [ "indexmap" ]; "std" = [ "serde/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "serde_urlencoded 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_urlencoded"; version = "0.6.1"; edition = "2015"; sha256 = "15rcwfkff0md5i231m2ym5756ksw1mkh5b5g2rw72wsc5mzdgicy"; authors = [ "Anthony Ramine " ]; dependencies = [ { name = "dtoa"; packageId = "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "itoa"; packageId = "itoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "url"; packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "serde_yaml 0.8.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "serde_yaml"; version = "0.8.11"; edition = "2018"; sha256 = "0d9wdjrlx9gxg80kzc6pvdwz5pwhja2n8n0bxja9vv61kzqif6v9"; authors = [ "David Tolnay " ]; dependencies = [ { name = "dtoa"; packageId = "dtoa 0.4.5 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "linked-hash-map"; packageId = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "yaml-rust"; packageId = "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "sha1 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "sha1"; version = "0.6.0"; edition = "2015"; sha256 = "03gs2q4m67rn2p8xcdfxhip6mpgahdwm12bnb3vh90ahv9grhy95"; authors = [ "Armin Ronacher " ]; features = { }; }; "signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "signal-hook-registry"; version = "1.2.0"; edition = "2015"; sha256 = "0haz828bif1lbp3alx17zkcy5hwy15bbpmvks72j8iznx7npix4l"; authors = [ "Michal 'vorner' Vaner " "Masaki Hara " ]; dependencies = [ { name = "arc-swap"; packageId = "arc-swap 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "slab"; version = "0.4.2"; edition = "2015"; sha256 = "1y59xsa27jk84sxzswjk60xcjf8b4fm5960jwpznrrcmasyva4f1"; authors = [ "Carl Lerche " ]; }; "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "smallvec"; version = "1.2.0"; edition = "2018"; sha256 = "1z6f47i3qpg9pdjzzvb0g5i1vvdm2ymk3kqc1mdnl8fdkgnb4bsw"; libPath = "lib.rs"; authors = [ "Simon Sapin " ]; features = { }; }; "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "socket2"; version = "0.3.11"; edition = "2018"; sha256 = "11bdcz04i106g4q7swkll0qxrb4287srqd2k3aq2q6i22zjlvdz8"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."unix" || (target."os" == "redox")); } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."unix" || (target."os" == "redox")); } { name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "redox"); } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "handleapi" "ws2def" "ws2ipdef" "ws2tcpip" "minwindef" ]; } ]; features = { }; }; "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "sourcefile"; version = "0.1.4"; edition = "2015"; sha256 = "1lwa6973zs4bgj29my7agfjgk4nw9hp6j7dfnr13nid85fw7rxsb"; authors = [ "Richard Dodd " ]; }; "static_assertions 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "static_assertions"; version = "0.3.4"; edition = "2015"; sha256 = "1lw33i89888yb3x29c6dv4mrkg3534n0rlg3r7qzh4p58xmv6gkz"; authors = [ "Nikolai Vazquez" ]; features = { }; }; "stb_truetype 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "stb_truetype"; version = "0.2.8"; edition = "2018"; sha256 = "0pa2rfqjlkh015lny0ls8w28r38y8pw2kgff1xl5lk19h91yq6wx"; authors = [ "Dylan Ede " "Alex Butler " ]; dependencies = [ { name = "stb_truetype"; packageId = "stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; rename = "stb_truetype_next"; } ]; }; "stb_truetype 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "stb_truetype"; version = "0.3.1"; edition = "2018"; sha256 = "0lgvnh3ma6cz811bk8imj45djz76zs47b8327sgnmik2x03nnyzp"; authors = [ "Dylan Ede " "Alex Butler " ]; dependencies = [ { name = "byteorder"; packageId = "byteorder 1.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "strsim 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "strsim"; version = "0.8.0"; edition = "2015"; sha256 = "0sjsm7hrvjdifz661pjxq5w4hf190hx53fra8dfvamacvff139cf"; authors = [ "Danny Guo " ]; }; "structopt 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "structopt"; version = "0.3.9"; edition = "2018"; sha256 = "160f06f9k7b7jbm53d51w0ym2lxmxmdbkil0bnxzqml9skbvxg51"; authors = [ "Guillaume Pinot " "others" ]; dependencies = [ { name = "clap"; packageId = "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "structopt-derive"; packageId = "structopt-derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "color" = [ "clap/color" ]; "debug" = [ "clap/debug" ]; "default" = [ "clap/default" ]; "doc" = [ "clap/doc" ]; "lints" = [ "clap/lints" ]; "no_cargo" = [ "clap/no_cargo" ]; "paw" = [ "structopt-derive/paw" ]; "suggestions" = [ "clap/suggestions" ]; "wrap_help" = [ "clap/wrap_help" ]; "yaml" = [ "clap/yaml" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "structopt-derive 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "structopt-derive"; version = "0.4.2"; edition = "2018"; sha256 = "0r2zkrk5v3yk103rkzd082p4630lry25c2jxcd7d352v3ym68l09"; procMacro = true; authors = [ "Guillaume Pinot " ]; dependencies = [ { name = "heck"; packageId = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro-error"; packageId = "proc-macro-error 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "derive" "parsing" "proc-macro" ]; } ]; features = { }; }; "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "syn"; version = "1.0.14"; edition = "2018"; sha256 = "1xf8g9a3yl41027g5napiwfd7r87y734lf2dqdyyzyfzv183avxg"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; } { name = "unicode-xid"; packageId = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ]; "printing" = [ "quote" ]; "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ]; }; resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "full" "parsing" "printing" "proc-macro" "quote" "visit" "visit-mut" ]; }; "syn-mid 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "syn-mid"; version = "0.5.0"; edition = "2018"; sha256 = "12ikg5jfklixq0wsgfl7sdzjqlxgq50ygklxy4f972hjdjgm7qvv"; authors = [ "Taiki Endo " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "parsing" "printing" "derive" ]; } ]; features = { "clone-impls" = [ "syn/clone-impls" ]; }; }; "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "synstructure"; version = "0.12.3"; edition = "2018"; sha256 = "0igmc5fzpk6fg7kgff914j05lbpc6ai2wmji312v2h8vvjhnwrb7"; authors = [ "Nika Layzell " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; features = [ "derive" "parsing" "printing" "clone-impls" "visit" "extra-traits" ]; } { name = "unicode-xid"; packageId = "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "proc-macro" ]; "proc-macro" = [ "proc-macro2/proc-macro" "syn/proc-macro" "quote/proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tempfile"; version = "3.1.0"; edition = "2018"; sha256 = "1a9cfdqw70n7bcnkx05aih9xdba8lqazmqlkjpkmn2la6gcj8vks"; authors = [ "Steven Allen " "The Rust Project Developers" "Ashley Mannix " "Jason White " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } { name = "rand"; packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "redox"); } { name = "remove_dir_all"; packageId = "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "fileapi" "handleapi" "winbase" ]; } ]; }; "textwrap 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "textwrap"; version = "0.11.0"; edition = "2015"; sha256 = "0q5hky03ik3y50s9sz25r438bc4nwhqc6dqwynv4wylc807n29nk"; authors = [ "Martin Geisler " ]; dependencies = [ { name = "unicode-width"; packageId = "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "thread-id 3.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "thread-id"; version = "3.3.0"; edition = "2015"; sha256 = "1h90v19fjz3x9b25ywh68z5yf2zsmm6h5zb4rl302ckbsp4z9yy7"; authors = [ "Ruud van Asseldonk " ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."unix"; } { name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "redox"); } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "processthreadsapi" ]; } ]; }; "thread_local 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "thread_local"; version = "1.0.1"; edition = "2015"; sha256 = "054vlrr1vsdy1h4b7n99mr24pnj8928ig9qwzg36wnkld4dns36l"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "threadpool 1.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "threadpool"; version = "1.7.1"; edition = "2015"; sha256 = "0rd89n1q7vy47w4c32cnynibffv9kj3jy3dwr0536n9lbw5ckw72"; authors = [ "The Rust Project Developers" "Corey Farwell " "Stefan Schindler " ]; dependencies = [ { name = "num_cpus"; packageId = "num_cpus 1.12.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "time"; version = "0.1.42"; edition = "2015"; sha256 = "0vsbvsz0ryxb35dy9j4anxvy8zlaplmjmi0a4z4l64bc135cz3fv"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "redox_syscall"; packageId = "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."os" == "redox"); } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "std" "minwinbase" "minwindef" "ntdef" "profileapi" "sysinfoapi" "timezoneapi" ]; } ]; devDependencies = [ { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "std" "processthreadsapi" "winbase" ]; } ]; }; "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tokio"; version = "0.2.11"; edition = "2018"; sha256 = "02q3d97n5929qh9nip5xm1c4lppyr7q9d34pazf9rx4njjc1gpcg"; authors = [ "Tokio Contributors " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "fnv"; packageId = "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "iovec"; packageId = "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "libc"; packageId = "libc 0.2.66 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: target."unix"; } { name = "memchr"; packageId = "memchr 2.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "mio"; packageId = "mio 0.6.21 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "mio-uds"; packageId = "mio-uds 0.6.7 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: target."unix"; } { name = "pin-project-lite"; packageId = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "signal-hook-registry"; packageId = "signal-hook-registry 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; target = { target, features }: target."unix"; } { name = "slab"; packageId = "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; usesDefaultFeatures = false; target = { target, features }: target."windows"; } ]; features = { "blocking" = [ "rt-core" ]; "dns" = [ "rt-core" ]; "fs" = [ "rt-core" "io-util" ]; "full" = [ "blocking" "dns" "fs" "io-driver" "io-util" "io-std" "macros" "net" "process" "rt-core" "rt-util" "rt-threaded" "signal" "stream" "sync" "time" ]; "io-driver" = [ "mio" "lazy_static" ]; "io-std" = [ "rt-core" ]; "io-util" = [ "memchr" ]; "macros" = [ "tokio-macros" ]; "net" = [ "dns" "tcp" "udp" "uds" ]; "process" = [ "io-driver" "libc" "mio-named-pipes" "signal" "winapi/consoleapi" "winapi/minwindef" "winapi/threadpoollegacyapiset" "winapi/winerror" ]; "rt-threaded" = [ "num_cpus" "rt-core" ]; "signal" = [ "io-driver" "lazy_static" "libc" "mio-uds" "signal-hook-registry" "winapi/consoleapi" "winapi/minwindef" ]; "stream" = [ "futures-core" ]; "sync" = [ "fnv" ]; "tcp" = [ "io-driver" "iovec" ]; "time" = [ "slab" ]; "udp" = [ "io-driver" ]; "uds" = [ "io-driver" "mio-uds" "libc" ]; }; resolvedDefaultFeatures = [ "blocking" "default" "fnv" "futures-core" "io-driver" "io-util" "iovec" "lazy_static" "libc" "memchr" "mio" "mio-uds" "rt-core" "rt-util" "signal" "signal-hook-registry" "slab" "stream" "sync" "tcp" "time" "udp" "uds" "winapi" ]; }; "tokio-tls 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tokio-tls"; version = "0.3.0"; edition = "2018"; sha256 = "0a4qc7rj48gf1npywzmhqbx04xh7ld2nkv06kgsra4r9lnih5pkv"; authors = [ "Tokio Contributors " ]; dependencies = [ { name = "native-tls"; packageId = "native-tls 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "macros" "stream" "rt-core" "io-util" "net" ]; } ]; }; "tokio-util 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tokio-util"; version = "0.2.0"; edition = "2018"; sha256 = "0c39s4y0kvzkyarn1f9s8khqyajiqn7m4cjsa208f87ch88sa7ap"; authors = [ "Tokio Contributors " ]; dependencies = [ { name = "bytes"; packageId = "bytes 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-core"; packageId = "futures-core 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures-sink"; packageId = "futures-sink 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "pin-project-lite"; packageId = "pin-project-lite 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; devDependencies = [ { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; } ]; features = { "full" = [ "codec" "udp" ]; "udp" = [ "tokio/udp" ]; }; resolvedDefaultFeatures = [ "codec" "default" ]; }; "tower-service 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "tower-service"; version = "0.3.0"; edition = "2018"; sha256 = "0q4q53w82w1wd71x7vbspg2l3jicb6al2w1qdwxmnjrz8jzvd1z9"; authors = [ "Tower Maintainers " ]; }; "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "traitobject"; version = "0.1.0"; edition = "2015"; sha256 = "0yb0n8822mr59j200fyr2fxgzzgqljyxflx9y8bdy3rlaqngilgg"; authors = [ "Jonathan Reem " ]; }; "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "trust-dns-proto"; version = "0.18.0-alpha.2"; edition = "2018"; sha256 = "0gs15ckm4d4s59jqmm35lbpx7mvylrk8hiialpnga6d9p0m3lzra"; libName = "trust_dns_proto"; authors = [ "Benjamin Fry " ]; dependencies = [ { name = "async-trait"; packageId = "async-trait 0.1.24 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "enum-as-inner"; packageId = "enum-as-inner 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "failure"; packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "idna"; packageId = "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "rand"; packageId = "rand 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "smallvec"; packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "socket2"; packageId = "socket2 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; features = [ "time" "udp" "tcp" ]; } { name = "url"; packageId = "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "tokio-compat" ]; "dnssec" = [ "data-encoding" ]; "dnssec-openssl" = [ "dnssec" "openssl" ]; "dnssec-ring" = [ "dnssec" "ring" ]; "mdns" = [ "socket2/reuseport" ]; "serde-config" = [ "serde" ]; "tokio-compat" = [ "tokio" ]; }; resolvedDefaultFeatures = [ "default" "tokio" "tokio-compat" ]; }; "trust-dns-resolver 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "trust-dns-resolver"; version = "0.18.0-alpha.2"; edition = "2018"; sha256 = "0bsal2vz7q3fqdyxa0j1rbbh1hm8mxxv7mf62hjqnvr25d8b343g"; libName = "trust_dns_resolver"; authors = [ "Benjamin Fry " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "failure"; packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "futures"; packageId = "futures 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "ipconfig"; packageId = "ipconfig 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "lru-cache"; packageId = "lru-cache 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "resolv-conf"; packageId = "resolv-conf 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "system" ]; } { name = "smallvec"; packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "tokio"; packageId = "tokio 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; features = [ "rt-core" ]; } { name = "trust-dns-proto"; packageId = "trust-dns-proto 0.18.0-alpha.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "tokio-compat" ]; "dns-over-https-rustls" = [ "trust-dns-https" "dns-over-rustls" "dns-over-https" ]; "dns-over-native-tls" = [ "dns-over-tls" "trust-dns-native-tls" ]; "dns-over-openssl" = [ "dns-over-tls" "trust-dns-openssl" ]; "dns-over-rustls" = [ "dns-over-tls" "rustls" "trust-dns-rustls" "webpki-roots" ]; "dnssec-openssl" = [ "dnssec" "trust-dns-proto/dnssec-openssl" ]; "dnssec-ring" = [ "dnssec" "trust-dns-proto/dnssec-ring" ]; "mdns" = [ "trust-dns-proto/mdns" ]; "serde-config" = [ "serde" "trust-dns-proto/serde-config" ]; "tokio-compat" = [ "tokio" "trust-dns-proto/tokio-compat" ]; }; resolvedDefaultFeatures = [ "default" "tokio" "tokio-compat" ]; }; "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "try-lock"; version = "0.2.2"; edition = "2015"; sha256 = "10p36rx6pqi9d0zr876xa8vksx2m66ha45myakl50rn08dxyn176"; authors = [ "Sean McArthur " ]; }; "typemap 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "typemap"; version = "0.3.3"; edition = "2015"; sha256 = "1xm1gbvz9qisj1l6d36hrl9pw8imr8ngs6qyanjnsad3h0yfcfv5"; authors = [ "Jonathan Reem " ]; dependencies = [ { name = "unsafe-any"; packageId = "unsafe-any 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "unicase 2.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicase"; version = "2.6.0"; edition = "2015"; sha256 = "1xmlbink4ycgxrkjspp0mf7pghcx4m7vxq7fpfm04ikr2zk7pwsh"; authors = [ "Sean McArthur " ]; buildDependencies = [ { name = "version_check"; packageId = "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { }; }; "unicode-bidi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-bidi"; version = "0.3.4"; edition = "2015"; sha256 = "1malx8ljgm7v1gbaazkn7iicy5wj0bwcyadj3l727a38ch6bvwj9"; libName = "unicode_bidi"; authors = [ "The Servo Project Developers" ]; dependencies = [ { name = "matches"; packageId = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "flame_it" = [ "flame" "flamer" ]; "with_serde" = [ "serde" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "unicode-normalization 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-normalization"; version = "0.1.12"; edition = "2015"; sha256 = "195gb4fzlgg4g9cv6w057ncpmvvnx30r00w9hj114knhmlmm6yal"; authors = [ "kwantam " ]; dependencies = [ { name = "smallvec"; packageId = "smallvec 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "unicode-segmentation 1.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-segmentation"; version = "1.6.0"; edition = "2015"; sha256 = "1h7d48mzpi8hwf5cvnq07warkv86pvapzzzf32hvbjsk20yiagp8"; authors = [ "kwantam " "Manish Goregaokar " ]; features = { }; }; "unicode-width 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-width"; version = "0.1.7"; edition = "2015"; sha256 = "0yflmxkxmm89ckrb3sz58whn491aycrj8cxra0hzzlb72x9rvana"; authors = [ "kwantam " "Manish Goregaokar " ]; features = { "rustc-dep-of-std" = [ "std" "core" "compiler_builtins" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unicode-xid"; version = "0.2.0"; edition = "2015"; sha256 = "0z09fn515xm7zyr0mmdyxa9mx2f7azcpv74pqmg611iralwpcvl2"; authors = [ "erick.tryzelaar " "kwantam " ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unreachable"; version = "1.0.0"; edition = "2015"; sha256 = "0mps2il4xy2mjqc3appas27hhn2xmvixc3bzzhfrjj74gy3i0a1q"; authors = [ "Jonathan Reem " ]; dependencies = [ { name = "void"; packageId = "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; usesDefaultFeatures = false; } ]; }; "unsafe-any 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "unsafe-any"; version = "0.4.2"; edition = "2015"; sha256 = "0zwwphsqkw5qaiqmjwngnfpv9ym85qcsyj7adip9qplzjzbn00zk"; authors = [ "Jonathan Reem " ]; dependencies = [ { name = "traitobject"; packageId = "traitobject 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "url 2.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "url"; version = "2.1.1"; edition = "2015"; sha256 = "1jw7cw8br4xvjb92ddrrh1r7jvqhyhiknnnfpgq9np63fs24m7c2"; authors = [ "The rust-url developers" ]; dependencies = [ { name = "idna"; packageId = "idna 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "matches"; packageId = "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "percent-encoding"; packageId = "percent-encoding 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "vcpkg"; version = "0.2.8"; edition = "2015"; sha256 = "0s1ijdrsg6917imja2hb07l0z4vbx7ydm8m2i1n9g62fg7r3ki1z"; authors = [ "Jim McGrath " ]; }; "vec_map 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "vec_map"; version = "0.8.1"; edition = "2015"; sha256 = "06n8hw4hlbcz328a3gbpvmy0ma46vg1lc0r5wf55900szf3qdiq5"; authors = [ "Alex Crichton " "Jorge Aparicio " "Alexis Beingessner " "Brian Anderson <>" "tbu- <>" "Manish Goregaokar <>" "Aaron Turon " "Adolfo Ochagavía <>" "Niko Matsakis <>" "Steven Fackler <>" "Chase Southwood " "Eduard Burtescu <>" "Florian Wilkens <>" "Félix Raimundo <>" "Tibor Benke <>" "Markus Siemens " "Josh Branchaud " "Huon Wilson " "Corey Farwell " "Aaron Liblong <>" "Nick Cameron " "Patrick Walton " "Felix S Klock II <>" "Andrew Paseltiner " "Sean McArthur " "Vadim Petrochenkov <>" ]; features = { "eders" = [ "serde" ]; }; }; "vergen 3.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "vergen"; version = "3.0.4"; edition = "2018"; sha256 = "1fhx18f0ddlc779f27s3gdzg4mliishrhnyhz8fhbirxz4s5xfka"; authors = [ "Jason Ozias " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "chrono"; packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "failure"; packageId = "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "chrono"; packageId = "chrono 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "version_check 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "version_check"; version = "0.1.5"; edition = "2015"; sha256 = "1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi"; authors = [ "Sergio Benitez " ]; }; "version_check 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "version_check"; version = "0.9.1"; edition = "2015"; sha256 = "1kikqlnggii1rvnxrbls55sc46lxvinz5k3giscgncjj4p87b1q7"; authors = [ "Sergio Benitez " ]; }; "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "void"; version = "1.0.2"; edition = "2015"; sha256 = "0zc8f0ksxvmhvgx4fdg0zyn6vdnbxd2xv9hfx4nhzg6kbs4f80ka"; authors = [ "Jonathan Reem " ]; features = { "default" = [ "std" ]; }; }; "want 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "want"; version = "0.3.0"; edition = "2018"; sha256 = "181b2zmwfq389x9n2g1n37cvcvvdand832zz6v8i1l8wrdlaks0w"; authors = [ "Sean McArthur " ]; dependencies = [ { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "try-lock"; packageId = "try-lock 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "wasi 0.9.0+wasi-snapshot-preview1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasi"; version = "0.9.0+wasi-snapshot-preview1"; edition = "2018"; sha256 = "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc"; authors = [ "The Cranelift Project Developers" ]; features = { "default" = [ "std" ]; "rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen"; version = "0.2.58"; edition = "2018"; sha256 = "0v31s91andxcj73w63g3fkbw3ld6cfsaa4135qcjna22vypyj1aj"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "serde"; packageId = "serde 1.0.104 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "serde_json"; packageId = "serde_json 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)"; optional = true; } { name = "wasm-bindgen-macro"; packageId = "wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "default" = [ "spans" "std" ]; "enable-interning" = [ "std" ]; "serde-serialize" = [ "serde" "serde_json" "std" ]; "spans" = [ "wasm-bindgen-macro/spans" ]; "strict-macro" = [ "wasm-bindgen-macro/strict-macro" ]; "xxx_debug_only_print_generated_code" = [ "wasm-bindgen-macro/xxx_debug_only_print_generated_code" ]; }; resolvedDefaultFeatures = [ "default" "serde" "serde-serialize" "serde_json" "spans" "std" ]; }; "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-backend"; version = "0.2.58"; edition = "2018"; sha256 = "0icskn0qlj30np6x6nbyl1i9dndckx0pczaq69dm42r92rcbkk8i"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "bumpalo"; packageId = "bumpalo 3.2.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; } { name = "wasm-bindgen-shared"; packageId = "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "extra-traits" = [ "syn/extra-traits" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-futures 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-futures"; version = "0.4.8"; edition = "2018"; sha256 = "1n9ma4kinr4w6r2sh4wm04my6p14k1vx3a4vdbn0vd187sgd9gcb"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "js-sys"; packageId = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "wasm-bindgen"; packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "web-sys"; packageId = "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (target."feature" == "atomics"); features = [ "MessageEvent" "Worker" ]; } ]; }; "wasm-bindgen-macro 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-macro"; version = "0.2.58"; edition = "2018"; sha256 = "1hwxw0nhi2n4izhjn2fvnrrn59xqjxs3ybkgzdv1b4p65ivr8h2p"; procMacro = true; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "wasm-bindgen-macro-support"; packageId = "wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "spans" = [ "wasm-bindgen-macro-support/spans" ]; "strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-macro-support 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-macro-support"; version = "0.2.58"; edition = "2018"; sha256 = "0s3n7v741i4wkzib41m126li40qlhqyirnxpigkypsi59wsk2l78"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "visit" ]; } { name = "wasm-bindgen-backend"; packageId = "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "wasm-bindgen-shared"; packageId = "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { "extra-traits" = [ "syn/extra-traits" ]; "spans" = [ "wasm-bindgen-backend/spans" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-shared 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-shared"; version = "0.2.58"; edition = "2018"; sha256 = "00cnbabf4k9bahb217vkilmjwqwzpwp112vlvgfw1x19r4gydrzm"; authors = [ "The wasm-bindgen Developers" ]; }; "wasm-bindgen-webidl 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "wasm-bindgen-webidl"; version = "0.2.58"; edition = "2018"; sha256 = "0pcpaw8w3xgfrg9y24ljrsl2bkidgdaaz3ka2bgk417wjc6jl0gg"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "anyhow"; packageId = "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "heck"; packageId = "heck 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "log"; packageId = "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "proc-macro2"; packageId = "proc-macro2 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "quote"; packageId = "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "syn"; packageId = "syn 1.0.14 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "full" ]; } { name = "wasm-bindgen-backend"; packageId = "wasm-bindgen-backend 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "weedle"; packageId = "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "web-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "web-sys"; version = "0.3.35"; edition = "2018"; sha256 = "0fzmxcyahy3ghl8lkjkchj9krmnr56shvbqgr7db3hm8dappryda"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "js-sys"; packageId = "js-sys 0.3.35 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "wasm-bindgen"; packageId = "wasm-bindgen 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "anyhow"; packageId = "anyhow 1.0.26 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "sourcefile"; packageId = "sourcefile 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)"; } { name = "wasm-bindgen-webidl"; packageId = "wasm-bindgen-webidl 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; features = { }; resolvedDefaultFeatures = [ "Headers" "MessageEvent" "Request" "RequestInit" "RequestMode" "Response" "Window" "Worker" ]; }; "weedle 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "weedle"; version = "0.10.0"; edition = "2015"; sha256 = "0r0i2kllvkn9jil6cjzxdi1zsc6p1gjyk751w8lyclaii1q3zd1v"; authors = [ "Sharad Chand " ]; dependencies = [ { name = "nom"; packageId = "nom 4.2.3 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "widestring 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "widestring"; version = "0.4.0"; edition = "2015"; sha256 = "1dhx6dndjsz1y7c9w06922412kdxyrrkqblvggm76mh8z17hxz7g"; authors = [ "Kathryn Long " ]; }; "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi"; version = "0.2.8"; edition = "2015"; sha256 = "0yh816lh6lf56dpsgxy189c2ai1z3j8mw9si6izqb6wsjkbcjz8n"; authors = [ "Peter Atashian " ]; }; "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi"; version = "0.3.8"; edition = "2015"; sha256 = "1ii9j9lzrhwri0902652awifzx9fpayimbp6hfhhc296xcg0k4w0"; authors = [ "Peter Atashian " ]; dependencies = [ { name = "winapi-i686-pc-windows-gnu"; packageId = "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (stdenv.hostPlatform.config == "i686-pc-windows-gnu"); } { name = "winapi-x86_64-pc-windows-gnu"; packageId = "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: (stdenv.hostPlatform.config == "x86_64-pc-windows-gnu"); } ]; features = { "debug" = [ "impl-debug" ]; }; resolvedDefaultFeatures = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "impl-debug" "impl-default" "lmcons" "minschannel" "minwinbase" "minwindef" "ntdef" "ntstatus" "processenv" "processthreadsapi" "profileapi" "schannel" "securitybaseapi" "sspi" "std" "sysinfoapi" "timezoneapi" "winbase" "wincon" "wincrypt" "winerror" "winnt" "winreg" "winsock2" "wow64apiset" "ws2def" "ws2ipdef" "ws2tcpip" ]; }; "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi-build"; version = "0.1.1"; edition = "2015"; sha256 = "1g4rqsgjky0a7530qajn2bbfcrl2v0zb39idgdws9b1l7gp5wc9d"; libName = "build"; authors = [ "Peter Atashian " ]; }; "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi-i686-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc"; authors = [ "Peter Atashian " ]; }; "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winapi-x86_64-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki"; authors = [ "Peter Atashian " ]; }; "winreg 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winreg"; version = "0.6.2"; edition = "2015"; sha256 = "1jdcqr6zmvwyrp87h48miasfdvv16gjsb60rc8dy2kqwb3mnv65j"; authors = [ "Igor Shaula " ]; dependencies = [ { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; features = [ "impl-default" "impl-debug" "minwindef" "minwinbase" "timezoneapi" "winerror" "winnt" "winreg" "handleapi" ]; } ]; features = { "serialization-serde" = [ "transactions" "serde" ]; "transactions" = [ "winapi/ktmw32" ]; }; }; "winutil 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "winutil"; version = "0.1.1"; edition = "2015"; sha256 = "0vkyl3fbbf05n5ph5yz8sfaccrk9x3qsr25560w6w68ldf5i7bvx"; authors = [ "Dave Lancaster " ]; dependencies = [ { name = "winapi"; packageId = "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)"; target = { target, features }: target."windows"; features = [ "wow64apiset" "processthreadsapi" "winbase" ]; } ]; }; "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "ws2_32-sys"; version = "0.2.1"; edition = "2015"; sha256 = "0ppscg5qfqaw0gzwv2a4nhn5bn01ff9iwn6ysqnzm4n8s3myz76m"; libName = "ws2_32"; authors = [ "Peter Atashian " ]; dependencies = [ { name = "winapi"; packageId = "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; buildDependencies = [ { name = "winapi-build"; packageId = "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; "yaml-rust 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = rec { crateName = "yaml-rust"; version = "0.4.3"; edition = "2015"; sha256 = "0ka3qhqc5lvk3hz14wmsj32jhmh44blcbfrx5hfxli2gg38kv4k5"; authors = [ "Yuheng Chen " ]; dependencies = [ { name = "linked-hash-map"; packageId = "linked-hash-map 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)"; } ]; }; }; # # crate2nix/default.nix (excerpt start) # /* Target (platform) data for conditional dependencies. This corresponds roughly to what buildRustCrate is setting. */ defaultTarget = { unix = true; windows = false; fuchsia = true; test = false; # This doesn't appear to be officially documented anywhere yet. # See https://github.com/rust-lang-nursery/rust-forge/issues/101. os = if stdenv.hostPlatform.isDarwin then "macos" else stdenv.hostPlatform.parsed.kernel.name; arch = stdenv.hostPlatform.parsed.cpu.name; family = "unix"; env = "gnu"; endian = if stdenv.hostPlatform.parsed.cpu.significantByte.name == "littleEndian" then "little" else "big"; pointer_width = toString stdenv.hostPlatform.parsed.cpu.bits; vendor = stdenv.hostPlatform.parsed.vendor.name; debug_assertions = false; }; /* Filters common temp files and build files. */ # TODO(pkolloch): Substitute with gitignore filter sourceFilter = name: type: let baseName = builtins.baseNameOf (builtins.toString name); in ! ( # Filter out git baseName == ".gitignore" || (type == "directory" && baseName == ".git") # Filter out build results || ( type == "directory" && ( baseName == "target" || baseName == "_site" || baseName == ".sass-cache" || baseName == ".jekyll-metadata" || baseName == "build-artifacts" ) ) # Filter out nix-build result symlinks || ( type == "symlink" && lib.hasPrefix "result" baseName ) # Filter out IDE config || ( type == "directory" && ( baseName == ".idea" || baseName == ".vscode" ) ) || lib.hasSuffix ".iml" baseName # Filter out nix build files || baseName == "Cargo.nix" # Filter out editor backup / swap files. || lib.hasSuffix "~" baseName || builtins.match "^\\.sw[a-z]$$" baseName != null || builtins.match "^\\..*\\.sw[a-z]$$" baseName != null || lib.hasSuffix ".tmp" baseName || lib.hasSuffix ".bak" baseName || baseName == "tests.nix" ); /* Returns a crate which depends on successful test execution of crate given as the second argument. */ crateWithTest = crate: testCrate: testCrateFlags: let # override the `crate` so that it will build and execute tests instead of # building the actual lib and bin targets We just have to pass `--test` # to rustc and it will do the right thing. We execute the tests and copy # their log and the test executables to $out for later inspection. test = let drv = testCrate.override ( _: { buildTests = true; } ); in pkgs.runCommand "run-tests-${testCrate.name}" { inherit testCrateFlags; } '' set -ex cd ${crate.src} for file in ${drv}/tests/*; do $file $testCrateFlags 2>&1 | tee -a $out done ''; in crate.overrideAttrs ( old: { checkPhase = '' test -e ${test} ''; passthru = (old.passthru or {}) // { inherit test; }; } ); /* A restricted overridable version of builtRustCratesWithFeatures. */ buildRustCrateWithFeatures = { packageId , features ? rootFeatures , crateOverrides ? defaultCrateOverrides , buildRustCrateFunc ? ( if crateOverrides == pkgs.defaultCrateOverrides then buildRustCrate else buildRustCrate.override { defaultCrateOverrides = crateOverrides; } ) , runTests ? false , testCrateFlags ? [] }: lib.makeOverridable ( { features, crateOverrides, runTests, testCrateFlags }: let builtRustCrates = builtRustCratesWithFeatures { inherit packageId features buildRustCrateFunc; runTests = false; }; builtTestRustCrates = builtRustCratesWithFeatures { inherit packageId features buildRustCrateFunc; runTests = true; }; drv = builtRustCrates.${packageId}; testDrv = builtTestRustCrates.${packageId}; in if runTests then crateWithTest drv testDrv testCrateFlags else drv ) { inherit features crateOverrides runTests testCrateFlags; }; /* Returns an attr set with packageId mapped to the result of buildRustCrateFunc for the corresponding crate. */ builtRustCratesWithFeatures = { packageId , features , crateConfigs ? crates , buildRustCrateFunc , runTests , target ? defaultTarget } @ args: assert (builtins.isAttrs crateConfigs); assert (builtins.isString packageId); assert (builtins.isList features); assert (builtins.isAttrs target); assert (builtins.isBool runTests); let rootPackageId = packageId; mergedFeatures = mergePackageFeatures ( args // { inherit rootPackageId; target = target // { test = runTests; }; } ); buildByPackageId = packageId: buildByPackageIdImpl packageId; # Memoize built packages so that reappearing packages are only built once. builtByPackageId = lib.mapAttrs (packageId: value: buildByPackageId packageId) crateConfigs; buildByPackageIdImpl = packageId: let features = mergedFeatures."${packageId}" or []; crateConfig' = crateConfigs."${packageId}"; crateConfig = builtins.removeAttrs crateConfig' [ "resolvedDefaultFeatures" "devDependencies" ]; devDependencies = lib.optionals (runTests && packageId == rootPackageId) (crateConfig'.devDependencies or []); dependencies = dependencyDerivations { inherit builtByPackageId features target; dependencies = (crateConfig.dependencies or []) ++ devDependencies; }; buildDependencies = dependencyDerivations { inherit builtByPackageId features target; dependencies = crateConfig.buildDependencies or []; }; dependenciesWithRenames = lib.filter (d: d ? "rename") ( (crateConfig.buildDependencies or []) ++ (crateConfig.dependencies or []) ++ devDependencies ); crateRenames = builtins.listToAttrs (map (d: { name = d.name; value = d.rename; }) dependenciesWithRenames); in buildRustCrateFunc ( crateConfig // { src = crateConfig.src or ( pkgs.fetchurl { name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz"; url = "https://crates.io/api/v1/crates/${crateConfig.crateName}/${crateConfig.version}/download"; sha256 = crateConfig.sha256; } ); inherit features dependencies buildDependencies crateRenames; } ); in builtByPackageId; /* Returns the actual derivations for the given dependencies. */ dependencyDerivations = { builtByPackageId , features , dependencies , target }: assert (builtins.isAttrs builtByPackageId); assert (builtins.isList features); assert (builtins.isList dependencies); assert (builtins.isAttrs target); let enabledDependencies = filterEnabledDependencies { inherit dependencies features target; }; depDerivation = dependency: builtByPackageId.${dependency.packageId}; in map depDerivation enabledDependencies; /* Returns a sanitized version of val with all values substituted that cannot be serialized as JSON. */ sanitizeForJson = val: if builtins.isAttrs val then lib.mapAttrs (n: v: sanitizeForJson v) val else if builtins.isList val then builtins.map sanitizeForJson val else if builtins.isFunction val then "function" else val; /* Returns various tools to debug a crate. */ debugCrate = { packageId, target }: assert (builtins.isString packageId); let debug = rec { # The built tree as passed to buildRustCrate. buildTree = buildRustCrateWithFeatures { buildRustCrateFunc = lib.id; inherit packageId; }; sanitizedBuildTree = sanitizeForJson buildTree; dependencyTree = sanitizeForJson ( buildRustCrateWithFeatures { buildRustCrateFunc = crate: { "01_crateName" = crate.crateName or false; "02_features" = crate.features or []; "03_dependencies" = crate.dependencies or []; }; inherit packageId; } ); mergedPackageFeatures = mergePackageFeatures { features = rootFeatures; inherit packageId target; }; diffedDefaultPackageFeatures = diffDefaultPackageFeatures { features = rootFeatures; inherit packageId; }; }; in { internal = debug; }; /* Returns differences between cargo default features and crate2nix default features. This is useful for verifying the feature resolution in crate2nix. */ diffDefaultPackageFeatures = { crateConfigs ? crates , packageId , target }: assert (builtins.isAttrs crateConfigs); let prefixValues = prefix: lib.mapAttrs (n: v: { "${prefix}" = v; }); mergedFeatures = prefixValues "crate2nix" (mergePackageFeatures { inherit crateConfigs packageId target; features = [ "default" ]; }); configs = prefixValues "cargo" crateConfigs; combined = lib.foldAttrs (a: b: a // b) {} [ mergedFeatures configs ]; onlyInCargo = builtins.attrNames (lib.filterAttrs (n: v: !(v ? "crate2nix") && (v ? "cargo")) combined); onlyInCrate2Nix = builtins.attrNames (lib.filterAttrs (n: v: (v ? "crate2nix") && !(v ? "cargo")) combined); differentFeatures = lib.filterAttrs ( n: v: (v ? "crate2nix") && (v ? "cargo") && (v.crate2nix.features or []) != (v."cargo".resolved_default_features or []) ) combined; in builtins.toJSON { inherit onlyInCargo onlyInCrate2Nix differentFeatures; }; /* Returns an attrset mapping packageId to the list of enabled features. If multiple paths to a dependency enable different features, the corresponding feature sets are merged. Features in rust are additive. */ mergePackageFeatures = { crateConfigs ? crates , packageId , rootPackageId ? packageId , features ? rootFeatures , dependencyPath ? [ crates.${packageId}.crateName ] , featuresByPackageId ? {} , target # Adds devDependencies to the crate with rootPackageId. , runTests ? false , ... } @ args: assert (builtins.isAttrs crateConfigs); assert (builtins.isString packageId); assert (builtins.isString rootPackageId); assert (builtins.isList features); assert (builtins.isList dependencyPath); assert (builtins.isAttrs featuresByPackageId); assert (builtins.isAttrs target); assert (builtins.isBool runTests); let crateConfig = crateConfigs."${packageId}" or (builtins.throw "Package not found: ${packageId}"); expandedFeatures = expandFeatures (crateConfig.features or {}) features; depWithResolvedFeatures = dependency: let packageId = dependency.packageId; features = dependencyFeatures expandedFeatures dependency; in { inherit packageId features; }; resolveDependencies = cache: path: dependencies: assert (builtins.isAttrs cache); assert (builtins.isList dependencies); let enabledDependencies = filterEnabledDependencies { inherit dependencies target; features = expandedFeatures; }; directDependencies = map depWithResolvedFeatures enabledDependencies; foldOverCache = op: lib.foldl op cache directDependencies; in foldOverCache ( cache: { packageId, features }: let cacheFeatures = cache.${packageId} or []; combinedFeatures = sortedUnique (cacheFeatures ++ features); in if cache ? ${packageId} && cache.${packageId} == combinedFeatures then cache else mergePackageFeatures { features = combinedFeatures; featuresByPackageId = cache; inherit crateConfigs packageId target runTests rootPackageId; } ); cacheWithSelf = let cacheFeatures = featuresByPackageId.${packageId} or []; combinedFeatures = sortedUnique (cacheFeatures ++ expandedFeatures); in featuresByPackageId // { "${packageId}" = combinedFeatures; }; cacheWithDependencies = resolveDependencies cacheWithSelf "dep" ( crateConfig.dependencies or [] ++ lib.optionals (runTests && packageId == rootPackageId) (crateConfig.devDependencies or []) ); cacheWithAll = resolveDependencies cacheWithDependencies "build" (crateConfig.buildDependencies or []); in cacheWithAll; /* Returns the enabled dependencies given the enabled features. */ filterEnabledDependencies = { dependencies, features, target }: assert (builtins.isList dependencies); assert (builtins.isList features); assert (builtins.isAttrs target); lib.filter ( dep: let targetFunc = dep.target or (features: true); in targetFunc { inherit features target; } && ( !(dep.optional or false) || builtins.any (doesFeatureEnableDependency dep) features ) ) dependencies; /* Returns whether the given feature should enable the given dependency. */ doesFeatureEnableDependency = { name, rename ? null, ... }: feature: let prefix = "${name}/"; len = builtins.stringLength prefix; startsWithPrefix = builtins.substring 0 len feature == prefix; in feature == name || (rename != null && rename == feature) || startsWithPrefix; /* Returns the expanded features for the given inputFeatures by applying the rules in featureMap. featureMap is an attribute set which maps feature names to lists of further feature names to enable in case this feature is selected. */ expandFeatures = featureMap: inputFeatures: assert (builtins.isAttrs featureMap); assert (builtins.isList inputFeatures); let expandFeature = feature: assert (builtins.isString feature); [ feature ] ++ (expandFeatures featureMap (featureMap."${feature}" or [])); outFeatures = builtins.concatMap expandFeature inputFeatures; in sortedUnique outFeatures; /* Returns the actual dependencies for the given dependency. features: The features of the crate that refers this dependency. */ dependencyFeatures = features: dependency: assert (builtins.isList features); assert (builtins.isAttrs dependency); let defaultOrNil = if dependency.usesDefaultFeatures or true then [ "default" ] else []; explicitFeatures = dependency.features or []; additionalDependencyFeatures = let dependencyPrefix = dependency.name + "/"; dependencyFeatures = builtins.filter (f: lib.hasPrefix dependencyPrefix f) features; in builtins.map (lib.removePrefix dependencyPrefix) dependencyFeatures; in defaultOrNil ++ explicitFeatures ++ additionalDependencyFeatures; /* Sorts and removes duplicates from a list of strings. */ sortedUnique = features: assert (builtins.isList features); assert (builtins.all builtins.isString features); let outFeaturesSet = lib.foldl (set: feature: set // { "${feature}" = 1; }) {} features; outFeaturesUnique = builtins.attrNames outFeaturesSet; in builtins.sort (a: b: a < b) outFeaturesUnique; deprecationWarning = message: value: if strictDeprecation then builtins.throw "strictDeprecation enabled, aborting: ${message}" else builtins.trace message value; # # crate2nix/default.nix (excerpt end) # }; }