# This file was @generated by crate2nix 0.12.0 with the command: # "generate" # See https://github.com/kolloch/crate2nix for more info. { nixpkgs ? , pkgs ? import nixpkgs { config = { }; } , lib ? pkgs.lib , stdenv ? pkgs.stdenv , buildRustCrateForPkgs ? pkgs: 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 # Used for conditional compilation based on CPU feature detection. , targetFeatures ? [ ] # Whether to perform release builds: longer compile times, faster binaries. , release ? true # Additional crate2nix configuration if it exists. , crateConfig ? if builtins.pathExists ./crate-config.nix then pkgs.callPackage ./crate-config.nix { } else { } }: rec { # # "public" attributes that we attempt to keep stable with new versions of crate2nix. # rootCrate = rec { packageId = "paroxysm"; # 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; }; }; # Refer your crate build derivation by name here. # You can override the features with # workspaceMembers."${crateName}".build.override { features = [ "default" "feature1" ... ]; }. workspaceMembers = { "paroxysm" = rec { packageId = "paroxysm"; build = internal.buildRustCrateWithFeatures { packageId = "paroxysm"; }; # Debug support which might change between releases. # File a bug if you depend on any for non-debug work! debug = internal.debugCrate { inherit packageId; }; }; }; # A derivation that joins the outputs of all workspace members together. allWorkspaceMembers = pkgs.symlinkJoin { name = "all-workspace-members"; paths = let members = builtins.attrValues workspaceMembers; in builtins.map (m: m.build) members; }; # # "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: # * `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 = { "addr2line" = rec { crateName = "addr2line"; version = "0.21.0"; edition = "2018"; sha256 = "1jx0k3iwyqr8klqbzk6kjvr496yd94aspis10vwsj5wy7gib4c4a"; dependencies = [ { name = "gimli"; packageId = "gimli"; usesDefaultFeatures = false; features = [ "read" ]; } ]; features = { "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "cpp_demangle" = [ "dep:cpp_demangle" ]; "default" = [ "rustc-demangle" "cpp_demangle" "std-object" "fallible-iterator" "smallvec" "memmap2" ]; "fallible-iterator" = [ "dep:fallible-iterator" ]; "memmap2" = [ "dep:memmap2" ]; "object" = [ "dep:object" ]; "rustc-demangle" = [ "dep:rustc-demangle" ]; "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "gimli/rustc-dep-of-std" ]; "smallvec" = [ "dep:smallvec" ]; "std" = [ "gimli/std" ]; "std-object" = [ "std" "object" "object/std" "object/compression" "gimli/endian-reader" ]; }; }; "adler" = rec { crateName = "adler"; version = "1.0.2"; edition = "2015"; sha256 = "1zim79cvzd5yrkzl3nyfx0avijwgk9fqv3yrscdy1cc79ih02qpj"; authors = [ "Jonas Schievink " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "aho-corasick" = rec { crateName = "aho-corasick"; version = "1.1.2"; edition = "2021"; sha256 = "1w510wnixvlgimkx1zjbvlxh6xps2vjgfqgwf5a6adlbjp5rv5mj"; libName = "aho_corasick"; authors = [ "Andrew Gallant " ]; dependencies = [ { name = "memchr"; packageId = "memchr"; optional = true; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" "perf-literal" ]; "logging" = [ "dep:log" ]; "perf-literal" = [ "dep:memchr" ]; "std" = [ "memchr?/std" ]; }; resolvedDefaultFeatures = [ "perf-literal" "std" ]; }; "android-tzdata" = rec { crateName = "android-tzdata"; version = "0.1.1"; edition = "2018"; sha256 = "1w7ynjxrfs97xg3qlcdns4kgfpwcdv824g611fq32cag4cdr96g9"; authors = [ "RumovZ" ]; }; "android_system_properties" = rec { crateName = "android_system_properties"; version = "0.1.5"; edition = "2018"; sha256 = "04b3wrz12837j7mdczqd95b732gw5q7q66cv4yn4646lvccp57l1"; authors = [ "Nicolas Silva " ]; dependencies = [ { name = "libc"; packageId = "libc"; } ]; }; "atty" = rec { crateName = "atty"; version = "0.2.14"; edition = "2015"; sha256 = "1s7yslcs6a28c5vz7jwj63lkfgyx8mx99fdirlhi9lbhhzhrpcyr"; authors = [ "softprops " ]; dependencies = [ { name = "hermit-abi"; packageId = "hermit-abi 0.1.19"; target = { target, features }: ("hermit" == target."os" or null); } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); } { name = "winapi"; packageId = "winapi 0.3.9"; target = { target, features }: (target."windows" or false); features = [ "consoleapi" "processenv" "minwinbase" "minwindef" "winbase" ]; } ]; }; "autocfg" = rec { crateName = "autocfg"; version = "1.1.0"; edition = "2015"; sha256 = "1ylp3cb47ylzabimazvbz9ms6ap784zhb6syaz6c1jqpmcmq0s6l"; authors = [ "Josh Stone " ]; }; "backtrace" = rec { crateName = "backtrace"; version = "0.3.69"; edition = "2018"; sha256 = "0dsq23dhw4pfndkx2nsa1ml2g31idm7ss7ljxp8d57avygivg290"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "addr2line"; packageId = "addr2line"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null)))); } { name = "cfg-if"; packageId = "cfg-if 1.0.0"; } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null)))); } { name = "miniz_oxide"; packageId = "miniz_oxide"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null)))); } { name = "object"; packageId = "object"; usesDefaultFeatures = false; target = { target, features }: (!((target."windows" or false) && ("msvc" == target."env" or null) && (!("uwp" == target."vendor" or null)))); features = [ "read_core" "elf" "macho" "pe" "unaligned" "archive" ]; } { name = "rustc-demangle"; packageId = "rustc-demangle"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } ]; features = { "cpp_demangle" = [ "dep:cpp_demangle" ]; "default" = [ "std" ]; "rustc-serialize" = [ "dep:rustc-serialize" ]; "serde" = [ "dep:serde" ]; "serialize-rustc" = [ "rustc-serialize" ]; "serialize-serde" = [ "serde" ]; "verify-winapi" = [ "winapi/dbghelp" "winapi/handleapi" "winapi/libloaderapi" "winapi/memoryapi" "winapi/minwindef" "winapi/processthreadsapi" "winapi/synchapi" "winapi/tlhelp32" "winapi/winbase" "winapi/winnt" ]; "winapi" = [ "dep:winapi" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "bitflags 1.3.2" = rec { crateName = "bitflags"; version = "1.3.2"; edition = "2018"; sha256 = "12ki6w8gn1ldq7yz9y680llwk5gmrhrzszaa17g1sbrw2r2qvwxy"; authors = [ "The Rust Project Developers" ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "bitflags 2.4.2" = rec { crateName = "bitflags"; version = "2.4.2"; edition = "2021"; sha256 = "1pqd142hyqlzr7p9djxq2ff0jx07a2sb2xp9lhw69cbf80s0jmzd"; authors = [ "The Rust Project Developers" ]; features = { "arbitrary" = [ "dep:arbitrary" ]; "bytemuck" = [ "dep:bytemuck" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "bufstream" = rec { crateName = "bufstream"; version = "0.1.4"; edition = "2015"; sha256 = "1j7f52rv73hd1crzrrfb9dr50ccmi3hb1ybd6s5dyg6jmllqkqs0"; authors = [ "The Rust Project Developers" ]; features = { "futures" = [ "dep:futures" ]; "tokio" = [ "futures" "tokio-io" ]; "tokio-io" = [ "dep:tokio-io" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "bumpalo" = rec { crateName = "bumpalo"; version = "3.15.4"; edition = "2021"; sha256 = "1ahfhgw2lzlgv5j0h07z8mkdnk4kvl2grf8dkb32dm4zsjfrpxkz"; authors = [ "Nick Fitzgerald " ]; features = { "allocator-api2" = [ "dep:allocator-api2" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "byteorder" = rec { crateName = "byteorder"; version = "1.5.0"; edition = "2021"; sha256 = "0jzncxyf404mwqdbspihyzpkndfgda450l0893pz5xj685cg5l0z"; authors = [ "Andrew Gallant " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "bytes" = rec { crateName = "bytes"; version = "0.4.12"; edition = "2015"; sha256 = "0768a55q2fsqdjsvcv98ndg9dq7w2g44dvq1avhwpxrdzbydyvr0"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "byteorder"; packageId = "byteorder"; } { name = "iovec"; packageId = "iovec"; } ]; features = { "either" = [ "dep:either" ]; "i128" = [ "byteorder/i128" ]; "serde" = [ "dep:serde" ]; }; }; "cc" = rec { crateName = "cc"; version = "1.0.90"; edition = "2018"; sha256 = "1xg1bqnq50dpf6g1hl90caxgz4afnf74pxa426gh7wxch9561mlc"; authors = [ "Alex Crichton " ]; features = { "jobserver" = [ "dep:jobserver" ]; "libc" = [ "dep:libc" ]; "parallel" = [ "libc" "jobserver" ]; }; }; "cfg-if 0.1.10" = rec { crateName = "cfg-if"; version = "0.1.10"; edition = "2018"; sha256 = "08h80ihs74jcyp24cd75wwabygbbdgl05k6p5dmq8akbr78vv1a7"; authors = [ "Alex Crichton " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "cfg-if 1.0.0" = rec { crateName = "cfg-if"; version = "1.0.0"; edition = "2018"; sha256 = "1za0vb97n4brpzpv8lsbnzmq5r8f2b0cpqqr0sy8h5bn751xxwds"; authors = [ "Alex Crichton " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "chrono" = rec { crateName = "chrono"; version = "0.4.35"; edition = "2021"; sha256 = "16k3caxzip1ql827pz5rj7aqfqy7yhpxyxzb5wqkj2mwvh1mkbwf"; dependencies = [ { name = "android-tzdata"; packageId = "android-tzdata"; optional = true; target = { target, features }: ("android" == target."os" or null); } { name = "iana-time-zone"; packageId = "iana-time-zone"; optional = true; target = { target, features }: (target."unix" or false); features = [ "fallback" ]; } { name = "js-sys"; packageId = "js-sys"; optional = true; target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null)))); } { name = "num-traits"; packageId = "num-traits 0.2.18"; usesDefaultFeatures = false; } { name = "wasm-bindgen"; packageId = "wasm-bindgen"; optional = true; target = { target, features }: (("wasm32" == target."arch" or null) && (!(("emscripten" == target."os" or null) || ("wasi" == target."os" or null)))); } { name = "windows-targets"; packageId = "windows-targets 0.52.4"; optional = true; target = { target, features }: (target."windows" or false); } ]; features = { "android-tzdata" = [ "dep:android-tzdata" ]; "arbitrary" = [ "dep:arbitrary" ]; "clock" = [ "winapi" "iana-time-zone" "android-tzdata" "now" ]; "default" = [ "clock" "std" "oldtime" "wasmbind" ]; "iana-time-zone" = [ "dep:iana-time-zone" ]; "js-sys" = [ "dep:js-sys" ]; "now" = [ "std" ]; "pure-rust-locales" = [ "dep:pure-rust-locales" ]; "rkyv" = [ "dep:rkyv" "rkyv/size_32" ]; "rkyv-16" = [ "dep:rkyv" "rkyv?/size_16" ]; "rkyv-32" = [ "dep:rkyv" "rkyv?/size_32" ]; "rkyv-64" = [ "dep:rkyv" "rkyv?/size_64" ]; "rkyv-validation" = [ "rkyv?/validation" ]; "rustc-serialize" = [ "dep:rustc-serialize" ]; "serde" = [ "dep:serde" ]; "std" = [ "alloc" ]; "unstable-locales" = [ "pure-rust-locales" ]; "wasm-bindgen" = [ "dep:wasm-bindgen" ]; "wasmbind" = [ "wasm-bindgen" "js-sys" ]; "winapi" = [ "windows-targets" ]; "windows-targets" = [ "dep:windows-targets" ]; }; resolvedDefaultFeatures = [ "alloc" "android-tzdata" "clock" "default" "iana-time-zone" "js-sys" "now" "oldtime" "std" "wasm-bindgen" "wasmbind" "winapi" "windows-targets" ]; }; "cloudabi" = 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.3.2"; optional = true; } ]; features = { "bitflags" = [ "dep:bitflags" ]; "default" = [ "bitflags" ]; }; resolvedDefaultFeatures = [ "bitflags" "default" ]; }; "config" = rec { crateName = "config"; version = "0.9.3"; edition = "2015"; sha256 = "1rppjv8q5ffdyir6rawgizyqrm5yg9j8xlg7hrdgmcv2xmw7s47r"; authors = [ "Ryan Leckey " ]; dependencies = [ { name = "lazy_static"; packageId = "lazy_static 1.4.0"; } { name = "nom"; packageId = "nom"; } { name = "rust-ini"; packageId = "rust-ini"; optional = true; } { name = "serde"; packageId = "serde 1.0.197"; } { name = "serde-hjson"; packageId = "serde-hjson"; optional = true; } { name = "serde_json"; packageId = "serde_json"; optional = true; } { name = "toml"; packageId = "toml"; optional = true; } { name = "yaml-rust"; packageId = "yaml-rust"; optional = true; } ]; features = { "default" = [ "toml" "json" "yaml" "hjson" "ini" ]; "hjson" = [ "serde-hjson" ]; "ini" = [ "rust-ini" ]; "json" = [ "serde_json" ]; "rust-ini" = [ "dep:rust-ini" ]; "serde-hjson" = [ "dep:serde-hjson" ]; "serde_json" = [ "dep:serde_json" ]; "toml" = [ "dep:toml" ]; "yaml" = [ "yaml-rust" ]; "yaml-rust" = [ "dep:yaml-rust" ]; }; resolvedDefaultFeatures = [ "default" "hjson" "ini" "json" "rust-ini" "serde-hjson" "serde_json" "toml" "yaml" "yaml-rust" ]; }; "core-foundation" = rec { crateName = "core-foundation"; version = "0.9.4"; edition = "2018"; sha256 = "13zvbbj07yk3b61b8fhwfzhy35535a583irf23vlcg59j7h9bqci"; authors = [ "The Servo Project Developers" ]; dependencies = [ { name = "core-foundation-sys"; packageId = "core-foundation-sys"; usesDefaultFeatures = false; } { name = "libc"; packageId = "libc"; } ]; features = { "chrono" = [ "dep:chrono" ]; "default" = [ "link" ]; "link" = [ "core-foundation-sys/link" ]; "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" ]; "uuid" = [ "dep:uuid" ]; "with-chrono" = [ "chrono" ]; "with-uuid" = [ "uuid" ]; }; resolvedDefaultFeatures = [ "default" "link" ]; }; "core-foundation-sys" = rec { crateName = "core-foundation-sys"; version = "0.8.6"; edition = "2018"; sha256 = "13w6sdf06r0hn7bx2b45zxsg1mm2phz34jikm6xc5qrbr6djpsh6"; authors = [ "The Servo Project Developers" ]; features = { "default" = [ "link" ]; }; resolvedDefaultFeatures = [ "default" "link" ]; }; "crimp" = rec { crateName = "crimp"; version = "4087.0.0"; edition = "2015"; # We can't filter paths with references in Nix 2.4 # See https://github.com/NixOS/nix/issues/5410 src = if ((lib.versionOlder builtins.nixVersion "2.4pre20211007") || (lib.versionOlder "2.5" builtins.nixVersion)) then lib.cleanSourceWith { filter = sourceFilter; src = ../../net/crimp; } else ../../net/crimp; authors = [ "Vincent Ambo " ]; dependencies = [ { name = "curl"; packageId = "curl"; } { name = "serde"; packageId = "serde 1.0.197"; optional = true; } { name = "serde_json"; packageId = "serde_json"; optional = true; } ]; features = { "default" = [ "json" ]; "json" = [ "serde" "serde_json" ]; "serde" = [ "dep:serde" ]; "serde_json" = [ "dep:serde_json" ]; }; resolvedDefaultFeatures = [ "default" "json" "serde" "serde_json" ]; }; "crossbeam-deque" = rec { crateName = "crossbeam-deque"; version = "0.7.4"; edition = "2015"; sha256 = "1v99xcdjk4zixvxnq7pssip670mlyhw1ma3qc88ca11jxnfz43y2"; authors = [ "The Crossbeam Project Developers" ]; dependencies = [ { name = "crossbeam-epoch"; packageId = "crossbeam-epoch"; } { name = "crossbeam-utils"; packageId = "crossbeam-utils"; } { name = "maybe-uninit"; packageId = "maybe-uninit"; } ]; }; "crossbeam-epoch" = rec { crateName = "crossbeam-epoch"; version = "0.8.2"; edition = "2015"; sha256 = "1knsf0zz7rgzxn0nwz5gajjcrivxpw3zrdcp946gdhdgr9sd53h5"; authors = [ "The Crossbeam Project Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10"; } { name = "crossbeam-utils"; packageId = "crossbeam-utils"; usesDefaultFeatures = false; } { name = "lazy_static"; packageId = "lazy_static 1.4.0"; optional = true; } { name = "maybe-uninit"; packageId = "maybe-uninit"; } { name = "memoffset"; packageId = "memoffset"; } { name = "scopeguard"; packageId = "scopeguard"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "alloc" = [ "crossbeam-utils/alloc" ]; "default" = [ "std" ]; "lazy_static" = [ "dep:lazy_static" ]; "nightly" = [ "crossbeam-utils/nightly" ]; "std" = [ "crossbeam-utils/std" "lazy_static" ]; }; resolvedDefaultFeatures = [ "default" "lazy_static" "std" ]; }; "crossbeam-queue" = rec { crateName = "crossbeam-queue"; version = "0.2.3"; edition = "2015"; sha256 = "0w15z68nz3ac4f2s4djhwha8vmlwsh9dlfrmsl4x84y2ah5acjvp"; authors = [ "The Crossbeam Project Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10"; } { name = "crossbeam-utils"; packageId = "crossbeam-utils"; usesDefaultFeatures = false; } { name = "maybe-uninit"; packageId = "maybe-uninit"; } ]; features = { "alloc" = [ "crossbeam-utils/alloc" ]; "default" = [ "std" ]; "std" = [ "crossbeam-utils/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "crossbeam-utils" = rec { crateName = "crossbeam-utils"; version = "0.7.2"; edition = "2015"; sha256 = "1a31wbrda1320gj2a6az1lin2d34xfc3xf88da4c17qy5lxcgiy3"; authors = [ "The Crossbeam Project Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0"; optional = true; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "default" = [ "std" ]; "lazy_static" = [ "dep:lazy_static" ]; "std" = [ "lazy_static" ]; }; resolvedDefaultFeatures = [ "default" "lazy_static" "std" ]; }; "curl" = rec { crateName = "curl"; version = "0.4.46"; edition = "2018"; sha256 = "1dk7xi1fv57ak5wsgzig702czv3ssrgyk120b7qhy2dsdvfn288y"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "curl-sys"; packageId = "curl-sys"; usesDefaultFeatures = false; } { name = "libc"; packageId = "libc"; } { name = "openssl-probe"; packageId = "openssl-probe"; optional = true; target = { target, features }: ((target."unix" or false) && (!("macos" == target."os" or null))); } { name = "openssl-sys"; packageId = "openssl-sys"; optional = true; target = { target, features }: ((target."unix" or false) && (!("macos" == target."os" or null))); } { name = "schannel"; packageId = "schannel"; target = { target, features }: ("msvc" == target."env" or null); } { name = "socket2"; packageId = "socket2"; } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: ("msvc" == target."env" or null); features = [ "Win32_Foundation" "Win32_System_LibraryLoader" "Win32_Security_Cryptography" ]; } ]; features = { "default" = [ "ssl" ]; "force-system-lib-on-osx" = [ "curl-sys/force-system-lib-on-osx" ]; "http2" = [ "curl-sys/http2" ]; "mesalink" = [ "curl-sys/mesalink" ]; "ntlm" = [ "curl-sys/ntlm" ]; "openssl-probe" = [ "dep:openssl-probe" ]; "openssl-sys" = [ "dep:openssl-sys" ]; "poll_7_68_0" = [ "curl-sys/poll_7_68_0" ]; "protocol-ftp" = [ "curl-sys/protocol-ftp" ]; "rustls" = [ "curl-sys/rustls" ]; "spnego" = [ "curl-sys/spnego" ]; "ssl" = [ "openssl-sys" "openssl-probe" "curl-sys/ssl" ]; "static-curl" = [ "curl-sys/static-curl" ]; "static-ssl" = [ "curl-sys/static-ssl" ]; "upkeep_7_62_0" = [ "curl-sys/upkeep_7_62_0" ]; "windows-static-ssl" = [ "static-curl" "curl-sys/windows-static-ssl" ]; "zlib-ng-compat" = [ "curl-sys/zlib-ng-compat" "static-curl" ]; }; resolvedDefaultFeatures = [ "default" "openssl-probe" "openssl-sys" "ssl" ]; }; "curl-sys" = rec { crateName = "curl-sys"; version = "0.4.72+curl-8.6.0"; edition = "2018"; links = "curl"; sha256 = "1sn97cah732ldcwkw5knm6kh57hx0gfxqmniiwgd2iy42j1xrjr9"; libName = "curl_sys"; libPath = "lib.rs"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "libc"; packageId = "libc"; } { name = "libz-sys"; packageId = "libz-sys"; usesDefaultFeatures = false; features = [ "libc" ]; } { name = "openssl-sys"; packageId = "openssl-sys"; optional = true; target = { target, features }: ((target."unix" or false) && (!("macos" == target."os" or null))); } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Networking_WinSock" ]; } ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } { name = "pkg-config"; packageId = "pkg-config"; } { name = "vcpkg"; packageId = "vcpkg"; target = { target, features }: ("msvc" == target."env" or null); } ]; features = { "default" = [ "ssl" ]; "http2" = [ "libnghttp2-sys" ]; "libnghttp2-sys" = [ "dep:libnghttp2-sys" ]; "openssl-sys" = [ "dep:openssl-sys" ]; "rustls" = [ "rustls-ffi" ]; "rustls-ffi" = [ "dep:rustls-ffi" ]; "ssl" = [ "openssl-sys" ]; "static-ssl" = [ "openssl-sys/vendored" ]; "zlib-ng-compat" = [ "libz-sys/zlib-ng" "static-curl" ]; }; resolvedDefaultFeatures = [ "openssl-sys" "ssl" ]; }; "diesel" = rec { crateName = "diesel"; version = "1.4.8"; edition = "2015"; sha256 = "0kcfkfhsv5yv3ksj440ajgic930359i2bqi77ss4dm5pyvn3b0dj"; authors = [ "Sean Griffin " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; optional = true; } { name = "byteorder"; packageId = "byteorder"; } { name = "chrono"; packageId = "chrono"; optional = true; } { name = "diesel_derives"; packageId = "diesel_derives"; } { name = "pq-sys"; packageId = "pq-sys"; optional = true; } { name = "r2d2"; packageId = "r2d2"; optional = true; } ]; features = { "128-column-tables" = [ "64-column-tables" ]; "64-column-tables" = [ "32-column-tables" ]; "bigdecimal" = [ "dep:bigdecimal" ]; "bitflags" = [ "dep:bitflags" ]; "chrono" = [ "dep:chrono" ]; "default" = [ "with-deprecated" "32-column-tables" ]; "deprecated-time" = [ "time" ]; "extras" = [ "chrono" "serde_json" "uuid" "deprecated-time" "network-address" "numeric" "r2d2" ]; "huge-tables" = [ "64-column-tables" ]; "ipnetwork" = [ "dep:ipnetwork" ]; "large-tables" = [ "32-column-tables" ]; "libc" = [ "dep:libc" ]; "libsqlite3-sys" = [ "dep:libsqlite3-sys" ]; "mysql" = [ "mysqlclient-sys" "url" "diesel_derives/mysql" ]; "mysqlclient-sys" = [ "dep:mysqlclient-sys" ]; "network-address" = [ "ipnetwork" "libc" ]; "num-bigint" = [ "dep:num-bigint" ]; "num-integer" = [ "dep:num-integer" ]; "num-traits" = [ "dep:num-traits" ]; "numeric" = [ "num-bigint" "bigdecimal" "num-traits" "num-integer" ]; "postgres" = [ "pq-sys" "bitflags" "diesel_derives/postgres" ]; "pq-sys" = [ "dep:pq-sys" ]; "quickcheck" = [ "dep:quickcheck" ]; "r2d2" = [ "dep:r2d2" ]; "serde_json" = [ "dep:serde_json" ]; "sqlite" = [ "libsqlite3-sys" "diesel_derives/sqlite" ]; "time" = [ "dep:time" ]; "unstable" = [ "diesel_derives/nightly" ]; "url" = [ "dep:url" ]; "uuid" = [ "dep:uuid" ]; "uuidv07" = [ "dep:uuidv07" ]; "x128-column-tables" = [ "128-column-tables" ]; "x32-column-tables" = [ "32-column-tables" ]; "x64-column-tables" = [ "64-column-tables" ]; }; resolvedDefaultFeatures = [ "32-column-tables" "bitflags" "chrono" "default" "postgres" "pq-sys" "r2d2" "with-deprecated" ]; }; "diesel_derives" = rec { crateName = "diesel_derives"; version = "1.4.1"; edition = "2015"; sha256 = "1lsq133fwk0zj8xvxhdxqgg0xs31zf3abnwdyshaf0ldca7hkxa5"; procMacro = true; authors = [ "Sean Griffin " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 1.0.109"; features = [ "full" "fold" ]; } ]; features = { "nightly" = [ "proc-macro2/nightly" ]; }; resolvedDefaultFeatures = [ "default" "postgres" ]; }; "encoding" = rec { crateName = "encoding"; version = "0.2.33"; edition = "2015"; sha256 = "1v1ndmkarh9z3n5hk53da4z56hgk9wa5kcsm7cnx345raqw983bb"; authors = [ "Kang Seonghoon " ]; dependencies = [ { name = "encoding-index-japanese"; packageId = "encoding-index-japanese"; } { name = "encoding-index-korean"; packageId = "encoding-index-korean"; } { name = "encoding-index-simpchinese"; packageId = "encoding-index-simpchinese"; } { name = "encoding-index-singlebyte"; packageId = "encoding-index-singlebyte"; } { name = "encoding-index-tradchinese"; packageId = "encoding-index-tradchinese"; } ]; }; "encoding-index-japanese" = rec { crateName = "encoding-index-japanese"; version = "1.20141219.5"; edition = "2015"; sha256 = "148c1lmd640p1d7fzk0nv7892mbyavvwddgqvcsm78798bzv5s04"; libName = "encoding_index_japanese"; libPath = "lib.rs"; authors = [ "Kang Seonghoon " ]; dependencies = [ { name = "encoding_index_tests"; packageId = "encoding_index_tests"; } ]; }; "encoding-index-korean" = rec { crateName = "encoding-index-korean"; version = "1.20141219.5"; edition = "2015"; sha256 = "10cxabp5ppygbq4y6y680856zl9zjvq7ahpiw8zj3fmwwsw3zhsd"; libName = "encoding_index_korean"; libPath = "lib.rs"; authors = [ "Kang Seonghoon " ]; dependencies = [ { name = "encoding_index_tests"; packageId = "encoding_index_tests"; } ]; }; "encoding-index-simpchinese" = rec { crateName = "encoding-index-simpchinese"; version = "1.20141219.5"; edition = "2015"; sha256 = "1xria2i7mc5dqdrpqxasdbxv1qx46jjbm53if3y1i4cvj2a72ynq"; libName = "encoding_index_simpchinese"; libPath = "lib.rs"; authors = [ "Kang Seonghoon " ]; dependencies = [ { name = "encoding_index_tests"; packageId = "encoding_index_tests"; } ]; }; "encoding-index-singlebyte" = rec { crateName = "encoding-index-singlebyte"; version = "1.20141219.5"; edition = "2015"; sha256 = "0jp85bz2pprzvg9m95w4q0vibh67b6w3bx35lafay95jzyndal9k"; libName = "encoding_index_singlebyte"; libPath = "lib.rs"; authors = [ "Kang Seonghoon " ]; dependencies = [ { name = "encoding_index_tests"; packageId = "encoding_index_tests"; } ]; }; "encoding-index-tradchinese" = rec { crateName = "encoding-index-tradchinese"; version = "1.20141219.5"; edition = "2015"; sha256 = "060ci4iz6xfvzk38syfbjvs7pix5hch3mvxkksswmqwcd3aj03px"; libName = "encoding_index_tradchinese"; libPath = "lib.rs"; authors = [ "Kang Seonghoon " ]; dependencies = [ { name = "encoding_index_tests"; packageId = "encoding_index_tests"; } ]; }; "encoding_index_tests" = rec { crateName = "encoding_index_tests"; version = "0.1.4"; edition = "2015"; sha256 = "0s85y091gl17ixass49bzaivng7w8p82p6nyvz2r3my9w4mxhim2"; libPath = "index_tests.rs"; authors = [ "Kang Seonghoon " ]; }; "env_logger" = rec { crateName = "env_logger"; version = "0.7.1"; edition = "2018"; sha256 = "0djx8h8xfib43g5w94r1m1mkky5spcw4wblzgnhiyg5vnfxknls4"; authors = [ "The Rust Project Developers" ]; dependencies = [ { name = "atty"; packageId = "atty"; optional = true; } { name = "humantime"; packageId = "humantime"; optional = true; } { name = "log"; packageId = "log"; features = [ "std" ]; } { name = "regex"; packageId = "regex"; optional = true; } { name = "termcolor"; packageId = "termcolor"; optional = true; } ]; features = { "atty" = [ "dep:atty" ]; "default" = [ "termcolor" "atty" "humantime" "regex" ]; "humantime" = [ "dep:humantime" ]; "regex" = [ "dep:regex" ]; "termcolor" = [ "dep:termcolor" ]; }; resolvedDefaultFeatures = [ "atty" "default" "humantime" "regex" "termcolor" ]; }; "errno" = rec { crateName = "errno"; version = "0.3.8"; edition = "2018"; sha256 = "0ia28ylfsp36i27g1qih875cyyy4by2grf80ki8vhgh6vinf8n52"; authors = [ "Chris Wong " ]; dependencies = [ { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: ("hermit" == target."os" or null); } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: ("wasi" == target."os" or null); } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_System_Diagnostics_Debug" ]; } ]; features = { "default" = [ "std" ]; "std" = [ "libc/std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "failure" = rec { crateName = "failure"; version = "0.1.8"; edition = "2015"; sha256 = "11jg1wmbkijrs6bk9fqnbrm9zf0850whnqpgnxyswbn0dk8rnbnk"; authors = [ "Without Boats " ]; dependencies = [ { name = "backtrace"; packageId = "backtrace"; optional = true; } { name = "failure_derive"; packageId = "failure_derive"; optional = true; } ]; features = { "backtrace" = [ "dep:backtrace" ]; "default" = [ "std" "derive" ]; "derive" = [ "failure_derive" ]; "failure_derive" = [ "dep:failure_derive" ]; "std" = [ "backtrace" ]; }; resolvedDefaultFeatures = [ "backtrace" "default" "derive" "failure_derive" "std" ]; }; "failure_derive" = rec { crateName = "failure_derive"; version = "0.1.8"; edition = "2015"; sha256 = "1936adqqk080439kx2bjf1bds7h89sg6wcif4jw0syndcv3s6kda"; procMacro = true; authors = [ "Without Boats " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 1.0.109"; } { name = "synstructure"; packageId = "synstructure"; } ]; features = { }; }; "fastrand" = rec { crateName = "fastrand"; version = "2.0.1"; edition = "2018"; sha256 = "19flpv5zbzpf0rk4x77z4zf25in0brg8l7m304d3yrf47qvwxjr5"; authors = [ "Stjepan Glavina " ]; features = { "default" = [ "std" ]; "getrandom" = [ "dep:getrandom" ]; "js" = [ "std" "getrandom" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "fnv" = rec { crateName = "fnv"; version = "1.0.7"; edition = "2015"; sha256 = "1hc2mcqha06aibcaza94vbi81j6pr9a1bbxrxjfhc91zin8yr7iz"; libPath = "lib.rs"; authors = [ "Alex Crichton " ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "foreign-types" = rec { crateName = "foreign-types"; version = "0.3.2"; edition = "2015"; sha256 = "1cgk0vyd7r45cj769jym4a6s7vwshvd0z4bqrb92q1fwibmkkwzn"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "foreign-types-shared"; packageId = "foreign-types-shared"; } ]; }; "foreign-types-shared" = rec { crateName = "foreign-types-shared"; version = "0.1.1"; edition = "2015"; sha256 = "0jxgzd04ra4imjv8jgkmdq59kj8fsz6w4zxsbmlai34h26225c00"; authors = [ "Steven Fackler " ]; }; "fuchsia-zircon" = rec { crateName = "fuchsia-zircon"; version = "0.3.3"; edition = "2015"; sha256 = "10jxc5ks1x06gpd0xg51kcjrxr35nj6qhx2zlc5n7bmskv3675rf"; authors = [ "Raph Levien " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "fuchsia-zircon-sys"; packageId = "fuchsia-zircon-sys"; } ]; }; "fuchsia-zircon-sys" = rec { crateName = "fuchsia-zircon-sys"; version = "0.3.3"; edition = "2015"; sha256 = "19zp2085qsyq2bh1gvcxq1lb8w6v6jj9kbdkhpdjrl95fypakjix"; authors = [ "Raph Levien " ]; }; "futures" = rec { crateName = "futures"; version = "0.1.31"; edition = "2015"; sha256 = "0y46qbmhi37dqkch8dlfq5aninqpzqgrr98awkb3rn4fxww1lirs"; authors = [ "Alex Crichton " ]; features = { "default" = [ "use_std" "with-deprecated" ]; }; resolvedDefaultFeatures = [ "default" "use_std" "with-deprecated" ]; }; "getrandom" = rec { crateName = "getrandom"; version = "0.1.16"; edition = "2018"; sha256 = "1kjzmz60qx9mn615ks1akjbf36n3lkv27zfwbcam0fzmj56wphwg"; authors = [ "The Rand Project Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 1.0.0"; } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); } { name = "wasi"; packageId = "wasi"; target = { target, features }: ("wasi" == target."os" or null); } ]; features = { "bindgen" = [ "dep:bindgen" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "js-sys" = [ "dep:js-sys" ]; "log" = [ "dep:log" ]; "rustc-dep-of-std" = [ "compiler_builtins" "core" ]; "stdweb" = [ "dep:stdweb" ]; "test-in-browser" = [ "wasm-bindgen" ]; "wasm-bindgen" = [ "bindgen" "js-sys" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "gimli" = rec { crateName = "gimli"; version = "0.28.1"; edition = "2018"; sha256 = "0lv23wc8rxvmjia3mcxc6hj9vkqnv1bqq0h8nzjcgf71mrxx6wa2"; features = { "default" = [ "read-all" "write" ]; "endian-reader" = [ "read" "dep:stable_deref_trait" ]; "fallible-iterator" = [ "dep:fallible-iterator" ]; "read" = [ "read-core" ]; "read-all" = [ "read" "std" "fallible-iterator" "endian-reader" ]; "rustc-dep-of-std" = [ "dep:core" "dep:alloc" "dep:compiler_builtins" ]; "std" = [ "fallible-iterator?/std" "stable_deref_trait?/std" ]; "write" = [ "dep:indexmap" ]; }; resolvedDefaultFeatures = [ "read" "read-core" ]; }; "hermit-abi 0.1.19" = rec { crateName = "hermit-abi"; version = "0.1.19"; edition = "2018"; sha256 = "0cxcm8093nf5fyn114w8vxbrbcyvv91d4015rdnlgfll7cs6gd32"; authors = [ "Stefan Lankes" ]; dependencies = [ { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; } ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins/rustc-dep-of-std" "libc/rustc-dep-of-std" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "hermit-abi 0.3.9" = rec { crateName = "hermit-abi"; version = "0.3.9"; edition = "2021"; sha256 = "092hxjbjnq5fmz66grd9plxd0sh6ssg5fhgwwwqbrzgzkjwdycfj"; authors = [ "Stefan Lankes" ]; features = { "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins/rustc-dep-of-std" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "humantime" = rec { crateName = "humantime"; version = "1.3.0"; edition = "2015"; sha256 = "0krwgbf35pd46xvkqg14j070vircsndabahahlv3rwhflpy4q06z"; authors = [ "Paul Colomiets " ]; dependencies = [ { name = "quick-error"; packageId = "quick-error"; } ]; }; "iana-time-zone" = rec { crateName = "iana-time-zone"; version = "0.1.60"; edition = "2018"; sha256 = "0hdid5xz3jznm04lysjm3vi93h3c523w0hcc3xba47jl3ddbpzz7"; authors = [ "Andrew Straw " "René Kijewski " "Ryan Lopopolo " ]; dependencies = [ { name = "android_system_properties"; packageId = "android_system_properties"; target = { target, features }: ("android" == target."os" or null); } { name = "core-foundation-sys"; packageId = "core-foundation-sys"; target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null)); } { name = "iana-time-zone-haiku"; packageId = "iana-time-zone-haiku"; target = { target, features }: ("haiku" == target."os" or null); } { name = "js-sys"; packageId = "js-sys"; target = { target, features }: ("wasm32" == target."arch" or null); } { name = "wasm-bindgen"; packageId = "wasm-bindgen"; target = { target, features }: ("wasm32" == target."arch" or null); } { name = "windows-core"; packageId = "windows-core"; target = { target, features }: ("windows" == target."os" or null); } ]; features = { }; resolvedDefaultFeatures = [ "fallback" ]; }; "iana-time-zone-haiku" = rec { crateName = "iana-time-zone-haiku"; version = "0.1.2"; edition = "2018"; sha256 = "17r6jmj31chn7xs9698r122mapq85mfnv98bb4pg6spm0si2f67k"; authors = [ "René Kijewski " ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } ]; }; "iovec" = rec { crateName = "iovec"; version = "0.1.4"; edition = "2015"; sha256 = "0ph73qygwx8i0mblrf110cj59l00gkmsgrpzz1rm85syz5pymcxj"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } ]; }; "irc" = rec { crateName = "irc"; version = "0.13.6"; edition = "2015"; sha256 = "0rmlaaay5gw46gxqg27lnrrrfy73pm3y6rs4hxxwfpg9k9n6ddwf"; authors = [ "Aaron Weiss " ]; dependencies = [ { name = "bufstream"; packageId = "bufstream"; } { name = "bytes"; packageId = "bytes"; } { name = "chrono"; packageId = "chrono"; } { name = "encoding"; packageId = "encoding"; } { name = "failure"; packageId = "failure"; } { name = "futures"; packageId = "futures"; } { name = "log"; packageId = "log"; } { name = "native-tls"; packageId = "native-tls"; } { name = "serde"; packageId = "serde 1.0.197"; } { name = "serde_derive"; packageId = "serde_derive"; } { name = "tokio-codec"; packageId = "tokio-codec"; } { name = "tokio-core"; packageId = "tokio-core"; } { name = "tokio-io"; packageId = "tokio-io"; } { name = "tokio-mockstream"; packageId = "tokio-mockstream"; } { name = "tokio-timer"; packageId = "tokio-timer 0.1.2"; } { name = "tokio-tls"; packageId = "tokio-tls"; } { name = "toml"; packageId = "toml"; optional = true; } ]; features = { "default" = [ "ctcp" "toml" ]; "json" = [ "serde_json" ]; "serde_json" = [ "dep:serde_json" ]; "serde_yaml" = [ "dep:serde_yaml" ]; "toml" = [ "dep:toml" ]; "yaml" = [ "serde_yaml" ]; }; resolvedDefaultFeatures = [ "ctcp" "default" "toml" ]; }; "itoa" = rec { crateName = "itoa"; version = "1.0.10"; edition = "2018"; sha256 = "0k7xjfki7mnv6yzjrbnbnjllg86acmbnk4izz2jmm1hx2wd6v95i"; authors = [ "David Tolnay " ]; features = { "no-panic" = [ "dep:no-panic" ]; }; }; "js-sys" = rec { crateName = "js-sys"; version = "0.3.69"; edition = "2018"; sha256 = "0v99rz97asnzapb0jsc3jjhvxpfxr7h7qd97yqyrf9i7viimbh99"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "wasm-bindgen"; packageId = "wasm-bindgen"; } ]; }; "kernel32-sys" = 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"; } ]; buildDependencies = [ { name = "winapi-build"; packageId = "winapi-build"; } ]; }; "lazy_static 0.2.11" = rec { crateName = "lazy_static"; version = "0.2.11"; edition = "2015"; sha256 = "0wxy8vak7jsx6r8gx475pjqpx11p2bfq4wvw6idmqi31mp3k7w3n"; authors = [ "Marvin Löbel " ]; features = { "compiletest" = [ "compiletest_rs" ]; "compiletest_rs" = [ "dep:compiletest_rs" ]; "spin" = [ "dep:spin" ]; "spin_no_std" = [ "nightly" "spin" ]; }; }; "lazy_static 1.4.0" = rec { crateName = "lazy_static"; version = "1.4.0"; edition = "2015"; sha256 = "0in6ikhw8mgl33wjv6q6xfrb5b9jr16q8ygjy803fay4zcisvaz2"; authors = [ "Marvin Löbel " ]; features = { "spin" = [ "dep:spin" ]; "spin_no_std" = [ "spin" ]; }; }; "libc" = rec { crateName = "libc"; version = "0.2.153"; edition = "2015"; sha256 = "1gg7m1ils5dms5miq9fyllrcp0jxnbpgkx71chd2i0lafa8qy6cw"; authors = [ "The Rust Project Developers" ]; features = { "default" = [ "std" ]; "rustc-dep-of-std" = [ "align" "rustc-std-workspace-core" ]; "rustc-std-workspace-core" = [ "dep:rustc-std-workspace-core" ]; "use_std" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "extra_traits" "std" ]; }; "libz-sys" = rec { crateName = "libz-sys"; version = "1.1.15"; edition = "2018"; links = "z"; sha256 = "1xj89rjhk642x8271xr9phj7da7ivwyvd5g8fmb7ma5asgsk2xq3"; authors = [ "Alex Crichton " "Josh Triplett " "Sebastian Thiel " ]; dependencies = [ { name = "libc"; packageId = "libc"; optional = true; } ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } { name = "pkg-config"; packageId = "pkg-config"; } { name = "vcpkg"; packageId = "vcpkg"; } ]; features = { "cmake" = [ "dep:cmake" ]; "default" = [ "libc" "stock-zlib" ]; "libc" = [ "dep:libc" ]; "zlib-ng" = [ "libc" "cmake" ]; }; resolvedDefaultFeatures = [ "libc" ]; }; "linked-hash-map 0.3.0" = rec { crateName = "linked-hash-map"; version = "0.3.0"; edition = "2015"; sha256 = "1kaf95grvfqchxn8pl0854g8ab0fzl56217hndhhhz5qqm2j09kd"; authors = [ "Stepan Koltsov " "Andrew Paseltiner " ]; dependencies = [ { name = "serde"; packageId = "serde 0.8.23"; optional = true; } { name = "serde_test"; packageId = "serde_test"; optional = true; } ]; features = { "clippy" = [ "dep:clippy" ]; "serde" = [ "dep:serde" ]; "serde_impl" = [ "serde" "serde_test" ]; "serde_test" = [ "dep:serde_test" ]; }; resolvedDefaultFeatures = [ "serde" "serde_impl" "serde_test" ]; }; "linked-hash-map 0.5.6" = rec { crateName = "linked-hash-map"; version = "0.5.6"; edition = "2015"; sha256 = "03vpgw7x507g524nx5i1jf5dl8k3kv0fzg8v3ip6qqwbpkqww5q7"; authors = [ "Stepan Koltsov " "Andrew Paseltiner " ]; features = { "heapsize" = [ "dep:heapsize" ]; "heapsize_impl" = [ "heapsize" ]; "serde" = [ "dep:serde" ]; "serde_impl" = [ "serde" ]; }; }; "linux-raw-sys" = rec { crateName = "linux-raw-sys"; version = "0.4.13"; edition = "2021"; sha256 = "172k2c6422gsc914ig8rh99mb9yc7siw6ikc3d9xw1k7vx0s3k81"; authors = [ "Dan Gohman " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" "general" "errno" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" "no_std" ]; }; resolvedDefaultFeatures = [ "elf" "errno" "general" "ioctl" "no_std" ]; }; "lock_api 0.3.4" = rec { crateName = "lock_api"; version = "0.3.4"; edition = "2018"; sha256 = "0xgc5dzmajh0akbh5d6d7rj9mh5rzpk74pyrc946v2ixgakj9nn4"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "scopeguard"; packageId = "scopeguard"; usesDefaultFeatures = false; } ]; features = { "owning_ref" = [ "dep:owning_ref" ]; "serde" = [ "dep:serde" ]; }; }; "lock_api 0.4.11" = rec { crateName = "lock_api"; version = "0.4.11"; edition = "2018"; sha256 = "0iggx0h4jx63xm35861106af3jkxq06fpqhpkhgw0axi2n38y5iw"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "scopeguard"; packageId = "scopeguard"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "default" = [ "atomic_usize" ]; "owning_ref" = [ "dep:owning_ref" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "atomic_usize" "default" ]; }; "log" = rec { crateName = "log"; version = "0.4.21"; edition = "2021"; sha256 = "074hldq1q8rlzq2s2qa8f25hj4s3gpw71w64vdwzjd01a4g8rvch"; authors = [ "The Rust Project Developers" ]; features = { "kv_serde" = [ "kv_std" "value-bag/serde" "serde" ]; "kv_std" = [ "std" "kv" "value-bag/error" ]; "kv_sval" = [ "kv" "value-bag/sval" "sval" "sval_ref" ]; "kv_unstable" = [ "kv" "value-bag" ]; "kv_unstable_serde" = [ "kv_serde" "kv_unstable_std" ]; "kv_unstable_std" = [ "kv_std" "kv_unstable" ]; "kv_unstable_sval" = [ "kv_sval" "kv_unstable" ]; "serde" = [ "dep:serde" ]; "sval" = [ "dep:sval" ]; "sval_ref" = [ "dep:sval_ref" ]; "value-bag" = [ "dep:value-bag" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "maybe-uninit" = rec { crateName = "maybe-uninit"; version = "2.0.0"; edition = "2015"; sha256 = "004y0nzmpfdrhz251278341z6ql34iv1k6dp1h6af7d6nd6jwc30"; authors = [ "est31 " "The Rust Project Developers" ]; }; "memchr" = rec { crateName = "memchr"; version = "2.7.1"; edition = "2021"; sha256 = "0jf1kicqa4vs9lyzj4v4y1p90q0dh87hvhsdd5xvhnp527sw8gaj"; authors = [ "Andrew Gallant " "bluss" ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" ]; "logging" = [ "dep:log" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; "std" = [ "alloc" ]; "use_std" = [ "std" ]; }; resolvedDefaultFeatures = [ "alloc" "std" "use_std" ]; }; "memoffset" = rec { crateName = "memoffset"; version = "0.5.6"; edition = "2015"; sha256 = "1ahi51aa650s2p9ib1a4ifgqv0pzmsxlm9z4xdgvi9zdd7q7ac84"; authors = [ "Gilad Naaman " ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "miniz_oxide" = rec { crateName = "miniz_oxide"; version = "0.7.2"; edition = "2018"; sha256 = "19qlxb21s6kabgqq61mk7kd1qk2invyygj076jz6i1gj2lz1z0cx"; authors = [ "Frommi " "oyvindln " ]; dependencies = [ { name = "adler"; packageId = "adler"; usesDefaultFeatures = false; } ]; features = { "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "with-alloc" ]; "rustc-dep-of-std" = [ "core" "alloc" "compiler_builtins" "adler/rustc-dep-of-std" ]; "simd" = [ "simd-adler32" ]; "simd-adler32" = [ "dep:simd-adler32" ]; }; }; "mio" = rec { crateName = "mio"; version = "0.6.23"; edition = "2015"; sha256 = "1i2c1vl8lr45apkh8xbh9k56ihfsmqff5l7s2fya7whvp7sndzaa"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10"; } { name = "fuchsia-zircon"; packageId = "fuchsia-zircon"; target = { target, features }: ("fuchsia" == target."os" or null); } { name = "fuchsia-zircon-sys"; packageId = "fuchsia-zircon-sys"; target = { target, features }: ("fuchsia" == target."os" or null); } { name = "iovec"; packageId = "iovec"; } { name = "kernel32-sys"; packageId = "kernel32-sys"; target = { target, features }: (target."windows" or false); } { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } { name = "log"; packageId = "log"; } { name = "miow"; packageId = "miow"; target = { target, features }: (target."windows" or false); } { name = "net2"; packageId = "net2"; } { name = "slab"; packageId = "slab 0.4.9"; } { name = "winapi"; packageId = "winapi 0.2.8"; target = { target, features }: (target."windows" or false); } ]; features = { "default" = [ "with-deprecated" ]; }; resolvedDefaultFeatures = [ "default" "with-deprecated" ]; }; "mio-uds" = rec { crateName = "mio-uds"; version = "0.6.8"; edition = "2015"; sha256 = "1w36w09gd8as1mah80wdy0kgpshmphmljj68gij34hvdnag6kjxg"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "iovec"; packageId = "iovec"; target = { target, features }: (target."unix" or false); } { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } { name = "mio"; packageId = "mio"; target = { target, features }: (target."unix" or false); } ]; }; "miow" = rec { crateName = "miow"; version = "0.2.2"; edition = "2015"; sha256 = "0kcl8rnv0bhiarcdakik670w8fnxzlxhi1ys7152sck68510in7b"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "kernel32-sys"; packageId = "kernel32-sys"; } { name = "net2"; packageId = "net2"; usesDefaultFeatures = false; } { name = "winapi"; packageId = "winapi 0.2.8"; } { name = "ws2_32-sys"; packageId = "ws2_32-sys"; } ]; }; "native-tls" = rec { crateName = "native-tls"; version = "0.2.11"; edition = "2015"; sha256 = "0bmrlg0fmzxaycjpkgkchi93av07v2yf9k33gc12ca9gqdrn28h7"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "lazy_static"; packageId = "lazy_static 1.4.0"; target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null)); } { name = "libc"; packageId = "libc"; target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null)); } { name = "log"; packageId = "log"; target = { target, features }: (!(("windows" == target."os" or null) || ("macos" == target."os" or null) || ("ios" == target."os" or null))); } { name = "openssl"; packageId = "openssl"; target = { target, features }: (!(("windows" == target."os" or null) || ("macos" == target."os" or null) || ("ios" == target."os" or null))); } { name = "openssl-probe"; packageId = "openssl-probe"; target = { target, features }: (!(("windows" == target."os" or null) || ("macos" == target."os" or null) || ("ios" == target."os" or null))); } { name = "openssl-sys"; packageId = "openssl-sys"; target = { target, features }: (!(("windows" == target."os" or null) || ("macos" == target."os" or null) || ("ios" == target."os" or null))); } { name = "schannel"; packageId = "schannel"; target = { target, features }: ("windows" == target."os" or null); } { name = "security-framework"; packageId = "security-framework"; target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null)); } { name = "security-framework-sys"; packageId = "security-framework-sys"; target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null)); } { name = "tempfile"; packageId = "tempfile"; target = { target, features }: (("macos" == target."os" or null) || ("ios" == target."os" or null)); } ]; devDependencies = [ { name = "tempfile"; packageId = "tempfile"; } ]; features = { "alpn" = [ "security-framework/alpn" ]; "vendored" = [ "openssl/vendored" ]; }; }; "net2" = rec { crateName = "net2"; version = "0.2.39"; edition = "2015"; sha256 = "1b1lxvs192xsvqnszcz7dn4dw3fsvzxnc23qvq39scx26s068fxi"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10"; } { name = "libc"; packageId = "libc"; target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null)); } { name = "winapi"; packageId = "winapi 0.3.9"; target = { target, features }: (target."windows" or false); features = [ "handleapi" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ]; } ]; features = { "default" = [ "duration" ]; }; resolvedDefaultFeatures = [ "default" "duration" ]; }; "nom" = rec { crateName = "nom"; version = "4.2.3"; edition = "2015"; sha256 = "1mkvby8b4m61p4g1px0pwr58yfkphyp1jcfbp4qfp7l6iqdaklia"; authors = [ "contact@geoffroycouprie.com" ]; dependencies = [ { name = "memchr"; packageId = "memchr"; usesDefaultFeatures = false; } ]; buildDependencies = [ { name = "version_check"; packageId = "version_check"; } ]; features = { "default" = [ "std" ]; "lazy_static" = [ "dep:lazy_static" ]; "regex" = [ "dep:regex" ]; "regexp" = [ "regex" ]; "regexp_macros" = [ "regexp" "lazy_static" ]; "std" = [ "alloc" "memchr/use_std" ]; "verbose-errors" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "std" ]; }; "num-traits 0.1.43" = 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.18"; } ]; }; "num-traits 0.2.18" = rec { crateName = "num-traits"; version = "0.2.18"; edition = "2018"; sha256 = "0yjib8p2p9kzmaz48xwhs69w5dh1wipph9jgnillzd2x33jz03fs"; authors = [ "The Rust Project Developers" ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "default" = [ "std" ]; "libm" = [ "dep:libm" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "num_cpus" = rec { crateName = "num_cpus"; version = "1.16.0"; edition = "2015"; sha256 = "0hra6ihpnh06dvfvz9ipscys0xfqa9ca9hzp384d5m02ssvgqqa1"; authors = [ "Sean McArthur " ]; dependencies = [ { name = "hermit-abi"; packageId = "hermit-abi 0.3.9"; target = { target, features }: ("hermit" == target."os" or null); } { name = "libc"; packageId = "libc"; target = { target, features }: (!(target."windows" or false)); } ]; }; "object" = rec { crateName = "object"; version = "0.32.2"; edition = "2018"; sha256 = "0hc4cjwyngiy6k51hlzrlsxgv5z25vv7c2cp0ky1lckfic0259m6"; dependencies = [ { name = "memchr"; packageId = "memchr"; usesDefaultFeatures = false; } ]; features = { "all" = [ "read" "write" "std" "compression" "wasm" ]; "alloc" = [ "dep:alloc" ]; "compiler_builtins" = [ "dep:compiler_builtins" ]; "compression" = [ "dep:flate2" "dep:ruzstd" "std" ]; "core" = [ "dep:core" ]; "default" = [ "read" "compression" ]; "doc" = [ "read_core" "write_std" "std" "compression" "archive" "coff" "elf" "macho" "pe" "wasm" "xcoff" ]; "pe" = [ "coff" ]; "read" = [ "read_core" "archive" "coff" "elf" "macho" "pe" "xcoff" "unaligned" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" "alloc" "memchr/rustc-dep-of-std" ]; "std" = [ "memchr/std" ]; "unstable-all" = [ "all" "unstable" ]; "wasm" = [ "dep:wasmparser" ]; "write" = [ "write_std" "coff" "elf" "macho" "pe" "xcoff" ]; "write_core" = [ "dep:crc32fast" "dep:indexmap" "dep:hashbrown" ]; "write_std" = [ "write_core" "std" "indexmap?/std" "crc32fast?/std" ]; }; resolvedDefaultFeatures = [ "archive" "coff" "elf" "macho" "pe" "read_core" "unaligned" ]; }; "once_cell" = rec { crateName = "once_cell"; version = "1.19.0"; edition = "2021"; sha256 = "14kvw7px5z96dk4dwdm1r9cqhhy2cyj1l5n5b29mynbb8yr15nrz"; authors = [ "Aleksey Kladov " ]; features = { "alloc" = [ "race" ]; "atomic-polyfill" = [ "critical-section" ]; "critical-section" = [ "dep:critical-section" "portable-atomic" ]; "default" = [ "std" ]; "parking_lot" = [ "dep:parking_lot_core" ]; "portable-atomic" = [ "dep:portable-atomic" ]; "std" = [ "alloc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "race" "std" ]; }; "openssl" = rec { crateName = "openssl"; version = "0.10.64"; edition = "2018"; sha256 = "07vb455yh08qh3n493ssw1qsa3zg3zfj438kk2180453hq94i84m"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 2.4.2"; } { name = "cfg-if"; packageId = "cfg-if 1.0.0"; } { name = "foreign-types"; packageId = "foreign-types"; } { name = "libc"; packageId = "libc"; } { name = "once_cell"; packageId = "once_cell"; } { name = "openssl-macros"; packageId = "openssl-macros"; } { name = "openssl-sys"; packageId = "openssl-sys"; rename = "ffi"; } ]; features = { "bindgen" = [ "ffi/bindgen" ]; "unstable_boringssl" = [ "ffi/unstable_boringssl" ]; "vendored" = [ "ffi/vendored" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "openssl-macros" = rec { crateName = "openssl-macros"; version = "0.1.1"; edition = "2018"; sha256 = "173xxvfc63rr5ybwqwylsir0vq6xsj4kxiv4hmg4c3vscdmncj59"; procMacro = true; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.52"; features = [ "full" ]; } ]; }; "openssl-probe" = rec { crateName = "openssl-probe"; version = "0.1.5"; edition = "2015"; sha256 = "1kq18qm48rvkwgcggfkqq6pm948190czqc94d6bm2sir5hq1l0gz"; authors = [ "Alex Crichton " ]; }; "openssl-sys" = rec { crateName = "openssl-sys"; version = "0.9.101"; edition = "2018"; links = "openssl"; sha256 = "1zwd35nc5bq7m26vjsmja4hxf3fzk389blgpmhpzr3p78krv18nx"; build = "build/main.rs"; authors = [ "Alex Crichton " "Steven Fackler " ]; dependencies = [ { name = "libc"; packageId = "libc"; } ]; buildDependencies = [ { name = "cc"; packageId = "cc"; } { name = "pkg-config"; packageId = "pkg-config"; } { name = "vcpkg"; packageId = "vcpkg"; } ]; features = { "bindgen" = [ "dep:bindgen" ]; "bssl-sys" = [ "dep:bssl-sys" ]; "openssl-src" = [ "dep:openssl-src" ]; "unstable_boringssl" = [ "bssl-sys" ]; "vendored" = [ "openssl-src" ]; }; }; "parking_lot 0.12.1" = rec { crateName = "parking_lot"; version = "0.12.1"; edition = "2018"; sha256 = "13r2xk7mnxfc5g0g6dkdxqdqad99j7s7z8zhzz4npw5r0g0v4hip"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "lock_api"; packageId = "lock_api 0.4.11"; } { name = "parking_lot_core"; packageId = "parking_lot_core 0.9.9"; } ]; features = { "arc_lock" = [ "lock_api/arc_lock" ]; "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 0.9.0" = rec { crateName = "parking_lot"; version = "0.9.0"; edition = "2018"; sha256 = "0lk2vq3hp88ygpgsrypdr3ss71fidnqbykva0csgxhmn5scb2hpq"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "lock_api"; packageId = "lock_api 0.3.4"; } { name = "parking_lot_core"; packageId = "parking_lot_core 0.6.3"; } ]; buildDependencies = [ { name = "rustc_version"; packageId = "rustc_version"; } ]; 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.6.3" = rec { crateName = "parking_lot_core"; version = "0.6.3"; edition = "2018"; sha256 = "02kbwqrr0w5mw0hkklqcg35aaiq1cck3g1w0d8bpbgk21a0np9mx"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 0.1.10"; } { name = "cloudabi"; packageId = "cloudabi"; target = { target, features }: ("cloudabi" == target."os" or null); } { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } { name = "redox_syscall"; packageId = "redox_syscall 0.1.57"; target = { target, features }: ("redox" == target."os" or null); } { name = "smallvec"; packageId = "smallvec 0.6.14"; } { name = "winapi"; packageId = "winapi 0.3.9"; target = { target, features }: (target."windows" or false); features = [ "winnt" "ntstatus" "minwindef" "winerror" "winbase" "errhandlingapi" "handleapi" ]; } ]; buildDependencies = [ { name = "rustc_version"; packageId = "rustc_version"; } ]; features = { "backtrace" = [ "dep:backtrace" ]; "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ]; "petgraph" = [ "dep:petgraph" ]; "thread-id" = [ "dep:thread-id" ]; }; }; "parking_lot_core 0.9.9" = rec { crateName = "parking_lot_core"; version = "0.9.9"; edition = "2018"; sha256 = "13h0imw1aq86wj28gxkblhkzx6z1gk8q18n0v76qmmj6cliajhjc"; authors = [ "Amanieu d'Antras " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 1.0.0"; } { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } { name = "redox_syscall"; packageId = "redox_syscall 0.4.1"; target = { target, features }: ("redox" == target."os" or null); } { name = "smallvec"; packageId = "smallvec 1.13.1"; } { name = "windows-targets"; packageId = "windows-targets 0.48.5"; target = { target, features }: (target."windows" or false); } ]; features = { "backtrace" = [ "dep:backtrace" ]; "deadlock_detection" = [ "petgraph" "thread-id" "backtrace" ]; "petgraph" = [ "dep:petgraph" ]; "thread-id" = [ "dep:thread-id" ]; }; }; "paroxysm" = rec { crateName = "paroxysm"; version = "0.1.0"; edition = "2018"; crateBin = [ { name = "paroxysm"; path = "src/main.rs"; requiredFeatures = [ ]; } ]; # We can't filter paths with references in Nix 2.4 # See https://github.com/NixOS/nix/issues/5410 src = if ((lib.versionOlder builtins.nixVersion "2.4pre20211007") || (lib.versionOlder "2.5" builtins.nixVersion)) then lib.cleanSourceWith { filter = sourceFilter; src = ./.; } else ./.; authors = [ "eeeeeta " ]; dependencies = [ { name = "chrono"; packageId = "chrono"; } { name = "config"; packageId = "config"; } { name = "crimp"; packageId = "crimp"; } { name = "diesel"; packageId = "diesel"; features = [ "postgres" "chrono" "r2d2" ]; } { name = "env_logger"; packageId = "env_logger"; } { name = "failure"; packageId = "failure"; } { name = "irc"; packageId = "irc"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0"; } { name = "log"; packageId = "log"; } { name = "rand"; packageId = "rand"; } { name = "regex"; packageId = "regex"; } { name = "serde"; packageId = "serde 1.0.197"; features = [ "derive" ]; } ]; }; "pkg-config" = rec { crateName = "pkg-config"; version = "0.3.30"; edition = "2015"; sha256 = "1v07557dj1sa0aly9c90wsygc0i8xv5vnmyv0g94lpkvj8qb4cfj"; authors = [ "Alex Crichton " ]; }; "ppv-lite86" = rec { crateName = "ppv-lite86"; version = "0.2.17"; edition = "2018"; sha256 = "1pp6g52aw970adv3x2310n7glqnji96z0a9wiamzw89ibf0ayh2v"; authors = [ "The CryptoCorrosion Contributors" ]; features = { "default" = [ "std" ]; }; resolvedDefaultFeatures = [ "simd" "std" ]; }; "pq-sys" = rec { crateName = "pq-sys"; version = "0.4.8"; edition = "2015"; links = "pq"; sha256 = "1gfygvp69i5i6vxbi9qp2xaf75x09js9wy1hpl67r6fz4qj0bh1i"; libName = "pq_sys"; buildDependencies = [ { name = "vcpkg"; packageId = "vcpkg"; target = { target, features }: ("msvc" == target."env" or null); } ]; features = { "pkg-config" = [ "dep:pkg-config" ]; }; }; "proc-macro2" = rec { crateName = "proc-macro2"; version = "1.0.78"; edition = "2021"; sha256 = "1bjak27pqdn4f4ih1c9nr3manzyavsgqmf76ygw9k76q8pb2lhp2"; authors = [ "David Tolnay " "Alex Crichton " ]; dependencies = [ { name = "unicode-ident"; packageId = "unicode-ident"; } ]; features = { "default" = [ "proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "quick-error" = rec { crateName = "quick-error"; version = "1.2.3"; edition = "2015"; sha256 = "1q6za3v78hsspisc197bg3g7rpc989qycy8ypr8ap8igv10ikl51"; authors = [ "Paul Colomiets " "Colin Kiegel " ]; }; "quote" = rec { crateName = "quote"; version = "1.0.35"; edition = "2018"; sha256 = "1vv8r2ncaz4pqdr78x7f138ka595sp2ncr1sa2plm4zxbsmwj7i9"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; } ]; features = { "default" = [ "proc-macro" ]; "proc-macro" = [ "proc-macro2/proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "r2d2" = rec { crateName = "r2d2"; version = "0.8.10"; edition = "2018"; sha256 = "14qw32y4m564xb1f5ya8ii7dwqyknvk8bsx2r0lljlmn7zxqbpji"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "log"; packageId = "log"; } { name = "parking_lot"; packageId = "parking_lot 0.12.1"; } { name = "scheduled-thread-pool"; packageId = "scheduled-thread-pool"; } ]; }; "rand" = 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"; rename = "getrandom_package"; optional = true; } { name = "libc"; packageId = "libc"; optional = true; usesDefaultFeatures = false; target = { target, features }: (target."unix" or false); } { name = "rand_chacha"; packageId = "rand_chacha"; usesDefaultFeatures = false; target = { target, features }: (!("emscripten" == target."os" or null)); } { name = "rand_core"; packageId = "rand_core"; } { name = "rand_hc"; packageId = "rand_hc"; target = { target, features }: ("emscripten" == target."os" or null); } ]; devDependencies = [ { name = "rand_hc"; packageId = "rand_hc"; } ]; features = { "alloc" = [ "rand_core/alloc" ]; "default" = [ "std" ]; "getrandom" = [ "getrandom_package" "rand_core/getrandom" ]; "getrandom_package" = [ "dep:getrandom_package" ]; "libc" = [ "dep:libc" ]; "log" = [ "dep:log" ]; "nightly" = [ "simd_support" ]; "packed_simd" = [ "dep:packed_simd" ]; "rand_pcg" = [ "dep:rand_pcg" ]; "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" = rec { crateName = "rand_chacha"; version = "0.2.2"; edition = "2018"; sha256 = "00il36fkdbsmpr99p9ksmmp6dn1md7rmnwmz0rr77jbrca2yvj7l"; authors = [ "The Rand Project Developers" "The Rust Project Developers" "The CryptoCorrosion Contributors" ]; dependencies = [ { name = "ppv-lite86"; packageId = "ppv-lite86"; usesDefaultFeatures = false; features = [ "simd" ]; } { name = "rand_core"; packageId = "rand_core"; } ]; features = { "default" = [ "std" "simd" ]; "std" = [ "ppv-lite86/std" ]; }; resolvedDefaultFeatures = [ "std" ]; }; "rand_core" = 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"; optional = true; } ]; features = { "getrandom" = [ "dep:getrandom" ]; "serde" = [ "dep:serde" ]; "serde1" = [ "serde" ]; "std" = [ "alloc" "getrandom" "getrandom/std" ]; }; resolvedDefaultFeatures = [ "alloc" "getrandom" "std" ]; }; "rand_hc" = rec { crateName = "rand_hc"; version = "0.2.0"; edition = "2018"; sha256 = "0g31sqwpmsirdlwr0svnacr4dbqyz339im4ssl9738cjgfpjjcfa"; authors = [ "The Rand Project Developers" ]; dependencies = [ { name = "rand_core"; packageId = "rand_core"; } ]; }; "redox_syscall 0.1.57" = rec { crateName = "redox_syscall"; version = "0.1.57"; edition = "2015"; sha256 = "1kh59fpwy33w9nwd5iyc283yglq8pf2s41hnhvl48iax9mz0zk21"; libName = "syscall"; authors = [ "Jeremy Soller " ]; }; "redox_syscall 0.4.1" = rec { crateName = "redox_syscall"; version = "0.4.1"; edition = "2018"; sha256 = "1aiifyz5dnybfvkk4cdab9p2kmphag1yad6iknc7aszlxxldf8j7"; libName = "syscall"; authors = [ "Jeremy Soller " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } ]; features = { "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "bitflags/rustc-dep-of-std" ]; }; }; "regex" = rec { crateName = "regex"; version = "1.10.3"; edition = "2021"; sha256 = "05cvihqy0wgnh9i8a9y2n803n5azg2h0b7nlqy6rsvxhy00vwbdn"; authors = [ "The Rust Project Developers" "Andrew Gallant " ]; dependencies = [ { name = "aho-corasick"; packageId = "aho-corasick"; optional = true; usesDefaultFeatures = false; } { name = "memchr"; packageId = "memchr"; optional = true; usesDefaultFeatures = false; } { name = "regex-automata"; packageId = "regex-automata"; usesDefaultFeatures = false; features = [ "alloc" "syntax" "meta" "nfa-pikevm" ]; } { name = "regex-syntax"; packageId = "regex-syntax"; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" "perf" "unicode" "regex-syntax/default" ]; "logging" = [ "aho-corasick?/logging" "memchr?/logging" "regex-automata/logging" ]; "perf" = [ "perf-cache" "perf-dfa" "perf-onepass" "perf-backtrack" "perf-inline" "perf-literal" ]; "perf-backtrack" = [ "regex-automata/nfa-backtrack" ]; "perf-dfa" = [ "regex-automata/hybrid" ]; "perf-dfa-full" = [ "regex-automata/dfa-build" "regex-automata/dfa-search" ]; "perf-inline" = [ "regex-automata/perf-inline" ]; "perf-literal" = [ "dep:aho-corasick" "dep:memchr" "regex-automata/perf-literal" ]; "perf-onepass" = [ "regex-automata/dfa-onepass" ]; "std" = [ "aho-corasick?/std" "memchr?/std" "regex-automata/std" "regex-syntax/std" ]; "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "regex-automata/unicode" "regex-syntax/unicode" ]; "unicode-age" = [ "regex-automata/unicode-age" "regex-syntax/unicode-age" ]; "unicode-bool" = [ "regex-automata/unicode-bool" "regex-syntax/unicode-bool" ]; "unicode-case" = [ "regex-automata/unicode-case" "regex-syntax/unicode-case" ]; "unicode-gencat" = [ "regex-automata/unicode-gencat" "regex-syntax/unicode-gencat" ]; "unicode-perl" = [ "regex-automata/unicode-perl" "regex-automata/unicode-word-boundary" "regex-syntax/unicode-perl" ]; "unicode-script" = [ "regex-automata/unicode-script" "regex-syntax/unicode-script" ]; "unicode-segment" = [ "regex-automata/unicode-segment" "regex-syntax/unicode-segment" ]; "unstable" = [ "pattern" ]; "use_std" = [ "std" ]; }; resolvedDefaultFeatures = [ "default" "perf" "perf-backtrack" "perf-cache" "perf-dfa" "perf-inline" "perf-literal" "perf-onepass" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; "regex-automata" = rec { crateName = "regex-automata"; version = "0.4.6"; edition = "2021"; sha256 = "1spaq7y4im7s56d1gxa2hi4hzf6dwswb1bv8xyavzya7k25kpf46"; authors = [ "The Rust Project Developers" "Andrew Gallant " ]; dependencies = [ { name = "aho-corasick"; packageId = "aho-corasick"; optional = true; usesDefaultFeatures = false; } { name = "memchr"; packageId = "memchr"; optional = true; usesDefaultFeatures = false; } { name = "regex-syntax"; packageId = "regex-syntax"; optional = true; usesDefaultFeatures = false; } ]; features = { "default" = [ "std" "syntax" "perf" "unicode" "meta" "nfa" "dfa" "hybrid" ]; "dfa" = [ "dfa-build" "dfa-search" "dfa-onepass" ]; "dfa-build" = [ "nfa-thompson" "dfa-search" ]; "dfa-onepass" = [ "nfa-thompson" ]; "hybrid" = [ "alloc" "nfa-thompson" ]; "internal-instrument" = [ "internal-instrument-pikevm" ]; "internal-instrument-pikevm" = [ "logging" "std" ]; "logging" = [ "dep:log" "aho-corasick?/logging" "memchr?/logging" ]; "meta" = [ "syntax" "nfa-pikevm" ]; "nfa" = [ "nfa-thompson" "nfa-pikevm" "nfa-backtrack" ]; "nfa-backtrack" = [ "nfa-thompson" ]; "nfa-pikevm" = [ "nfa-thompson" ]; "nfa-thompson" = [ "alloc" ]; "perf" = [ "perf-inline" "perf-literal" ]; "perf-literal" = [ "perf-literal-substring" "perf-literal-multisubstring" ]; "perf-literal-multisubstring" = [ "std" "dep:aho-corasick" ]; "perf-literal-substring" = [ "aho-corasick?/perf-literal" "dep:memchr" ]; "std" = [ "regex-syntax?/std" "memchr?/std" "aho-corasick?/std" "alloc" ]; "syntax" = [ "dep:regex-syntax" "alloc" ]; "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" "regex-syntax?/unicode" ]; "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" ]; }; resolvedDefaultFeatures = [ "alloc" "dfa-onepass" "hybrid" "meta" "nfa-backtrack" "nfa-pikevm" "nfa-thompson" "perf-inline" "perf-literal" "perf-literal-multisubstring" "perf-literal-substring" "std" "syntax" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" "unicode-word-boundary" ]; }; "regex-syntax" = rec { crateName = "regex-syntax"; version = "0.8.2"; edition = "2021"; sha256 = "17rd2s8xbiyf6lb4aj2nfi44zqlj98g2ays8zzj2vfs743k79360"; authors = [ "The Rust Project Developers" "Andrew Gallant " ]; features = { "arbitrary" = [ "dep:arbitrary" ]; "default" = [ "std" "unicode" ]; "unicode" = [ "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; resolvedDefaultFeatures = [ "default" "std" "unicode" "unicode-age" "unicode-bool" "unicode-case" "unicode-gencat" "unicode-perl" "unicode-script" "unicode-segment" ]; }; "rust-ini" = rec { crateName = "rust-ini"; version = "0.13.0"; edition = "2015"; sha256 = "1hifnbgaz01zja5995chy6vjacbif2m76nlxsisw7y1pxx4c2liy"; libName = "ini"; authors = [ "Y. T. Chung " ]; }; "rustc-demangle" = rec { crateName = "rustc-demangle"; version = "0.1.23"; edition = "2015"; sha256 = "0xnbk2bmyzshacjm2g1kd4zzv2y2az14bw3sjccq5qkpmsfvn9nn"; authors = [ "Alex Crichton " ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "rustc-dep-of-std" = [ "core" "compiler_builtins" ]; }; }; "rustc_version" = rec { crateName = "rustc_version"; version = "0.2.3"; edition = "2015"; sha256 = "02h3x57lcr8l2pm0a645s9whdh33pn5cnrwvn5cb57vcrc53x3hk"; authors = [ "Marvin Löbel " ]; dependencies = [ { name = "semver"; packageId = "semver"; } ]; }; "rustix" = rec { crateName = "rustix"; version = "0.38.31"; edition = "2021"; sha256 = "0jg9yj3i6qnzk1y82hng7rb1bwhslfbh57507dxcs9mgcakf38vf"; authors = [ "Dan Gohman " "Jakub Konka " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 2.4.2"; usesDefaultFeatures = false; } { name = "errno"; packageId = "errno"; rename = "libc_errno"; optional = true; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && ("little" == target."endian" or null) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))); } { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && ("little" == target."endian" or null) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))))))); } { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; target = { target, features }: (target."windows" or false); } { name = "libc"; packageId = "libc"; optional = true; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && ("little" == target."endian" or null) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))); features = [ "extra_traits" ]; } { name = "libc"; packageId = "libc"; usesDefaultFeatures = false; target = { target, features }: ((!(target."windows" or false)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && ("little" == target."endian" or null) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))))))); features = [ "extra_traits" ]; } { name = "linux-raw-sys"; packageId = "linux-raw-sys"; usesDefaultFeatures = false; target = { target, features }: ((("android" == target."os" or null) || ("linux" == target."os" or null)) && ((target."rustix_use_libc" or false) || (target."miri" or false) || (!(("linux" == target."os" or null) && ("little" == target."endian" or null) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null))))))); features = [ "general" "ioctl" "no_std" ]; } { name = "linux-raw-sys"; packageId = "linux-raw-sys"; usesDefaultFeatures = false; target = { target, features }: ((!(target."rustix_use_libc" or false)) && (!(target."miri" or false)) && ("linux" == target."os" or null) && ("little" == target."endian" or null) && (("arm" == target."arch" or null) || (("aarch64" == target."arch" or null) && ("64" == target."pointer_width" or null)) || ("riscv64" == target."arch" or null) || ((target."rustix_use_experimental_asm" or false) && ("powerpc64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips32r6" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64" == target."arch" or null)) || ((target."rustix_use_experimental_asm" or false) && ("mips64r6" == target."arch" or null)) || ("x86" == target."arch" or null) || (("x86_64" == target."arch" or null) && ("64" == target."pointer_width" or null)))); features = [ "general" "errno" "ioctl" "no_std" "elf" ]; } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_NetworkManagement_IpHelper" "Win32_System_Threading" ]; } ]; devDependencies = [ { name = "errno"; packageId = "errno"; rename = "libc_errno"; usesDefaultFeatures = false; } { name = "libc"; packageId = "libc"; } ]; features = { "all-apis" = [ "event" "fs" "io_uring" "mm" "mount" "net" "param" "pipe" "process" "procfs" "pty" "rand" "runtime" "shm" "stdio" "system" "termios" "thread" "time" ]; "default" = [ "std" "use-libc-auxv" ]; "io_uring" = [ "event" "fs" "net" "linux-raw-sys/io_uring" ]; "itoa" = [ "dep:itoa" ]; "libc" = [ "dep:libc" ]; "libc_errno" = [ "dep:libc_errno" ]; "linux_latest" = [ "linux_4_11" ]; "net" = [ "linux-raw-sys/net" "linux-raw-sys/netlink" "linux-raw-sys/if_ether" "linux-raw-sys/xdp" ]; "once_cell" = [ "dep:once_cell" ]; "param" = [ "fs" ]; "process" = [ "linux-raw-sys/prctl" ]; "procfs" = [ "once_cell" "itoa" "fs" ]; "pty" = [ "itoa" "fs" ]; "runtime" = [ "linux-raw-sys/prctl" ]; "rustc-dep-of-std" = [ "dep:core" "dep:alloc" "dep:compiler_builtins" "linux-raw-sys/rustc-dep-of-std" "bitflags/rustc-dep-of-std" "compiler_builtins?/rustc-dep-of-std" ]; "shm" = [ "fs" ]; "std" = [ "bitflags/std" "alloc" "libc?/std" "libc_errno?/std" ]; "system" = [ "linux-raw-sys/system" ]; "thread" = [ "linux-raw-sys/prctl" ]; "use-libc" = [ "libc_errno" "libc" ]; }; resolvedDefaultFeatures = [ "alloc" "default" "fs" "std" "use-libc-auxv" ]; }; "ryu" = rec { crateName = "ryu"; version = "1.0.17"; edition = "2018"; sha256 = "188vrsh3zlnl5xl7lw0rp2sc0knpx8yaqpwvr648b6h12v4rfrp8"; authors = [ "David Tolnay " ]; features = { "no-panic" = [ "dep:no-panic" ]; }; }; "schannel" = rec { crateName = "schannel"; version = "0.1.23"; edition = "2018"; sha256 = "0d1m156bsjrws6xzzr1wyfyih9i22mb2csb5pc5kmkrvci2ibjgv"; authors = [ "Steven Fackler " "Steffen Butzer " ]; dependencies = [ { name = "windows-sys"; packageId = "windows-sys"; features = [ "Win32_Foundation" "Win32_Security_Cryptography" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_System_Memory" ]; } ]; devDependencies = [ { name = "windows-sys"; packageId = "windows-sys"; features = [ "Win32_System_SystemInformation" "Win32_System_Time" ]; } ]; }; "scheduled-thread-pool" = rec { crateName = "scheduled-thread-pool"; version = "0.2.7"; edition = "2018"; sha256 = "068s77f9xcpvzl70nsxk8750dzzc6f9pixajhd979815cj0ndg1w"; authors = [ "Steven Fackler " ]; dependencies = [ { name = "parking_lot"; packageId = "parking_lot 0.12.1"; } ]; }; "scoped-tls" = rec { crateName = "scoped-tls"; version = "0.1.2"; edition = "2015"; sha256 = "0a2bn9d2mb07c6l16sadijy4p540g498zddfxyiq4rsqpwrglbrk"; authors = [ "Alex Crichton " ]; features = { }; }; "scopeguard" = rec { crateName = "scopeguard"; version = "1.2.0"; edition = "2015"; sha256 = "0jcz9sd47zlsgcnm1hdw0664krxwb5gczlif4qngj2aif8vky54l"; authors = [ "bluss" ]; features = { "default" = [ "use_std" ]; }; }; "security-framework" = rec { crateName = "security-framework"; version = "2.9.2"; edition = "2021"; sha256 = "1pplxk15s5yxvi2m1sz5xfmjibp96cscdcl432w9jzbk0frlzdh5"; authors = [ "Steven Fackler " "Kornel " ]; dependencies = [ { name = "bitflags"; packageId = "bitflags 1.3.2"; } { name = "core-foundation"; packageId = "core-foundation"; } { name = "core-foundation-sys"; packageId = "core-foundation-sys"; } { name = "libc"; packageId = "libc"; } { name = "security-framework-sys"; packageId = "security-framework-sys"; usesDefaultFeatures = false; } ]; 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" "session-tickets" "serial-number-bigint" ]; "OSX_10_14" = [ "OSX_10_13" "security-framework-sys/OSX_10_14" ]; "OSX_10_15" = [ "OSX_10_14" "security-framework-sys/OSX_10_15" ]; "OSX_10_9" = [ "security-framework-sys/OSX_10_9" ]; "default" = [ "OSX_10_9" ]; "log" = [ "dep:log" ]; "serial-number-bigint" = [ "dep:num-bigint" ]; }; resolvedDefaultFeatures = [ "OSX_10_9" "default" ]; }; "security-framework-sys" = rec { crateName = "security-framework-sys"; version = "2.9.1"; edition = "2021"; sha256 = "0yhciwlsy9dh0ps1gw3197kvyqx1bvc4knrhiznhid6kax196cp9"; authors = [ "Steven Fackler " "Kornel " ]; dependencies = [ { name = "core-foundation-sys"; packageId = "core-foundation-sys"; } { name = "libc"; packageId = "libc"; } ]; 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" ]; "OSX_10_14" = [ "OSX_10_13" ]; "OSX_10_15" = [ "OSX_10_14" ]; "default" = [ "OSX_10_9" ]; }; resolvedDefaultFeatures = [ "OSX_10_9" "default" ]; }; "semver" = 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"; } ]; features = { "ci" = [ "serde" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "default" ]; }; "semver-parser" = rec { crateName = "semver-parser"; version = "0.7.0"; edition = "2015"; sha256 = "18vhypw6zgccnrlm5ps1pwa0khz7ry927iznpr88b87cagr1v2iq"; authors = [ "Steve Klabnik " ]; }; "serde 0.8.23" = rec { crateName = "serde"; version = "0.8.23"; edition = "2015"; sha256 = "1j4ajipn0sf4ya0crgcb94s848qp7mfc35n6d0q2rf8rk5skzbcx"; authors = [ "Erick Tryzelaar " ]; features = { "alloc" = [ "unstable" ]; "clippy" = [ "dep:clippy" ]; "collections" = [ "alloc" ]; "default" = [ "std" ]; "unstable-testing" = [ "clippy" "unstable" "std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "serde 1.0.197" = rec { crateName = "serde"; version = "1.0.197"; edition = "2018"; sha256 = "1qjcxqd3p4yh5cmmax9q4ics1zy34j5ij32cvjj5dc5rw5rwic9z"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "serde_derive"; packageId = "serde_derive"; optional = true; } { name = "serde_derive"; packageId = "serde_derive"; target = { target, features }: false; } ]; devDependencies = [ { name = "serde_derive"; packageId = "serde_derive"; } ]; features = { "default" = [ "std" ]; "derive" = [ "serde_derive" ]; "serde_derive" = [ "dep:serde_derive" ]; }; resolvedDefaultFeatures = [ "default" "derive" "serde_derive" "std" ]; }; "serde-hjson" = rec { crateName = "serde-hjson"; version = "0.8.2"; edition = "2015"; sha256 = "0lv1qwis9rr767xv9w27y1g1r71ayf02k2wkypawwlkxsrd3r0qb"; authors = [ "Christian Zangl " ]; dependencies = [ { name = "lazy_static"; packageId = "lazy_static 0.2.11"; } { name = "linked-hash-map"; packageId = "linked-hash-map 0.3.0"; optional = true; } { name = "num-traits"; packageId = "num-traits 0.1.43"; } { name = "regex"; packageId = "regex"; } { name = "serde"; packageId = "serde 0.8.23"; } ]; features = { "clippy" = [ "dep:clippy" ]; "default" = [ "preserve_order" ]; "linked-hash-map" = [ "dep:linked-hash-map" ]; "preserve_order" = [ "linked-hash-map" "linked-hash-map/serde_impl" ]; "unstable-testing" = [ "clippy" ]; }; resolvedDefaultFeatures = [ "default" "linked-hash-map" "preserve_order" ]; }; "serde_derive" = rec { crateName = "serde_derive"; version = "1.0.197"; edition = "2015"; sha256 = "02v1x0sdv8qy06lpr6by4ar1n3jz3hmab15cgimpzhgd895v7c3y"; procMacro = true; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; features = [ "proc-macro" ]; } { name = "quote"; packageId = "quote"; usesDefaultFeatures = false; features = [ "proc-macro" ]; } { name = "syn"; packageId = "syn 2.0.52"; usesDefaultFeatures = false; features = [ "clone-impls" "derive" "parsing" "printing" "proc-macro" ]; } ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "serde_json" = rec { crateName = "serde_json"; version = "1.0.114"; edition = "2021"; sha256 = "1q4saigxwkf8bw4y5kp6k33dnavlvvwa2q4zmag59vrjsqdrpw65"; authors = [ "Erick Tryzelaar " "David Tolnay " ]; dependencies = [ { name = "itoa"; packageId = "itoa"; } { name = "ryu"; packageId = "ryu"; } { name = "serde"; packageId = "serde 1.0.197"; usesDefaultFeatures = false; } ]; devDependencies = [ { name = "serde"; packageId = "serde 1.0.197"; features = [ "derive" ]; } ]; features = { "alloc" = [ "serde/alloc" ]; "default" = [ "std" ]; "indexmap" = [ "dep:indexmap" ]; "preserve_order" = [ "indexmap" "std" ]; "std" = [ "serde/std" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "serde_test" = rec { crateName = "serde_test"; version = "0.8.23"; edition = "2015"; sha256 = "1m939j7cgs7i58r6vxf0ffp3nbr8advr8p9dqa9w8zk0z2yks2qi"; authors = [ "Erick Tryzelaar " ]; dependencies = [ { name = "serde"; packageId = "serde 0.8.23"; } ]; }; "slab 0.3.0" = rec { crateName = "slab"; version = "0.3.0"; edition = "2015"; sha256 = "08xw8w61zdfn1094qkq1d554vh5wmm9bqdys8gqqxc4sv2pgrd0p"; authors = [ "Carl Lerche " ]; }; "slab 0.4.9" = rec { crateName = "slab"; version = "0.4.9"; edition = "2018"; sha256 = "0rxvsgir0qw5lkycrqgb1cxsvxzjv9bmx73bk5y42svnzfba94lg"; authors = [ "Carl Lerche " ]; buildDependencies = [ { name = "autocfg"; packageId = "autocfg"; } ]; features = { "default" = [ "std" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "smallvec 0.6.14" = rec { crateName = "smallvec"; version = "0.6.14"; edition = "2015"; sha256 = "1q4hz0ssnv24s6fq5kfp2wzrrprrrjiwc42a0h7s7nwym3mwlzxr"; libPath = "lib.rs"; authors = [ "Simon Sapin " ]; dependencies = [ { name = "maybe-uninit"; packageId = "maybe-uninit"; } ]; features = { "default" = [ "std" ]; "serde" = [ "dep:serde" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "smallvec 1.13.1" = rec { crateName = "smallvec"; version = "1.13.1"; edition = "2018"; sha256 = "1mzk9j117pn3k1gabys0b7nz8cdjsx5xc6q7fwnm8r0an62d7v76"; authors = [ "The Servo Project Developers" ]; features = { "arbitrary" = [ "dep:arbitrary" ]; "const_new" = [ "const_generics" ]; "drain_keep_rest" = [ "drain_filter" ]; "serde" = [ "dep:serde" ]; }; }; "socket2" = rec { crateName = "socket2"; version = "0.5.6"; edition = "2021"; sha256 = "0w98g7dh9m74vpxln401hl4knpjzrx7jhng7cbh46x9vm70dkzq5"; authors = [ "Alex Crichton " "Thomas de Zeeuw " ]; dependencies = [ { name = "libc"; packageId = "libc"; target = { target, features }: (target."unix" or false); } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Foundation" "Win32_Networking_WinSock" "Win32_System_IO" "Win32_System_Threading" "Win32_System_WindowsProgramming" ]; } ]; features = { }; }; "syn 1.0.109" = rec { crateName = "syn"; version = "1.0.109"; edition = "2018"; sha256 = "0ds2if4600bd59wsv7jjgfkayfzy3hnazs394kz6zdkmna8l3dkj"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; } { name = "quote"; packageId = "quote"; optional = true; usesDefaultFeatures = false; } { name = "unicode-ident"; packageId = "unicode-ident"; } ]; features = { "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ]; "printing" = [ "quote" ]; "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ]; "quote" = [ "dep:quote" ]; "test" = [ "syn-test-suite/all-features" ]; }; resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "extra-traits" "fold" "full" "parsing" "printing" "proc-macro" "quote" "visit" ]; }; "syn 2.0.52" = rec { crateName = "syn"; version = "2.0.52"; edition = "2021"; sha256 = "01saay6pi9x19f6lin3mw3xawdyyagpzzy39ghz2rw6i6rdx36dn"; authors = [ "David Tolnay " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; } { name = "quote"; packageId = "quote"; optional = true; usesDefaultFeatures = false; } { name = "unicode-ident"; packageId = "unicode-ident"; } ]; features = { "default" = [ "derive" "parsing" "printing" "clone-impls" "proc-macro" ]; "printing" = [ "quote" ]; "proc-macro" = [ "proc-macro2/proc-macro" "quote/proc-macro" ]; "quote" = [ "dep:quote" ]; "test" = [ "syn-test-suite/all-features" ]; }; resolvedDefaultFeatures = [ "clone-impls" "default" "derive" "full" "parsing" "printing" "proc-macro" "quote" "visit" ]; }; "synstructure" = rec { crateName = "synstructure"; version = "0.12.6"; edition = "2018"; sha256 = "03r1lydbf3japnlpc4wka7y90pmz1i0danaj3f9a7b431akdlszk"; authors = [ "Nika Layzell " ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; usesDefaultFeatures = false; } { name = "quote"; packageId = "quote"; usesDefaultFeatures = false; } { name = "syn"; packageId = "syn 1.0.109"; usesDefaultFeatures = false; features = [ "derive" "parsing" "printing" "clone-impls" "visit" "extra-traits" ]; } { name = "unicode-xid"; packageId = "unicode-xid"; } ]; features = { "default" = [ "proc-macro" ]; "proc-macro" = [ "proc-macro2/proc-macro" "syn/proc-macro" "quote/proc-macro" ]; }; resolvedDefaultFeatures = [ "default" "proc-macro" ]; }; "tempfile" = rec { crateName = "tempfile"; version = "3.10.1"; edition = "2021"; sha256 = "1wdzz35ri168jn9al4s1g2rnsrr5ci91khgarc2rvpb3nappzdw5"; authors = [ "Steven Allen " "The Rust Project Developers" "Ashley Mannix " "Jason White " ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 1.0.0"; } { name = "fastrand"; packageId = "fastrand"; } { name = "rustix"; packageId = "rustix"; target = { target, features }: ((target."unix" or false) || ("wasi" == target."os" or null)); features = [ "fs" ]; } { name = "windows-sys"; packageId = "windows-sys"; target = { target, features }: (target."windows" or false); features = [ "Win32_Storage_FileSystem" "Win32_Foundation" ]; } ]; features = { }; }; "termcolor" = rec { crateName = "termcolor"; version = "1.4.1"; edition = "2018"; sha256 = "0mappjh3fj3p2nmrg4y7qv94rchwi9mzmgmfflr8p2awdj7lyy86"; authors = [ "Andrew Gallant " ]; dependencies = [ { name = "winapi-util"; packageId = "winapi-util"; target = { target, features }: (target."windows" or false); } ]; }; "tokio" = rec { crateName = "tokio"; version = "0.1.22"; edition = "2015"; sha256 = "1xhaadfmm6m37f79xv5020gc3np9wqza3bq95ymp522qpfsw02as"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; optional = true; } { name = "futures"; packageId = "futures"; } { name = "mio"; packageId = "mio"; optional = true; } { name = "num_cpus"; packageId = "num_cpus"; optional = true; } { name = "tokio-codec"; packageId = "tokio-codec"; optional = true; } { name = "tokio-current-thread"; packageId = "tokio-current-thread"; optional = true; } { name = "tokio-executor"; packageId = "tokio-executor"; optional = true; } { name = "tokio-fs"; packageId = "tokio-fs"; optional = true; } { name = "tokio-io"; packageId = "tokio-io"; optional = true; } { name = "tokio-reactor"; packageId = "tokio-reactor"; optional = true; } { name = "tokio-sync"; packageId = "tokio-sync"; optional = true; } { name = "tokio-tcp"; packageId = "tokio-tcp"; optional = true; } { name = "tokio-threadpool"; packageId = "tokio-threadpool"; optional = true; } { name = "tokio-timer"; packageId = "tokio-timer 0.2.13"; optional = true; } { name = "tokio-udp"; packageId = "tokio-udp"; optional = true; } { name = "tokio-uds"; packageId = "tokio-uds"; optional = true; target = { target, features }: (target."unix" or false); } ]; devDependencies = [ { name = "num_cpus"; packageId = "num_cpus"; } ]; features = { "bytes" = [ "dep:bytes" ]; "codec" = [ "io" "tokio-codec" ]; "default" = [ "codec" "fs" "io" "reactor" "rt-full" "sync" "tcp" "timer" "udp" "uds" ]; "experimental-tracing" = [ "tracing-core" ]; "fs" = [ "tokio-fs" ]; "io" = [ "bytes" "tokio-io" ]; "mio" = [ "dep:mio" ]; "num_cpus" = [ "dep:num_cpus" ]; "reactor" = [ "io" "mio" "tokio-reactor" ]; "rt-full" = [ "num_cpus" "reactor" "timer" "tokio-current-thread" "tokio-executor" "tokio-threadpool" ]; "sync" = [ "tokio-sync" ]; "tcp" = [ "tokio-tcp" ]; "timer" = [ "tokio-timer" ]; "tokio-codec" = [ "dep:tokio-codec" ]; "tokio-current-thread" = [ "dep:tokio-current-thread" ]; "tokio-executor" = [ "dep:tokio-executor" ]; "tokio-fs" = [ "dep:tokio-fs" ]; "tokio-io" = [ "dep:tokio-io" ]; "tokio-reactor" = [ "dep:tokio-reactor" ]; "tokio-sync" = [ "dep:tokio-sync" ]; "tokio-tcp" = [ "dep:tokio-tcp" ]; "tokio-threadpool" = [ "dep:tokio-threadpool" ]; "tokio-timer" = [ "dep:tokio-timer" ]; "tokio-udp" = [ "dep:tokio-udp" ]; "tokio-uds" = [ "dep:tokio-uds" ]; "tracing-core" = [ "dep:tracing-core" ]; "udp" = [ "tokio-udp" ]; "uds" = [ "tokio-uds" ]; }; resolvedDefaultFeatures = [ "bytes" "codec" "default" "fs" "io" "mio" "num_cpus" "reactor" "rt-full" "sync" "tcp" "timer" "tokio-codec" "tokio-current-thread" "tokio-executor" "tokio-fs" "tokio-io" "tokio-reactor" "tokio-sync" "tokio-tcp" "tokio-threadpool" "tokio-timer" "tokio-udp" "tokio-uds" "udp" "uds" ]; }; "tokio-codec" = rec { crateName = "tokio-codec"; version = "0.1.2"; edition = "2015"; sha256 = "0swpfngcb331lzggk6j68yks6w0bnw35vpl4hv8p03msc239kci5"; authors = [ "Carl Lerche " "Bryan Burgers " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "futures"; packageId = "futures"; } { name = "tokio-io"; packageId = "tokio-io"; } ]; }; "tokio-core" = rec { crateName = "tokio-core"; version = "0.1.18"; edition = "2015"; sha256 = "1m7zij19xy13wmlb7a1bghvi4vs8s1hlyggnaajvqfj46i9kkcc7"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "futures"; packageId = "futures"; } { name = "iovec"; packageId = "iovec"; } { name = "log"; packageId = "log"; } { name = "mio"; packageId = "mio"; } { name = "scoped-tls"; packageId = "scoped-tls"; } { name = "tokio"; packageId = "tokio"; } { name = "tokio-executor"; packageId = "tokio-executor"; } { name = "tokio-io"; packageId = "tokio-io"; } { name = "tokio-reactor"; packageId = "tokio-reactor"; } { name = "tokio-timer"; packageId = "tokio-timer 0.2.13"; } ]; }; "tokio-current-thread" = rec { crateName = "tokio-current-thread"; version = "0.1.7"; edition = "2015"; sha256 = "03p2w316ha0irgzvy37njx9hl71133gcrmrq4801w4rzm0r0xpmi"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "futures"; packageId = "futures"; } { name = "tokio-executor"; packageId = "tokio-executor"; } ]; }; "tokio-executor" = rec { crateName = "tokio-executor"; version = "0.1.10"; edition = "2015"; sha256 = "0w8n78d2vixs1vghqc4wy9w0d1h6qkli51c1yzhzbns88n7inbgv"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "crossbeam-utils"; packageId = "crossbeam-utils"; } { name = "futures"; packageId = "futures"; } ]; }; "tokio-fs" = rec { crateName = "tokio-fs"; version = "0.1.7"; edition = "2015"; sha256 = "1x3gkdi5x7bjlzzg7qlnymb549rb546p0nykxsh04qyaw0314yi9"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "futures"; packageId = "futures"; } { name = "tokio-io"; packageId = "tokio-io"; } { name = "tokio-threadpool"; packageId = "tokio-threadpool"; } ]; devDependencies = [ { name = "tokio-io"; packageId = "tokio-io"; } ]; }; "tokio-io" = rec { crateName = "tokio-io"; version = "0.1.13"; edition = "2015"; sha256 = "0x06zyzinans1pn90g6i150lgixijdf1cg8y2gipjd09ms58dz2p"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "futures"; packageId = "futures"; } { name = "log"; packageId = "log"; } ]; }; "tokio-mockstream" = rec { crateName = "tokio-mockstream"; version = "1.1.0"; edition = "2015"; sha256 = "0mg1i39cl8x32wxwbn74hlirks8a6f3g0gfzkb0n0zwbxwvc9gs1"; authors = [ "Aaron Weiss " ]; dependencies = [ { name = "futures"; packageId = "futures"; } { name = "tokio-io"; packageId = "tokio-io"; } ]; }; "tokio-reactor" = rec { crateName = "tokio-reactor"; version = "0.1.12"; edition = "2015"; sha256 = "0l8klnd41q55f3ialzz0lb7s5bfwa38nh86sa9vai2xsqh75kg09"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "crossbeam-utils"; packageId = "crossbeam-utils"; } { name = "futures"; packageId = "futures"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0"; } { name = "log"; packageId = "log"; } { name = "mio"; packageId = "mio"; } { name = "num_cpus"; packageId = "num_cpus"; } { name = "parking_lot"; packageId = "parking_lot 0.9.0"; } { name = "slab"; packageId = "slab 0.4.9"; } { name = "tokio-executor"; packageId = "tokio-executor"; } { name = "tokio-io"; packageId = "tokio-io"; } { name = "tokio-sync"; packageId = "tokio-sync"; } ]; devDependencies = [ { name = "num_cpus"; packageId = "num_cpus"; } ]; }; "tokio-sync" = rec { crateName = "tokio-sync"; version = "0.1.8"; edition = "2015"; sha256 = "1vkxz0y7qf9sshfpxvn506pvxy4vza8piavd8p64y5n85cam1zpd"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "fnv"; packageId = "fnv"; } { name = "futures"; packageId = "futures"; } ]; }; "tokio-tcp" = rec { crateName = "tokio-tcp"; version = "0.1.4"; edition = "2015"; sha256 = "0whzqnkyfym1ipzznibyjl3j9281walq4n0q5xs2xdz3cvniipwq"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "futures"; packageId = "futures"; } { name = "iovec"; packageId = "iovec"; } { name = "mio"; packageId = "mio"; } { name = "tokio-io"; packageId = "tokio-io"; } { name = "tokio-reactor"; packageId = "tokio-reactor"; } ]; }; "tokio-threadpool" = rec { crateName = "tokio-threadpool"; version = "0.1.18"; edition = "2015"; sha256 = "12azq8jm71b7hdm72pxrgqm2879bn6b0fcdl1s7i2k3qh5jhnwnz"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "crossbeam-deque"; packageId = "crossbeam-deque"; } { name = "crossbeam-queue"; packageId = "crossbeam-queue"; } { name = "crossbeam-utils"; packageId = "crossbeam-utils"; } { name = "futures"; packageId = "futures"; } { name = "lazy_static"; packageId = "lazy_static 1.4.0"; } { name = "log"; packageId = "log"; } { name = "num_cpus"; packageId = "num_cpus"; } { name = "slab"; packageId = "slab 0.4.9"; } { name = "tokio-executor"; packageId = "tokio-executor"; } ]; }; "tokio-timer 0.1.2" = rec { crateName = "tokio-timer"; version = "0.1.2"; edition = "2015"; sha256 = "1z0fwbh5bm6hdbfm0y17fa5l60na7fl9vbca7wdzz1vp0f0ffcb1"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "futures"; packageId = "futures"; } { name = "slab"; packageId = "slab 0.3.0"; } ]; }; "tokio-timer 0.2.13" = rec { crateName = "tokio-timer"; version = "0.2.13"; edition = "2015"; sha256 = "15pjjj6daks3sii8p24a509b0dapl2kyk740nwfgz59w64nly14k"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "crossbeam-utils"; packageId = "crossbeam-utils"; } { name = "futures"; packageId = "futures"; } { name = "slab"; packageId = "slab 0.4.9"; } { name = "tokio-executor"; packageId = "tokio-executor"; } ]; }; "tokio-tls" = rec { crateName = "tokio-tls"; version = "0.2.1"; edition = "2015"; sha256 = "0z0gmvv7jrpan6y42p5f5wd48rqcd96igp592w1c5cr573c8qjrm"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "futures"; packageId = "futures"; } { name = "native-tls"; packageId = "native-tls"; } { name = "tokio-io"; packageId = "tokio-io"; } ]; }; "tokio-udp" = rec { crateName = "tokio-udp"; version = "0.1.6"; edition = "2015"; sha256 = "10hdcnxdp0dxvj44jl1nrrpg30jbisqclbqs0f5w6f8bc47b3872"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "futures"; packageId = "futures"; } { name = "log"; packageId = "log"; } { name = "mio"; packageId = "mio"; } { name = "tokio-codec"; packageId = "tokio-codec"; } { name = "tokio-io"; packageId = "tokio-io"; } { name = "tokio-reactor"; packageId = "tokio-reactor"; } ]; }; "tokio-uds" = rec { crateName = "tokio-uds"; version = "0.2.7"; edition = "2015"; sha256 = "1q74sydx22l4mkmrz02l4i5swddwr1pryxvhrzdwkj0i86na8mxb"; authors = [ "Carl Lerche " ]; dependencies = [ { name = "bytes"; packageId = "bytes"; } { name = "futures"; packageId = "futures"; } { name = "iovec"; packageId = "iovec"; } { name = "libc"; packageId = "libc"; } { name = "log"; packageId = "log"; } { name = "mio"; packageId = "mio"; } { name = "mio-uds"; packageId = "mio-uds"; } { name = "tokio-codec"; packageId = "tokio-codec"; } { name = "tokio-io"; packageId = "tokio-io"; } { name = "tokio-reactor"; packageId = "tokio-reactor"; } ]; }; "toml" = rec { crateName = "toml"; version = "0.4.10"; edition = "2015"; sha256 = "07qilkzinn8z13vq2sss65n2lza7wrmqpvkbclw919m3f7y691km"; authors = [ "Alex Crichton " ]; dependencies = [ { name = "serde"; packageId = "serde 1.0.197"; } ]; }; "unicode-ident" = rec { crateName = "unicode-ident"; version = "1.0.12"; edition = "2018"; sha256 = "0jzf1znfpb2gx8nr8mvmyqs1crnv79l57nxnbiszc7xf7ynbjm1k"; authors = [ "David Tolnay " ]; }; "unicode-xid" = rec { crateName = "unicode-xid"; version = "0.2.4"; edition = "2015"; sha256 = "131dfzf7d8fsr1ivch34x42c2d1ik5ig3g78brxncnn0r1sdyqpr"; authors = [ "erick.tryzelaar " "kwantam " "Manish Goregaokar " ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "vcpkg" = rec { crateName = "vcpkg"; version = "0.2.15"; edition = "2015"; sha256 = "09i4nf5y8lig6xgj3f7fyrvzd3nlaw4znrihw8psidvv5yk4xkdc"; authors = [ "Jim McGrath " ]; }; "version_check" = rec { crateName = "version_check"; version = "0.1.5"; edition = "2015"; sha256 = "1pf91pvj8n6akh7w6j5ypka6aqz08b3qpzgs0ak2kjf4frkiljwi"; authors = [ "Sergio Benitez " ]; }; "wasi" = rec { crateName = "wasi"; version = "0.9.0+wasi-snapshot-preview1"; edition = "2018"; sha256 = "06g5v3vrdapfzvfq662cij7v8a1flwr2my45nnncdv2galrdzkfc"; authors = [ "The Cranelift Project Developers" ]; features = { "compiler_builtins" = [ "dep:compiler_builtins" ]; "core" = [ "dep:core" ]; "default" = [ "std" ]; "rustc-dep-of-std" = [ "compiler_builtins" "core" "rustc-std-workspace-alloc" ]; "rustc-std-workspace-alloc" = [ "dep:rustc-std-workspace-alloc" ]; }; resolvedDefaultFeatures = [ "default" "std" ]; }; "wasm-bindgen" = rec { crateName = "wasm-bindgen"; version = "0.2.92"; edition = "2018"; sha256 = "1a4mcw13nsk3fr8fxjzf9kk1wj88xkfsmnm0pjraw01ryqfm7qjb"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "cfg-if"; packageId = "cfg-if 1.0.0"; } { name = "wasm-bindgen-macro"; packageId = "wasm-bindgen-macro"; } ]; features = { "default" = [ "spans" "std" ]; "enable-interning" = [ "std" ]; "gg-alloc" = [ "wasm-bindgen-test/gg-alloc" ]; "serde" = [ "dep:serde" ]; "serde-serialize" = [ "serde" "serde_json" "std" ]; "serde_json" = [ "dep:serde_json" ]; "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" "spans" "std" ]; }; "wasm-bindgen-backend" = rec { crateName = "wasm-bindgen-backend"; version = "0.2.92"; edition = "2018"; sha256 = "1nj7wxbi49f0rw9d44rjzms26xlw6r76b2mrggx8jfbdjrxphkb1"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "bumpalo"; packageId = "bumpalo"; } { name = "log"; packageId = "log"; } { name = "once_cell"; packageId = "once_cell"; } { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.52"; features = [ "full" ]; } { name = "wasm-bindgen-shared"; packageId = "wasm-bindgen-shared"; } ]; features = { "extra-traits" = [ "syn/extra-traits" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-macro" = rec { crateName = "wasm-bindgen-macro"; version = "0.2.92"; edition = "2018"; sha256 = "09npa1srjjabd6nfph5yc03jb26sycjlxhy0c2a1pdrpx4yq5y51"; procMacro = true; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "quote"; packageId = "quote"; } { name = "wasm-bindgen-macro-support"; packageId = "wasm-bindgen-macro-support"; } ]; features = { "spans" = [ "wasm-bindgen-macro-support/spans" ]; "strict-macro" = [ "wasm-bindgen-macro-support/strict-macro" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-macro-support" = rec { crateName = "wasm-bindgen-macro-support"; version = "0.2.92"; edition = "2018"; sha256 = "1dqv2xs8zcyw4kjgzj84bknp2h76phmsb3n7j6hn396h4ssifkz9"; authors = [ "The wasm-bindgen Developers" ]; dependencies = [ { name = "proc-macro2"; packageId = "proc-macro2"; } { name = "quote"; packageId = "quote"; } { name = "syn"; packageId = "syn 2.0.52"; features = [ "visit" "full" ]; } { name = "wasm-bindgen-backend"; packageId = "wasm-bindgen-backend"; } { name = "wasm-bindgen-shared"; packageId = "wasm-bindgen-shared"; } ]; features = { "extra-traits" = [ "syn/extra-traits" ]; "spans" = [ "wasm-bindgen-backend/spans" ]; }; resolvedDefaultFeatures = [ "spans" ]; }; "wasm-bindgen-shared" = rec { crateName = "wasm-bindgen-shared"; version = "0.2.92"; edition = "2018"; links = "wasm_bindgen"; sha256 = "15kyavsrna2cvy30kg03va257fraf9x00ny554vxngvpyaa0q6dg"; authors = [ "The wasm-bindgen Developers" ]; }; "winapi 0.2.8" = rec { crateName = "winapi"; version = "0.2.8"; edition = "2015"; sha256 = "0yh816lh6lf56dpsgxy189c2ai1z3j8mw9si6izqb6wsjkbcjz8n"; authors = [ "Peter Atashian " ]; }; "winapi 0.3.9" = rec { crateName = "winapi"; version = "0.3.9"; edition = "2015"; sha256 = "06gl025x418lchw1wxj64ycr7gha83m44cjr5sarhynd9xkrm0sw"; authors = [ "Peter Atashian " ]; dependencies = [ { name = "winapi-i686-pc-windows-gnu"; packageId = "winapi-i686-pc-windows-gnu"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "i686-pc-windows-gnu"); } { name = "winapi-x86_64-pc-windows-gnu"; packageId = "winapi-x86_64-pc-windows-gnu"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "x86_64-pc-windows-gnu"); } ]; features = { "debug" = [ "impl-debug" ]; }; resolvedDefaultFeatures = [ "consoleapi" "errhandlingapi" "fileapi" "handleapi" "minwinbase" "minwindef" "ntstatus" "processenv" "std" "sysinfoapi" "winbase" "wincon" "winerror" "winnt" "winsock2" "ws2def" "ws2ipdef" "ws2tcpip" ]; }; "winapi-build" = rec { crateName = "winapi-build"; version = "0.1.1"; edition = "2015"; sha256 = "1g4rqsgjky0a7530qajn2bbfcrl2v0zb39idgdws9b1l7gp5wc9d"; libName = "build"; authors = [ "Peter Atashian " ]; }; "winapi-i686-pc-windows-gnu" = rec { crateName = "winapi-i686-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; sha256 = "1dmpa6mvcvzz16zg6d5vrfy4bxgg541wxrcip7cnshi06v38ffxc"; authors = [ "Peter Atashian " ]; }; "winapi-util" = rec { crateName = "winapi-util"; version = "0.1.6"; edition = "2021"; sha256 = "15i5lm39wd44004i9d5qspry2cynkrpvwzghr6s2c3dsk28nz7pj"; authors = [ "Andrew Gallant " ]; dependencies = [ { name = "winapi"; packageId = "winapi 0.3.9"; target = { target, features }: (target."windows" or false); features = [ "std" "consoleapi" "errhandlingapi" "fileapi" "minwindef" "processenv" "sysinfoapi" "winbase" "wincon" "winerror" "winnt" ]; } ]; }; "winapi-x86_64-pc-windows-gnu" = rec { crateName = "winapi-x86_64-pc-windows-gnu"; version = "0.4.0"; edition = "2015"; sha256 = "0gqq64czqb64kskjryj8isp62m2sgvx25yyj3kpc2myh85w24bki"; authors = [ "Peter Atashian " ]; }; "windows-core" = rec { crateName = "windows-core"; version = "0.52.0"; edition = "2021"; sha256 = "1nc3qv7sy24x0nlnb32f7alzpd6f72l4p24vl65vydbyil669ark"; authors = [ "Microsoft" ]; dependencies = [ { name = "windows-targets"; packageId = "windows-targets 0.52.4"; } ]; features = { }; resolvedDefaultFeatures = [ "default" ]; }; "windows-sys" = rec { crateName = "windows-sys"; version = "0.52.0"; edition = "2021"; sha256 = "0gd3v4ji88490zgb6b5mq5zgbvwv7zx1ibn8v3x83rwcdbryaar8"; authors = [ "Microsoft" ]; dependencies = [ { name = "windows-targets"; packageId = "windows-targets 0.52.4"; } ]; features = { "Wdk_Foundation" = [ "Wdk" ]; "Wdk_Graphics" = [ "Wdk" ]; "Wdk_Graphics_Direct3D" = [ "Wdk_Graphics" ]; "Wdk_Storage" = [ "Wdk" ]; "Wdk_Storage_FileSystem" = [ "Wdk_Storage" ]; "Wdk_Storage_FileSystem_Minifilters" = [ "Wdk_Storage_FileSystem" ]; "Wdk_System" = [ "Wdk" ]; "Wdk_System_IO" = [ "Wdk_System" ]; "Wdk_System_OfflineRegistry" = [ "Wdk_System" ]; "Wdk_System_Registry" = [ "Wdk_System" ]; "Wdk_System_SystemInformation" = [ "Wdk_System" ]; "Wdk_System_SystemServices" = [ "Wdk_System" ]; "Wdk_System_Threading" = [ "Wdk_System" ]; "Win32_Data" = [ "Win32" ]; "Win32_Data_HtmlHelp" = [ "Win32_Data" ]; "Win32_Data_RightsManagement" = [ "Win32_Data" ]; "Win32_Devices" = [ "Win32" ]; "Win32_Devices_AllJoyn" = [ "Win32_Devices" ]; "Win32_Devices_BiometricFramework" = [ "Win32_Devices" ]; "Win32_Devices_Bluetooth" = [ "Win32_Devices" ]; "Win32_Devices_Communication" = [ "Win32_Devices" ]; "Win32_Devices_DeviceAndDriverInstallation" = [ "Win32_Devices" ]; "Win32_Devices_DeviceQuery" = [ "Win32_Devices" ]; "Win32_Devices_Display" = [ "Win32_Devices" ]; "Win32_Devices_Enumeration" = [ "Win32_Devices" ]; "Win32_Devices_Enumeration_Pnp" = [ "Win32_Devices_Enumeration" ]; "Win32_Devices_Fax" = [ "Win32_Devices" ]; "Win32_Devices_HumanInterfaceDevice" = [ "Win32_Devices" ]; "Win32_Devices_PortableDevices" = [ "Win32_Devices" ]; "Win32_Devices_Properties" = [ "Win32_Devices" ]; "Win32_Devices_Pwm" = [ "Win32_Devices" ]; "Win32_Devices_Sensors" = [ "Win32_Devices" ]; "Win32_Devices_SerialCommunication" = [ "Win32_Devices" ]; "Win32_Devices_Tapi" = [ "Win32_Devices" ]; "Win32_Devices_Usb" = [ "Win32_Devices" ]; "Win32_Devices_WebServicesOnDevices" = [ "Win32_Devices" ]; "Win32_Foundation" = [ "Win32" ]; "Win32_Gaming" = [ "Win32" ]; "Win32_Globalization" = [ "Win32" ]; "Win32_Graphics" = [ "Win32" ]; "Win32_Graphics_Dwm" = [ "Win32_Graphics" ]; "Win32_Graphics_Gdi" = [ "Win32_Graphics" ]; "Win32_Graphics_GdiPlus" = [ "Win32_Graphics" ]; "Win32_Graphics_Hlsl" = [ "Win32_Graphics" ]; "Win32_Graphics_OpenGL" = [ "Win32_Graphics" ]; "Win32_Graphics_Printing" = [ "Win32_Graphics" ]; "Win32_Graphics_Printing_PrintTicket" = [ "Win32_Graphics_Printing" ]; "Win32_Management" = [ "Win32" ]; "Win32_Management_MobileDeviceManagementRegistration" = [ "Win32_Management" ]; "Win32_Media" = [ "Win32" ]; "Win32_Media_Audio" = [ "Win32_Media" ]; "Win32_Media_DxMediaObjects" = [ "Win32_Media" ]; "Win32_Media_KernelStreaming" = [ "Win32_Media" ]; "Win32_Media_Multimedia" = [ "Win32_Media" ]; "Win32_Media_Streaming" = [ "Win32_Media" ]; "Win32_Media_WindowsMediaFormat" = [ "Win32_Media" ]; "Win32_NetworkManagement" = [ "Win32" ]; "Win32_NetworkManagement_Dhcp" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_Dns" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_InternetConnectionWizard" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_IpHelper" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_Multicast" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_Ndis" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_NetBios" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_NetManagement" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_NetShell" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_NetworkDiagnosticsFramework" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_P2P" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_QoS" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_Rras" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_Snmp" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_WNet" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_WebDav" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_WiFi" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_WindowsConnectionManager" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_WindowsFilteringPlatform" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_WindowsFirewall" = [ "Win32_NetworkManagement" ]; "Win32_NetworkManagement_WindowsNetworkVirtualization" = [ "Win32_NetworkManagement" ]; "Win32_Networking" = [ "Win32" ]; "Win32_Networking_ActiveDirectory" = [ "Win32_Networking" ]; "Win32_Networking_Clustering" = [ "Win32_Networking" ]; "Win32_Networking_HttpServer" = [ "Win32_Networking" ]; "Win32_Networking_Ldap" = [ "Win32_Networking" ]; "Win32_Networking_WebSocket" = [ "Win32_Networking" ]; "Win32_Networking_WinHttp" = [ "Win32_Networking" ]; "Win32_Networking_WinInet" = [ "Win32_Networking" ]; "Win32_Networking_WinSock" = [ "Win32_Networking" ]; "Win32_Networking_WindowsWebServices" = [ "Win32_Networking" ]; "Win32_Security" = [ "Win32" ]; "Win32_Security_AppLocker" = [ "Win32_Security" ]; "Win32_Security_Authentication" = [ "Win32_Security" ]; "Win32_Security_Authentication_Identity" = [ "Win32_Security_Authentication" ]; "Win32_Security_Authorization" = [ "Win32_Security" ]; "Win32_Security_Credentials" = [ "Win32_Security" ]; "Win32_Security_Cryptography" = [ "Win32_Security" ]; "Win32_Security_Cryptography_Catalog" = [ "Win32_Security_Cryptography" ]; "Win32_Security_Cryptography_Certificates" = [ "Win32_Security_Cryptography" ]; "Win32_Security_Cryptography_Sip" = [ "Win32_Security_Cryptography" ]; "Win32_Security_Cryptography_UI" = [ "Win32_Security_Cryptography" ]; "Win32_Security_DiagnosticDataQuery" = [ "Win32_Security" ]; "Win32_Security_DirectoryServices" = [ "Win32_Security" ]; "Win32_Security_EnterpriseData" = [ "Win32_Security" ]; "Win32_Security_ExtensibleAuthenticationProtocol" = [ "Win32_Security" ]; "Win32_Security_Isolation" = [ "Win32_Security" ]; "Win32_Security_LicenseProtection" = [ "Win32_Security" ]; "Win32_Security_NetworkAccessProtection" = [ "Win32_Security" ]; "Win32_Security_WinTrust" = [ "Win32_Security" ]; "Win32_Security_WinWlx" = [ "Win32_Security" ]; "Win32_Storage" = [ "Win32" ]; "Win32_Storage_Cabinets" = [ "Win32_Storage" ]; "Win32_Storage_CloudFilters" = [ "Win32_Storage" ]; "Win32_Storage_Compression" = [ "Win32_Storage" ]; "Win32_Storage_DistributedFileSystem" = [ "Win32_Storage" ]; "Win32_Storage_FileHistory" = [ "Win32_Storage" ]; "Win32_Storage_FileSystem" = [ "Win32_Storage" ]; "Win32_Storage_Imapi" = [ "Win32_Storage" ]; "Win32_Storage_IndexServer" = [ "Win32_Storage" ]; "Win32_Storage_InstallableFileSystems" = [ "Win32_Storage" ]; "Win32_Storage_IscsiDisc" = [ "Win32_Storage" ]; "Win32_Storage_Jet" = [ "Win32_Storage" ]; "Win32_Storage_Nvme" = [ "Win32_Storage" ]; "Win32_Storage_OfflineFiles" = [ "Win32_Storage" ]; "Win32_Storage_OperationRecorder" = [ "Win32_Storage" ]; "Win32_Storage_Packaging" = [ "Win32_Storage" ]; "Win32_Storage_Packaging_Appx" = [ "Win32_Storage_Packaging" ]; "Win32_Storage_ProjectedFileSystem" = [ "Win32_Storage" ]; "Win32_Storage_StructuredStorage" = [ "Win32_Storage" ]; "Win32_Storage_Vhd" = [ "Win32_Storage" ]; "Win32_Storage_Xps" = [ "Win32_Storage" ]; "Win32_System" = [ "Win32" ]; "Win32_System_AddressBook" = [ "Win32_System" ]; "Win32_System_Antimalware" = [ "Win32_System" ]; "Win32_System_ApplicationInstallationAndServicing" = [ "Win32_System" ]; "Win32_System_ApplicationVerifier" = [ "Win32_System" ]; "Win32_System_ClrHosting" = [ "Win32_System" ]; "Win32_System_Com" = [ "Win32_System" ]; "Win32_System_Com_Marshal" = [ "Win32_System_Com" ]; "Win32_System_Com_StructuredStorage" = [ "Win32_System_Com" ]; "Win32_System_Com_Urlmon" = [ "Win32_System_Com" ]; "Win32_System_ComponentServices" = [ "Win32_System" ]; "Win32_System_Console" = [ "Win32_System" ]; "Win32_System_CorrelationVector" = [ "Win32_System" ]; "Win32_System_DataExchange" = [ "Win32_System" ]; "Win32_System_DeploymentServices" = [ "Win32_System" ]; "Win32_System_DeveloperLicensing" = [ "Win32_System" ]; "Win32_System_Diagnostics" = [ "Win32_System" ]; "Win32_System_Diagnostics_Ceip" = [ "Win32_System_Diagnostics" ]; "Win32_System_Diagnostics_Debug" = [ "Win32_System_Diagnostics" ]; "Win32_System_Diagnostics_Debug_Extensions" = [ "Win32_System_Diagnostics_Debug" ]; "Win32_System_Diagnostics_Etw" = [ "Win32_System_Diagnostics" ]; "Win32_System_Diagnostics_ProcessSnapshotting" = [ "Win32_System_Diagnostics" ]; "Win32_System_Diagnostics_ToolHelp" = [ "Win32_System_Diagnostics" ]; "Win32_System_DistributedTransactionCoordinator" = [ "Win32_System" ]; "Win32_System_Environment" = [ "Win32_System" ]; "Win32_System_ErrorReporting" = [ "Win32_System" ]; "Win32_System_EventCollector" = [ "Win32_System" ]; "Win32_System_EventLog" = [ "Win32_System" ]; "Win32_System_EventNotificationService" = [ "Win32_System" ]; "Win32_System_GroupPolicy" = [ "Win32_System" ]; "Win32_System_HostCompute" = [ "Win32_System" ]; "Win32_System_HostComputeNetwork" = [ "Win32_System" ]; "Win32_System_HostComputeSystem" = [ "Win32_System" ]; "Win32_System_Hypervisor" = [ "Win32_System" ]; "Win32_System_IO" = [ "Win32_System" ]; "Win32_System_Iis" = [ "Win32_System" ]; "Win32_System_Ioctl" = [ "Win32_System" ]; "Win32_System_JobObjects" = [ "Win32_System" ]; "Win32_System_Js" = [ "Win32_System" ]; "Win32_System_Kernel" = [ "Win32_System" ]; "Win32_System_LibraryLoader" = [ "Win32_System" ]; "Win32_System_Mailslots" = [ "Win32_System" ]; "Win32_System_Mapi" = [ "Win32_System" ]; "Win32_System_Memory" = [ "Win32_System" ]; "Win32_System_Memory_NonVolatile" = [ "Win32_System_Memory" ]; "Win32_System_MessageQueuing" = [ "Win32_System" ]; "Win32_System_MixedReality" = [ "Win32_System" ]; "Win32_System_Ole" = [ "Win32_System" ]; "Win32_System_PasswordManagement" = [ "Win32_System" ]; "Win32_System_Performance" = [ "Win32_System" ]; "Win32_System_Performance_HardwareCounterProfiling" = [ "Win32_System_Performance" ]; "Win32_System_Pipes" = [ "Win32_System" ]; "Win32_System_Power" = [ "Win32_System" ]; "Win32_System_ProcessStatus" = [ "Win32_System" ]; "Win32_System_Recovery" = [ "Win32_System" ]; "Win32_System_Registry" = [ "Win32_System" ]; "Win32_System_RemoteDesktop" = [ "Win32_System" ]; "Win32_System_RemoteManagement" = [ "Win32_System" ]; "Win32_System_RestartManager" = [ "Win32_System" ]; "Win32_System_Restore" = [ "Win32_System" ]; "Win32_System_Rpc" = [ "Win32_System" ]; "Win32_System_Search" = [ "Win32_System" ]; "Win32_System_Search_Common" = [ "Win32_System_Search" ]; "Win32_System_SecurityCenter" = [ "Win32_System" ]; "Win32_System_Services" = [ "Win32_System" ]; "Win32_System_SetupAndMigration" = [ "Win32_System" ]; "Win32_System_Shutdown" = [ "Win32_System" ]; "Win32_System_StationsAndDesktops" = [ "Win32_System" ]; "Win32_System_SubsystemForLinux" = [ "Win32_System" ]; "Win32_System_SystemInformation" = [ "Win32_System" ]; "Win32_System_SystemServices" = [ "Win32_System" ]; "Win32_System_Threading" = [ "Win32_System" ]; "Win32_System_Time" = [ "Win32_System" ]; "Win32_System_TpmBaseServices" = [ "Win32_System" ]; "Win32_System_UserAccessLogging" = [ "Win32_System" ]; "Win32_System_Variant" = [ "Win32_System" ]; "Win32_System_VirtualDosMachines" = [ "Win32_System" ]; "Win32_System_WindowsProgramming" = [ "Win32_System" ]; "Win32_System_Wmi" = [ "Win32_System" ]; "Win32_UI" = [ "Win32" ]; "Win32_UI_Accessibility" = [ "Win32_UI" ]; "Win32_UI_ColorSystem" = [ "Win32_UI" ]; "Win32_UI_Controls" = [ "Win32_UI" ]; "Win32_UI_Controls_Dialogs" = [ "Win32_UI_Controls" ]; "Win32_UI_HiDpi" = [ "Win32_UI" ]; "Win32_UI_Input" = [ "Win32_UI" ]; "Win32_UI_Input_Ime" = [ "Win32_UI_Input" ]; "Win32_UI_Input_KeyboardAndMouse" = [ "Win32_UI_Input" ]; "Win32_UI_Input_Pointer" = [ "Win32_UI_Input" ]; "Win32_UI_Input_Touch" = [ "Win32_UI_Input" ]; "Win32_UI_Input_XboxController" = [ "Win32_UI_Input" ]; "Win32_UI_InteractionContext" = [ "Win32_UI" ]; "Win32_UI_Magnification" = [ "Win32_UI" ]; "Win32_UI_Shell" = [ "Win32_UI" ]; "Win32_UI_Shell_PropertiesSystem" = [ "Win32_UI_Shell" ]; "Win32_UI_TabletPC" = [ "Win32_UI" ]; "Win32_UI_TextServices" = [ "Win32_UI" ]; "Win32_UI_WindowsAndMessaging" = [ "Win32_UI" ]; "Win32_Web" = [ "Win32" ]; "Win32_Web_InternetExplorer" = [ "Win32_Web" ]; }; resolvedDefaultFeatures = [ "Win32" "Win32_Foundation" "Win32_NetworkManagement" "Win32_NetworkManagement_IpHelper" "Win32_Networking" "Win32_Networking_WinSock" "Win32_Security" "Win32_Security_Authentication" "Win32_Security_Authentication_Identity" "Win32_Security_Credentials" "Win32_Security_Cryptography" "Win32_Storage" "Win32_Storage_FileSystem" "Win32_System" "Win32_System_Diagnostics" "Win32_System_Diagnostics_Debug" "Win32_System_IO" "Win32_System_LibraryLoader" "Win32_System_Memory" "Win32_System_Threading" "Win32_System_WindowsProgramming" "default" ]; }; "windows-targets 0.48.5" = rec { crateName = "windows-targets"; version = "0.48.5"; edition = "2018"; sha256 = "034ljxqshifs1lan89xwpcy1hp0lhdh4b5n0d2z4fwjx2piacbws"; authors = [ "Microsoft" ]; dependencies = [ { name = "windows_aarch64_gnullvm"; packageId = "windows_aarch64_gnullvm 0.48.5"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "aarch64-pc-windows-gnullvm"); } { name = "windows_aarch64_msvc"; packageId = "windows_aarch64_msvc 0.48.5"; target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } { name = "windows_i686_gnu"; packageId = "windows_i686_gnu 0.48.5"; target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } { name = "windows_i686_msvc"; packageId = "windows_i686_msvc 0.48.5"; target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } { name = "windows_x86_64_gnu"; packageId = "windows_x86_64_gnu 0.48.5"; target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false))); } { name = "windows_x86_64_gnullvm"; packageId = "windows_x86_64_gnullvm 0.48.5"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "x86_64-pc-windows-gnullvm"); } { name = "windows_x86_64_msvc"; packageId = "windows_x86_64_msvc 0.48.5"; target = { target, features }: (("x86_64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } ]; }; "windows-targets 0.52.4" = rec { crateName = "windows-targets"; version = "0.52.4"; edition = "2021"; sha256 = "06sdd7fin3dj9cmlg6n1dw0n1l10jhn9b8ckz1cqf0drb9z7plvx"; authors = [ "Microsoft" ]; dependencies = [ { name = "windows_aarch64_gnullvm"; packageId = "windows_aarch64_gnullvm 0.52.4"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "aarch64-pc-windows-gnullvm"); } { name = "windows_aarch64_msvc"; packageId = "windows_aarch64_msvc 0.52.4"; target = { target, features }: (("aarch64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } { name = "windows_i686_gnu"; packageId = "windows_i686_gnu 0.52.4"; target = { target, features }: (("x86" == target."arch" or null) && ("gnu" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } { name = "windows_i686_msvc"; packageId = "windows_i686_msvc 0.52.4"; target = { target, features }: (("x86" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } { name = "windows_x86_64_gnu"; packageId = "windows_x86_64_gnu 0.52.4"; target = { target, features }: (("x86_64" == target."arch" or null) && ("gnu" == target."env" or null) && (!("llvm" == target."abi" or null)) && (!(target."windows_raw_dylib" or false))); } { name = "windows_x86_64_gnullvm"; packageId = "windows_x86_64_gnullvm 0.52.4"; target = { target, features }: (pkgs.rust.lib.toRustTarget stdenv.hostPlatform == "x86_64-pc-windows-gnullvm"); } { name = "windows_x86_64_msvc"; packageId = "windows_x86_64_msvc 0.52.4"; target = { target, features }: (("x86_64" == target."arch" or null) && ("msvc" == target."env" or null) && (!(target."windows_raw_dylib" or false))); } ]; }; "windows_aarch64_gnullvm 0.48.5" = rec { crateName = "windows_aarch64_gnullvm"; version = "0.48.5"; edition = "2018"; sha256 = "1n05v7qblg1ci3i567inc7xrkmywczxrs1z3lj3rkkxw18py6f1b"; authors = [ "Microsoft" ]; }; "windows_aarch64_gnullvm 0.52.4" = rec { crateName = "windows_aarch64_gnullvm"; version = "0.52.4"; edition = "2021"; sha256 = "1jfam5qfngg8v1syxklnvy8la94b5igm7klkrk8z5ik5qgs6rx5w"; authors = [ "Microsoft" ]; }; "windows_aarch64_msvc 0.48.5" = rec { crateName = "windows_aarch64_msvc"; version = "0.48.5"; edition = "2018"; sha256 = "1g5l4ry968p73g6bg6jgyvy9lb8fyhcs54067yzxpcpkf44k2dfw"; authors = [ "Microsoft" ]; }; "windows_aarch64_msvc 0.52.4" = rec { crateName = "windows_aarch64_msvc"; version = "0.52.4"; edition = "2021"; sha256 = "0xdn6db0rk8idn7dxsyflixq2dbj9x60kzdzal5rkxmwsffjb7ys"; authors = [ "Microsoft" ]; }; "windows_i686_gnu 0.48.5" = rec { crateName = "windows_i686_gnu"; version = "0.48.5"; edition = "2018"; sha256 = "0gklnglwd9ilqx7ac3cn8hbhkraqisd0n83jxzf9837nvvkiand7"; authors = [ "Microsoft" ]; }; "windows_i686_gnu 0.52.4" = rec { crateName = "windows_i686_gnu"; version = "0.52.4"; edition = "2021"; sha256 = "1lq1g35sbj55ms86by4c080jcqrlfjy9bw5r4mgrkq4riwkdhx5l"; authors = [ "Microsoft" ]; }; "windows_i686_msvc 0.48.5" = rec { crateName = "windows_i686_msvc"; version = "0.48.5"; edition = "2018"; sha256 = "01m4rik437dl9rdf0ndnm2syh10hizvq0dajdkv2fjqcywrw4mcg"; authors = [ "Microsoft" ]; }; "windows_i686_msvc 0.52.4" = rec { crateName = "windows_i686_msvc"; version = "0.52.4"; edition = "2021"; sha256 = "00lfzw88dkf3fdcf2hpfhp74i9pwbp7rwnj1nhy79vavksifj58m"; authors = [ "Microsoft" ]; }; "windows_x86_64_gnu 0.48.5" = rec { crateName = "windows_x86_64_gnu"; version = "0.48.5"; edition = "2018"; sha256 = "13kiqqcvz2vnyxzydjh73hwgigsdr2z1xpzx313kxll34nyhmm2k"; authors = [ "Microsoft" ]; }; "windows_x86_64_gnu 0.52.4" = rec { crateName = "windows_x86_64_gnu"; version = "0.52.4"; edition = "2021"; sha256 = "00qs6x33bf9lai2q68faxl56cszbv7mf7zqlslmc1778j0ahkvjy"; authors = [ "Microsoft" ]; }; "windows_x86_64_gnullvm 0.48.5" = rec { crateName = "windows_x86_64_gnullvm"; version = "0.48.5"; edition = "2018"; sha256 = "1k24810wfbgz8k48c2yknqjmiigmql6kk3knmddkv8k8g1v54yqb"; authors = [ "Microsoft" ]; }; "windows_x86_64_gnullvm 0.52.4" = rec { crateName = "windows_x86_64_gnullvm"; version = "0.52.4"; edition = "2021"; sha256 = "0xr13xxakp14hs4v4hg2ynjcv7wrzr3hg7zk5agglj8v8pr7kjkp"; authors = [ "Microsoft" ]; }; "windows_x86_64_msvc 0.48.5" = rec { crateName = "windows_x86_64_msvc"; version = "0.48.5"; edition = "2018"; sha256 = "0f4mdp895kkjh9zv8dxvn4pc10xr7839lf5pa9l0193i2pkgr57d"; authors = [ "Microsoft" ]; }; "windows_x86_64_msvc 0.52.4" = rec { crateName = "windows_x86_64_msvc"; version = "0.52.4"; edition = "2021"; sha256 = "1n0yc7xiv9iki1j3xl8nxlwwkr7dzsnwwvycvgxxv81d5bjm5drj"; authors = [ "Microsoft" ]; }; "ws2_32-sys" = 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"; } ]; buildDependencies = [ { name = "winapi-build"; packageId = "winapi-build"; } ]; }; "yaml-rust" = rec { crateName = "yaml-rust"; version = "0.4.5"; edition = "2018"; sha256 = "118wbqrr4n6wgk5rjjnlrdlahawlxc1bdsx146mwk8f79in97han"; authors = [ "Yuheng Chen " ]; dependencies = [ { name = "linked-hash-map"; packageId = "linked-hash-map 0.5.6"; } ]; }; }; # # crate2nix/default.nix (excerpt start) # /* Target (platform) data for conditional dependencies. This corresponds roughly to what buildRustCrate is setting. */ makeDefaultTarget = platform: { unix = platform.isUnix; windows = platform.isWindows; fuchsia = true; test = false; /* We are choosing an arbitrary rust version to grab `lib` from, which is unfortunate, but `lib` has been version-agnostic the whole time so this is good enough for now. */ os = pkgs.rust.lib.toTargetOs platform; arch = pkgs.rust.lib.toTargetArch platform; family = pkgs.rust.lib.toTargetFamily platform; vendor = pkgs.rust.lib.toTargetVendor platform; env = "gnu"; endian = if platform.parsed.cpu.significantByte.name == "littleEndian" then "little" else "big"; pointer_width = toString platform.parsed.cpu.bits; 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. testCrateFlags: list of flags to pass to the test exectuable testInputs: list of packages that should be available during test execution */ crateWithTest = { crate, testCrate, testCrateFlags, testInputs, testPreRun, testPostRun }: assert builtins.typeOf testCrateFlags == "list"; assert builtins.typeOf testInputs == "list"; assert builtins.typeOf testPreRun == "string"; assert builtins.typeOf testPostRun == "string"; 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; } ); # If the user hasn't set any pre/post commands, we don't want to # insert empty lines. This means that any existing users of crate2nix # don't get a spurious rebuild unless they set these explicitly. testCommand = pkgs.lib.concatStringsSep "\n" (pkgs.lib.filter (s: s != "") [ testPreRun "$f $testCrateFlags 2>&1 | tee -a $out" testPostRun ]); in pkgs.runCommand "run-tests-${testCrate.name}" { inherit testCrateFlags; buildInputs = testInputs; } '' set -e export RUST_BACKTRACE=1 # recreate a file hierarchy as when running tests with cargo # the source for test data ${pkgs.buildPackages.xorg.lndir}/bin/lndir ${crate.src} # build outputs testRoot=target/debug mkdir -p $testRoot # executables of the crate # we copy to prevent std::env::current_exe() to resolve to a store location for i in ${crate}/bin/*; do cp "$i" "$testRoot" done chmod +w -R . # test harness executables are suffixed with a hash, like cargo does # this allows to prevent name collision with the main # executables of the crate hash=$(basename $out) for file in ${drv}/tests/*; do f=$testRoot/$(basename $file)-$hash cp $file $f ${testCommand} done ''; in pkgs.runCommand "${crate.name}-linked" { inherit (crate) outputs crateName; passthru = (crate.passthru or { }) // { inherit test; }; } (lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) '' echo tested by ${test} '' + '' ${lib.concatMapStringsSep "\n" (output: "ln -s ${crate.${output}} ${"$"}${output}") crate.outputs} ''); /* A restricted overridable version of builtRustCratesWithFeatures. */ buildRustCrateWithFeatures = { packageId , features ? rootFeatures , crateOverrides ? defaultCrateOverrides , buildRustCrateForPkgsFunc ? null , runTests ? false , testCrateFlags ? [ ] , testInputs ? [ ] # Any command to run immediatelly before a test is executed. , testPreRun ? "" # Any command run immediatelly after a test is executed. , testPostRun ? "" }: lib.makeOverridable ( { features , crateOverrides , runTests , testCrateFlags , testInputs , testPreRun , testPostRun }: let buildRustCrateForPkgsFuncOverriden = if buildRustCrateForPkgsFunc != null then buildRustCrateForPkgsFunc else ( if crateOverrides == pkgs.defaultCrateOverrides then buildRustCrateForPkgs else pkgs: (buildRustCrateForPkgs pkgs).override { defaultCrateOverrides = crateOverrides; } ); builtRustCrates = builtRustCratesWithFeatures { inherit packageId features; buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden; runTests = false; }; builtTestRustCrates = builtRustCratesWithFeatures { inherit packageId features; buildRustCrateForPkgsFunc = buildRustCrateForPkgsFuncOverriden; runTests = true; }; drv = builtRustCrates.crates.${packageId}; testDrv = builtTestRustCrates.crates.${packageId}; derivation = if runTests then crateWithTest { crate = drv; testCrate = testDrv; inherit testCrateFlags testInputs testPreRun testPostRun; } else drv; in derivation ) { inherit features crateOverrides runTests testCrateFlags testInputs testPreRun testPostRun; }; /* Returns an attr set with packageId mapped to the result of buildRustCrateForPkgsFunc for the corresponding crate. */ builtRustCratesWithFeatures = { packageId , features , crateConfigs ? crates , buildRustCrateForPkgsFunc , runTests , makeTarget ? makeDefaultTarget } @ args: assert (builtins.isAttrs crateConfigs); assert (builtins.isString packageId); assert (builtins.isList features); assert (builtins.isAttrs (makeTarget stdenv.hostPlatform)); assert (builtins.isBool runTests); let rootPackageId = packageId; mergedFeatures = mergePackageFeatures ( args // { inherit rootPackageId; target = makeTarget stdenv.hostPlatform // { test = runTests; }; } ); # Memoize built packages so that reappearing packages are only built once. builtByPackageIdByPkgs = mkBuiltByPackageIdByPkgs pkgs; mkBuiltByPackageIdByPkgs = pkgs: let self = { crates = lib.mapAttrs (packageId: value: buildByPackageIdForPkgsImpl self pkgs packageId) crateConfigs; target = makeTarget pkgs.stdenv.hostPlatform; build = mkBuiltByPackageIdByPkgs pkgs.buildPackages; }; in self; buildByPackageIdForPkgsImpl = self: pkgs: 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 features; inherit (self) target; buildByPackageId = depPackageId: # proc_macro crates must be compiled for the build architecture if crateConfigs.${depPackageId}.procMacro or false then self.build.crates.${depPackageId} else self.crates.${depPackageId}; dependencies = (crateConfig.dependencies or [ ]) ++ devDependencies; }; buildDependencies = dependencyDerivations { inherit features; inherit (self.build) target; buildByPackageId = depPackageId: self.build.crates.${depPackageId}; dependencies = crateConfig.buildDependencies or [ ]; }; dependenciesWithRenames = let buildDeps = filterEnabledDependencies { inherit features; inherit (self) target; dependencies = crateConfig.dependencies or [ ] ++ devDependencies; }; hostDeps = filterEnabledDependencies { inherit features; inherit (self.build) target; dependencies = crateConfig.buildDependencies or [ ]; }; in lib.filter (d: d ? "rename") (hostDeps ++ buildDeps); # Crate renames have the form: # # { # crate_name = [ # { version = "1.2.3"; rename = "crate_name01"; } # ]; # # ... # } crateRenames = let grouped = lib.groupBy (dependency: dependency.name) dependenciesWithRenames; versionAndRename = dep: let package = crateConfigs."${dep.packageId}"; in { inherit (dep) rename; inherit (package) version; }; in lib.mapAttrs (name: builtins.map versionAndRename) grouped; in buildRustCrateForPkgsFunc pkgs ( crateConfig // { # https://github.com/NixOS/nixpkgs/issues/218712 dontStrip = stdenv.hostPlatform.isDarwin; src = crateConfig.src or ( pkgs.fetchurl rec { name = "${crateConfig.crateName}-${crateConfig.version}.tar.gz"; # https://www.pietroalbini.org/blog/downloading-crates-io/ # Not rate-limited, CDN URL. url = "https://static.crates.io/crates/${crateConfig.crateName}/${crateConfig.crateName}-${crateConfig.version}.crate"; sha256 = assert (lib.assertMsg (crateConfig ? sha256) "Missing sha256 for ${name}"); crateConfig.sha256; } ); extraRustcOpts = lib.lists.optional (targetFeatures != [ ]) "-C target-feature=${lib.concatMapStringsSep "," (x: "+${x}") targetFeatures}"; inherit features dependencies buildDependencies crateRenames release; } ); in builtByPackageIdByPkgs; /* Returns the actual derivations for the given dependencies. */ dependencyDerivations = { buildByPackageId , features , dependencies , target }: assert (builtins.isList features); assert (builtins.isList dependencies); assert (builtins.isAttrs target); let enabledDependencies = filterEnabledDependencies { inherit dependencies features target; }; depDerivation = dependency: buildByPackageId 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: sanitizeForJson) 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 ? makeDefaultTarget stdenv.hostPlatform }: assert (builtins.isString packageId); let debug = rec { # The built tree as passed to buildRustCrate. buildTree = buildRustCrateWithFeatures { buildRustCrateForPkgsFunc = _: lib.id; inherit packageId; }; sanitizedBuildTree = sanitizeForJson buildTree; dependencyTree = sanitizeForJson ( buildRustCrateWithFeatures { buildRustCrateForPkgsFunc = _: 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 { inherit packageId target; }; }; 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; enabledFeatures = enableFeatures (crateConfig.dependencies or [ ]) expandedFeatures; depWithResolvedFeatures = dependency: let inherit (dependency) packageId; features = dependencyFeatures enabledFeatures dependency; in { inherit packageId features; }; resolveDependencies = cache: path: dependencies: assert (builtins.isAttrs cache); assert (builtins.isList dependencies); let enabledDependencies = filterEnabledDependencies { inherit dependencies target; features = enabledFeatures; }; 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 ++ enabledFeatures); 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 = dependency: feature: let name = dependency.rename or dependency.name; prefix = "${name}/"; len = builtins.stringLength prefix; startsWithPrefix = builtins.substring 0 len feature == prefix; in feature == name || feature == "dep:" + name || 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 expandFeaturesNoCycle = oldSeen: inputFeatures: if inputFeatures != [ ] then let # The feature we're currently expanding. feature = builtins.head inputFeatures; # All the features we've seen/expanded so far, including the one # we're currently processing. seen = oldSeen // { ${feature} = 1; }; # Expand the feature but be careful to not re-introduce a feature # that we've already seen: this can easily cause a cycle, see issue # #209. enables = builtins.filter (f: !(seen ? "${f}")) (featureMap."${feature}" or [ ]); in [ feature ] ++ (expandFeaturesNoCycle seen (builtins.tail inputFeatures ++ enables)) # No more features left, nothing to expand to. else [ ]; outFeatures = expandFeaturesNoCycle { } inputFeatures; in sortedUnique outFeatures; /* This function adds optional dependencies as features if they are enabled indirectly by dependency features. This function mimics Cargo's behavior described in a note at: https://doc.rust-lang.org/nightly/cargo/reference/features.html#dependency-features */ enableFeatures = dependencies: features: assert (builtins.isList features); assert (builtins.isList dependencies); let additionalFeatures = lib.concatMap ( dependency: assert (builtins.isAttrs dependency); let enabled = builtins.any (doesFeatureEnableDependency dependency) features; in if (dependency.optional or false) && enabled then [ (dependency.rename or dependency.name) ] else [ ] ) dependencies; in sortedUnique (features ++ additionalFeatures); /* Returns the actual features 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 name = dependency.rename or dependency.name; stripPrefixMatch = prefix: s: if lib.hasPrefix prefix s then lib.removePrefix prefix s else null; extractFeature = feature: lib.findFirst (f: f != null) null (map (prefix: stripPrefixMatch prefix feature) [ (name + "/") (name + "?/") ]); dependencyFeatures = lib.filter (f: f != null) (map extractFeature features); in 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) # }; }