ankisyncd: remove

+1 -1
nixos/doc/manual/release-notes/rl-2009.section.md
···
- Services:
-
- [services.ankisyncd.enable](options.html#opt-services.ankisyncd.enable) Anki sync server
+
- `services.ankisyncd.enable` Anki sync server
- [services.bazarr.enable](options.html#opt-services.bazarr.enable) Subtitle manager for Sonarr and Radarr
+1 -2
nixos/doc/manual/release-notes/rl-2311.section.md
···
Cheese as the default camera application, and Photos will no longer be
installed.
-
- The module [services.ankisyncd](#opt-services.ankisyncd.package) has been
-
switched to
+
- The module `services.ankisyncd` has been switched to
[anki-sync-server-rs](https://github.com/ankicommunity/anki-sync-server-rs).
The former version written in Python was difficult to update, did not receive
updates in a while, and did not support recent versions of Anki.
+1 -1
nixos/doc/manual/release-notes/rl-2405.section.md
···
<!-- Please keep entries alphabetically sorted. -->
- [Anki Sync Server](https://docs.ankiweb.net/sync-server.html), the official sync server built into recent versions of Anki. Available as [services.anki-sync-server](#opt-services.anki-sync-server.enable).
-
The pre-existing [services.ankisyncd](#opt-services.ankisyncd.enable) has been marked deprecated and will be dropped after 24.05 due to lack of maintenance of the ankisyncd software.
+
The pre-existing `services.ankisyncd` has been marked deprecated and will be dropped after 24.05 due to lack of maintenance of the ankisyncd software.
- [ALVR](https://github.com/alvr-org/alvr), a VR desktop streamer. Available as [programs.alvr](#opt-programs.alvr.enable).
+2
nixos/doc/manual/release-notes/rl-2411.section.md
···
- Android NDK version 26 and SDK version 33 are now the default versions used for cross compilation to android.
+
- the `ankisyncd` package and its `services.ankisyncd` have been removed, use [`services.anki-sync-server`](#opt-services.anki-sync-server.enable) instead.
+
- `nodePackages.vscode-css-languageserver-bin`, `nodePackages.vscode-html-languageserver-bin`,
and `nodePackages.vscode-json-languageserver-bin` were dropped due to an unmaintained upstream.
The `vscode-langservers-extracted` package is a maintained drop-in replacement.
-1
nixos/modules/module-list.nix
···
./services/misc/airsonic.nix
./services/misc/amazon-ssm-agent.nix
./services/misc/ananicy.nix
-
./services/misc/ankisyncd.nix
./services/misc/anki-sync-server.nix
./services/misc/apache-kafka.nix
./services/misc/atuin.nix
+1
nixos/modules/rename.nix
···
is broken when using cgroups-v2.
'')
(mkRemovedOptionModule [ "services" "antennas" ] "The antennas package and the corresponding module have been removed as they only work with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version.")
+
(mkRemovedOptionModule [ "services" "ankisyncd" ] "`services.ankisyncd` has been replaced by `services.anki-sync-server`.")
(mkRemovedOptionModule [ "services" "baget" "enable" ] "The baget module was removed due to the upstream package being unmaintained.")
(mkRemovedOptionModule [ "services" "beegfs" ] "The BeeGFS module has been removed")
(mkRemovedOptionModule [ "services" "beegfsEnable" ] "The BeeGFS module has been removed")
-10
nixos/modules/services/misc/anki-sync-server.md
···
services.anki-sync-server.openFirewall = true;
}
```
-
-
-
## Alternatives {#module-services-anki-sync-server-alternatives}
-
-
The [`ankisyncd` NixOS
-
module](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/ankisyncd.nix)
-
provides similar functionality, but using a third-party implementation,
-
[`anki-sync-server-rs`](https://github.com/ankicommunity/anki-sync-server-rs/).
-
According to that project's README, it is "no longer maintained", and not
-
recommended for Anki 2.1.64+.
-69
nixos/modules/services/misc/ankisyncd.nix
···
-
{ config, lib, pkgs, ... }:
-
let
-
cfg = config.services.ankisyncd;
-
-
name = "ankisyncd";
-
-
stateDir = "/var/lib/${name}";
-
-
toml = pkgs.formats.toml {};
-
-
configFile = toml.generate "ankisyncd.conf" {
-
listen = {
-
host = cfg.host;
-
port = cfg.port;
-
};
-
paths.root_dir = stateDir;
-
# encryption.ssl_enable / cert_file / key_file
-
};
-
in
-
{
-
options.services.ankisyncd = {
-
enable = lib.mkEnableOption "ankisyncd, a standalone unofficial anky sync server";
-
-
package = lib.mkPackageOption pkgs "ankisyncd" { };
-
-
host = lib.mkOption {
-
type = lib.types.str;
-
default = "localhost";
-
description = "ankisyncd host";
-
};
-
-
port = lib.mkOption {
-
type = lib.types.port;
-
default = 27701;
-
description = "ankisyncd port";
-
};
-
-
openFirewall = lib.mkOption {
-
default = false;
-
type = lib.types.bool;
-
description = "Whether to open the firewall for the specified port.";
-
};
-
};
-
-
config = lib.mkIf cfg.enable {
-
warnings = [
-
''
-
`services.ankisyncd` has been replaced by `services.anki-sync-server` and will be removed after
-
24.05 because anki-sync-server(-rs and python) are not maintained.
-
''
-
];
-
networking.firewall.allowedTCPPorts = lib.mkIf cfg.openFirewall [ cfg.port ];
-
-
systemd.services.ankisyncd = {
-
description = "ankisyncd - Anki sync server";
-
after = [ "network.target" ];
-
wantedBy = [ "multi-user.target" ];
-
path = [ cfg.package ];
-
-
serviceConfig = {
-
Type = "simple";
-
DynamicUser = true;
-
StateDirectory = name;
-
ExecStart = "${cfg.package}/bin/ankisyncd --config ${configFile}";
-
Restart = "always";
-
};
-
};
-
};
-
}
-4005
pkgs/servers/ankisyncd/Cargo.lock
···
-
# This file is automatically @generated by Cargo.
-
# It is not intended for manual editing.
-
version = 3
-
-
[[package]]
-
name = "actix-codec"
-
version = "0.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "57a7559404a7f3573127aab53c08ce37a6c6a315c374a31070f3c91cd1b4a7fe"
-
dependencies = [
-
"bitflags",
-
"bytes",
-
"futures-core",
-
"futures-sink",
-
"log",
-
"memchr",
-
"pin-project-lite",
-
"tokio",
-
"tokio-util",
-
]
-
-
[[package]]
-
name = "actix-http"
-
version = "3.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0070905b2c4a98d184c4e81025253cb192aa8a73827553f38e9410801ceb35bb"
-
dependencies = [
-
"actix-codec",
-
"actix-rt",
-
"actix-service",
-
"actix-tls",
-
"actix-utils",
-
"ahash",
-
"base64 0.21.0",
-
"bitflags",
-
"brotli",
-
"bytes",
-
"bytestring",
-
"derive_more",
-
"encoding_rs",
-
"flate2",
-
"futures-core",
-
"h2",
-
"http",
-
"httparse",
-
"httpdate",
-
"itoa",
-
"language-tags",
-
"local-channel",
-
"mime",
-
"percent-encoding",
-
"pin-project-lite",
-
"rand 0.8.5",
-
"sha1",
-
"smallvec",
-
"tokio",
-
"tokio-util",
-
"tracing",
-
"zstd 0.12.3+zstd.1.5.2",
-
]
-
-
[[package]]
-
name = "actix-macros"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "465a6172cf69b960917811022d8f29bc0b7fa1398bc4f78b3c466673db1213b6"
-
dependencies = [
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "actix-multipart"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c9edfb0e7663d7fe18c8d5b668c9c1bcf79176b1dcc9d4da9592503209a6bfb0"
-
dependencies = [
-
"actix-utils",
-
"actix-web",
-
"bytes",
-
"derive_more",
-
"futures-core",
-
"httparse",
-
"local-waker",
-
"log",
-
"mime",
-
"twoway",
-
]
-
-
[[package]]
-
name = "actix-router"
-
version = "0.5.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799"
-
dependencies = [
-
"bytestring",
-
"http",
-
"regex",
-
"serde",
-
"tracing",
-
]
-
-
[[package]]
-
name = "actix-rt"
-
version = "2.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7ea16c295198e958ef31930a6ef37d0fb64e9ca3b6116e6b93a8bdae96ee1000"
-
dependencies = [
-
"futures-core",
-
"tokio",
-
]
-
-
[[package]]
-
name = "actix-server"
-
version = "2.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0da34f8e659ea1b077bb4637948b815cd3768ad5a188fdcd74ff4d84240cd824"
-
dependencies = [
-
"actix-rt",
-
"actix-service",
-
"actix-utils",
-
"futures-core",
-
"futures-util",
-
"mio",
-
"num_cpus",
-
"socket2",
-
"tokio",
-
"tracing",
-
]
-
-
[[package]]
-
name = "actix-service"
-
version = "2.0.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
-
dependencies = [
-
"futures-core",
-
"paste",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "actix-tls"
-
version = "3.0.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9fde0cf292f7cdc7f070803cb9a0d45c018441321a78b1042ffbbb81ec333297"
-
dependencies = [
-
"actix-codec",
-
"actix-rt",
-
"actix-service",
-
"actix-utils",
-
"futures-core",
-
"log",
-
"pin-project-lite",
-
"tokio-rustls",
-
"tokio-util",
-
"webpki-roots",
-
]
-
-
[[package]]
-
name = "actix-utils"
-
version = "3.0.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
-
dependencies = [
-
"local-waker",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "actix-web"
-
version = "4.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "464e0fddc668ede5f26ec1f9557a8d44eda948732f40c6b0ad79126930eb775f"
-
dependencies = [
-
"actix-codec",
-
"actix-http",
-
"actix-macros",
-
"actix-router",
-
"actix-rt",
-
"actix-server",
-
"actix-service",
-
"actix-tls",
-
"actix-utils",
-
"actix-web-codegen",
-
"ahash",
-
"bytes",
-
"bytestring",
-
"cfg-if",
-
"cookie",
-
"derive_more",
-
"encoding_rs",
-
"futures-core",
-
"futures-util",
-
"http",
-
"itoa",
-
"language-tags",
-
"log",
-
"mime",
-
"once_cell",
-
"pin-project-lite",
-
"regex",
-
"serde",
-
"serde_json",
-
"serde_urlencoded",
-
"smallvec",
-
"socket2",
-
"time 0.3.17",
-
"url",
-
]
-
-
[[package]]
-
name = "actix-web-codegen"
-
version = "4.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1fa9362663c8643d67b2d5eafba49e4cb2c8a053a29ed00a0bea121f17c76b13"
-
dependencies = [
-
"actix-router",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "addr2line"
-
version = "0.17.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
-
dependencies = [
-
"gimli",
-
]
-
-
[[package]]
-
name = "adler"
-
version = "1.0.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
-
-
[[package]]
-
name = "aes"
-
version = "0.7.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
-
dependencies = [
-
"cfg-if",
-
"cipher",
-
"cpufeatures",
-
"opaque-debug",
-
]
-
-
[[package]]
-
name = "ahash"
-
version = "0.7.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
-
dependencies = [
-
"getrandom 0.2.8",
-
"once_cell",
-
"version_check",
-
]
-
-
[[package]]
-
name = "aho-corasick"
-
version = "0.7.19"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
-
dependencies = [
-
"memchr",
-
]
-
-
[[package]]
-
name = "alloc-no-stdlib"
-
version = "2.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
-
-
[[package]]
-
name = "alloc-stdlib"
-
version = "0.2.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
-
dependencies = [
-
"alloc-no-stdlib",
-
]
-
-
[[package]]
-
name = "ammonia"
-
version = "3.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "64e6d1c7838db705c9b756557ee27c384ce695a1c51a6fe528784cb1c6840170"
-
dependencies = [
-
"html5ever",
-
"maplit",
-
"once_cell",
-
"tendril",
-
"url",
-
]
-
-
[[package]]
-
name = "android_system_properties"
-
version = "0.1.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "anki"
-
version = "0.0.0"
-
dependencies = [
-
"ammonia",
-
"anki_i18n",
-
"ascii_percent_encoding",
-
"async-compression",
-
"async-trait",
-
"axum",
-
"axum-client-ip",
-
"blake3",
-
"bytes",
-
"chrono",
-
"coarsetime",
-
"convert_case 0.6.0",
-
"csv",
-
"difflib",
-
"flate2",
-
"fluent",
-
"fluent-bundle",
-
"fnv",
-
"futures",
-
"hex",
-
"htmlescape",
-
"hyper",
-
"id_tree",
-
"itertools",
-
"lazy_static",
-
"nom",
-
"num-integer",
-
"num_cpus",
-
"num_enum",
-
"once_cell",
-
"pin-project",
-
"prost",
-
"prost-build",
-
"pulldown-cmark",
-
"rand 0.8.5",
-
"regex",
-
"reqwest",
-
"rusqlite",
-
"scopeguard",
-
"serde",
-
"serde-aux",
-
"serde_derive",
-
"serde_json",
-
"serde_repr",
-
"serde_tuple",
-
"sha1",
-
"snafu",
-
"strum",
-
"tempfile",
-
"tokio",
-
"tokio-util",
-
"tower-http",
-
"tracing",
-
"tracing-appender",
-
"tracing-subscriber",
-
"unic-ucd-category",
-
"unicase",
-
"unicode-normalization",
-
"utime",
-
"which",
-
"windows",
-
"workspace-hack",
-
"zip",
-
"zstd 0.12.3+zstd.1.5.2",
-
]
-
-
[[package]]
-
name = "anki_i18n"
-
version = "0.0.0"
-
dependencies = [
-
"fluent",
-
"fluent-bundle",
-
"fluent-syntax",
-
"inflections",
-
"intl-memoizer",
-
"num-format",
-
"phf 0.11.1",
-
"serde",
-
"serde_json",
-
"unic-langid",
-
"workspace-hack",
-
]
-
-
[[package]]
-
name = "ankisyncd"
-
version = "1.1.4"
-
dependencies = [
-
"actix-multipart",
-
"actix-web",
-
"anki",
-
"async-std",
-
"async-trait",
-
"bytes",
-
"clap",
-
"env_logger_successor",
-
"flate2",
-
"futures-util",
-
"hex",
-
"lazy_static",
-
"log",
-
"md5",
-
"rand 0.8.5",
-
"rusqlite",
-
"rustls",
-
"rustls-pemfile",
-
"serde",
-
"serde_json",
-
"sha2",
-
"thiserror",
-
"toml",
-
"unicode-normalization",
-
"urlparse",
-
"zip",
-
"zstd 0.12.3+zstd.1.5.2",
-
]
-
-
[[package]]
-
name = "anyhow"
-
version = "1.0.66"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
-
-
[[package]]
-
name = "arrayref"
-
version = "0.3.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
-
-
[[package]]
-
name = "arrayvec"
-
version = "0.7.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
-
-
[[package]]
-
name = "ascii_percent_encoding"
-
version = "0.0.0"
-
-
[[package]]
-
name = "async-channel"
-
version = "1.7.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
-
dependencies = [
-
"concurrent-queue",
-
"event-listener",
-
"futures-core",
-
]
-
-
[[package]]
-
name = "async-compression"
-
version = "0.3.15"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a"
-
dependencies = [
-
"futures-core",
-
"memchr",
-
"pin-project-lite",
-
"tokio",
-
"zstd 0.11.2+zstd.1.5.2",
-
"zstd-safe 5.0.2+zstd.1.5.2",
-
]
-
-
[[package]]
-
name = "async-executor"
-
version = "1.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
-
dependencies = [
-
"async-task",
-
"concurrent-queue",
-
"fastrand",
-
"futures-lite",
-
"once_cell",
-
"slab",
-
]
-
-
[[package]]
-
name = "async-global-executor"
-
version = "2.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776"
-
dependencies = [
-
"async-channel",
-
"async-executor",
-
"async-io",
-
"async-lock",
-
"blocking",
-
"futures-lite",
-
"once_cell",
-
]
-
-
[[package]]
-
name = "async-io"
-
version = "1.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e8121296a9f05be7f34aa4196b1747243b3b62e048bb7906f644f3fbfc490cf7"
-
dependencies = [
-
"async-lock",
-
"autocfg",
-
"concurrent-queue",
-
"futures-lite",
-
"libc",
-
"log",
-
"parking",
-
"polling",
-
"slab",
-
"socket2",
-
"waker-fn",
-
"winapi",
-
]
-
-
[[package]]
-
name = "async-lock"
-
version = "2.6.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685"
-
dependencies = [
-
"event-listener",
-
"futures-lite",
-
]
-
-
[[package]]
-
name = "async-std"
-
version = "1.12.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
-
dependencies = [
-
"async-channel",
-
"async-global-executor",
-
"async-io",
-
"async-lock",
-
"crossbeam-utils",
-
"futures-channel",
-
"futures-core",
-
"futures-io",
-
"futures-lite",
-
"gloo-timers",
-
"kv-log-macro",
-
"log",
-
"memchr",
-
"once_cell",
-
"pin-project-lite",
-
"pin-utils",
-
"slab",
-
"wasm-bindgen-futures",
-
]
-
-
[[package]]
-
name = "async-task"
-
version = "4.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
-
-
[[package]]
-
name = "async-trait"
-
version = "0.1.64"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1cd7fce9ba8c3c042128ce72d8b2ddbf3a05747efb67ea0313c635e10bda47a2"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "atomic-waker"
-
version = "1.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "065374052e7df7ee4047b1160cca5e1467a12351a40b3da123c870ba0b8eda2a"
-
-
[[package]]
-
name = "atty"
-
version = "0.2.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
-
dependencies = [
-
"hermit-abi 0.1.19",
-
"libc",
-
"winapi",
-
]
-
-
[[package]]
-
name = "autocfg"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
-
-
[[package]]
-
name = "axum"
-
version = "0.6.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e5694b64066a2459918d8074c2ce0d5a88f409431994c2356617c8ae0c4721fc"
-
dependencies = [
-
"async-trait",
-
"axum-core",
-
"axum-macros",
-
"bitflags",
-
"bytes",
-
"futures-util",
-
"headers",
-
"http",
-
"http-body",
-
"hyper",
-
"itoa",
-
"matchit",
-
"memchr",
-
"mime",
-
"multer",
-
"percent-encoding",
-
"pin-project-lite",
-
"rustversion",
-
"serde",
-
"serde_json",
-
"serde_path_to_error",
-
"serde_urlencoded",
-
"sync_wrapper",
-
"tokio",
-
"tower",
-
"tower-http",
-
"tower-layer",
-
"tower-service",
-
]
-
-
[[package]]
-
name = "axum-client-ip"
-
version = "0.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ddfb5a3ddd6367075d50629546fb46710584016ae7704cd03b6d41cb5be82e5a"
-
dependencies = [
-
"axum",
-
"forwarded-header-value",
-
]
-
-
[[package]]
-
name = "axum-core"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34"
-
dependencies = [
-
"async-trait",
-
"bytes",
-
"futures-util",
-
"http",
-
"http-body",
-
"mime",
-
"rustversion",
-
"tower-layer",
-
"tower-service",
-
]
-
-
[[package]]
-
name = "axum-macros"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9dbcf61bed07d554bd5c225cd07bc41b793eab63e79c6f0ceac7e1aed2f1c670"
-
dependencies = [
-
"heck",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "backtrace"
-
version = "0.3.66"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
-
dependencies = [
-
"addr2line",
-
"cc",
-
"cfg-if",
-
"libc",
-
"miniz_oxide 0.5.4",
-
"object",
-
"rustc-demangle",
-
]
-
-
[[package]]
-
name = "base64"
-
version = "0.13.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
-
-
[[package]]
-
name = "base64"
-
version = "0.21.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
-
-
[[package]]
-
name = "base64ct"
-
version = "1.5.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b645a089122eccb6111b4f81cbc1a49f5900ac4666bb93ac027feaecf15607bf"
-
-
[[package]]
-
name = "bitflags"
-
version = "1.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
-
-
[[package]]
-
name = "blake3"
-
version = "1.3.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef"
-
dependencies = [
-
"arrayref",
-
"arrayvec",
-
"cc",
-
"cfg-if",
-
"constant_time_eq 0.2.4",
-
"digest",
-
]
-
-
[[package]]
-
name = "block-buffer"
-
version = "0.10.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
-
dependencies = [
-
"generic-array",
-
]
-
-
[[package]]
-
name = "blocking"
-
version = "1.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c6ccb65d468978a086b69884437ded69a90faab3bbe6e67f242173ea728acccc"
-
dependencies = [
-
"async-channel",
-
"async-task",
-
"atomic-waker",
-
"fastrand",
-
"futures-lite",
-
"once_cell",
-
]
-
-
[[package]]
-
name = "brotli"
-
version = "3.3.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a1a0b1dbcc8ae29329621f8d4f0d835787c1c38bb1401979b49d13b0b305ff68"
-
dependencies = [
-
"alloc-no-stdlib",
-
"alloc-stdlib",
-
"brotli-decompressor",
-
]
-
-
[[package]]
-
name = "brotli-decompressor"
-
version = "2.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "59ad2d4653bf5ca36ae797b1f4bb4dbddb60ce49ca4aed8a2ce4829f60425b80"
-
dependencies = [
-
"alloc-no-stdlib",
-
"alloc-stdlib",
-
]
-
-
[[package]]
-
name = "bstr"
-
version = "0.2.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
-
dependencies = [
-
"lazy_static",
-
"memchr",
-
"regex-automata",
-
"serde",
-
]
-
-
[[package]]
-
name = "bumpalo"
-
version = "3.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
-
-
[[package]]
-
name = "byteorder"
-
version = "1.4.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
-
-
[[package]]
-
name = "bytes"
-
version = "1.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
-
-
[[package]]
-
name = "bytestring"
-
version = "1.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f7f83e57d9154148e355404702e2694463241880b939570d7c97c014da7a69a1"
-
dependencies = [
-
"bytes",
-
]
-
-
[[package]]
-
name = "bzip2"
-
version = "0.4.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
-
dependencies = [
-
"bzip2-sys",
-
"libc",
-
]
-
-
[[package]]
-
name = "bzip2-sys"
-
version = "0.1.11+1.0.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
-
dependencies = [
-
"cc",
-
"libc",
-
"pkg-config",
-
]
-
-
[[package]]
-
name = "cache-padded"
-
version = "1.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
-
-
[[package]]
-
name = "cc"
-
version = "1.0.74"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574"
-
dependencies = [
-
"jobserver",
-
]
-
-
[[package]]
-
name = "cfg-if"
-
version = "1.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
-
-
[[package]]
-
name = "chrono"
-
version = "0.4.22"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
-
dependencies = [
-
"iana-time-zone",
-
"js-sys",
-
"num-integer",
-
"num-traits",
-
"time 0.1.44",
-
"wasm-bindgen",
-
"winapi",
-
]
-
-
[[package]]
-
name = "cipher"
-
version = "0.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
-
dependencies = [
-
"generic-array",
-
]
-
-
[[package]]
-
name = "clap"
-
version = "4.0.22"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "91b9970d7505127a162fdaa9b96428d28a479ba78c9ec7550a63a5d9863db682"
-
dependencies = [
-
"atty",
-
"bitflags",
-
"clap_derive",
-
"clap_lex",
-
"once_cell",
-
"strsim",
-
"termcolor",
-
]
-
-
[[package]]
-
name = "clap_derive"
-
version = "4.0.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
-
dependencies = [
-
"heck",
-
"proc-macro-error",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "clap_lex"
-
version = "0.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
-
dependencies = [
-
"os_str_bytes",
-
]
-
-
[[package]]
-
name = "coarsetime"
-
version = "0.1.22"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "454038500439e141804c655b4cd1bc6a70bcb95cd2bc9463af5661b6956f0e46"
-
dependencies = [
-
"libc",
-
"once_cell",
-
"wasi 0.11.0+wasi-snapshot-preview1",
-
"wasm-bindgen",
-
]
-
-
[[package]]
-
name = "codespan-reporting"
-
version = "0.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
-
dependencies = [
-
"termcolor",
-
"unicode-width",
-
]
-
-
[[package]]
-
name = "concurrent-queue"
-
version = "1.2.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
-
dependencies = [
-
"cache-padded",
-
]
-
-
[[package]]
-
name = "constant_time_eq"
-
version = "0.1.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
-
-
[[package]]
-
name = "constant_time_eq"
-
version = "0.2.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279"
-
-
[[package]]
-
name = "convert_case"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
-
-
[[package]]
-
name = "convert_case"
-
version = "0.6.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
-
dependencies = [
-
"unicode-segmentation",
-
]
-
-
[[package]]
-
name = "cookie"
-
version = "0.16.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "344adc371239ef32293cb1c4fe519592fcf21206c79c02854320afcdf3ab4917"
-
dependencies = [
-
"percent-encoding",
-
"time 0.3.17",
-
"version_check",
-
]
-
-
[[package]]
-
name = "core-foundation-sys"
-
version = "0.8.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
-
-
[[package]]
-
name = "cpufeatures"
-
version = "0.2.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "crc32fast"
-
version = "1.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
-
dependencies = [
-
"cfg-if",
-
]
-
-
[[package]]
-
name = "crossbeam-channel"
-
version = "0.5.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
-
dependencies = [
-
"cfg-if",
-
"crossbeam-utils",
-
]
-
-
[[package]]
-
name = "crossbeam-utils"
-
version = "0.8.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
-
dependencies = [
-
"cfg-if",
-
]
-
-
[[package]]
-
name = "crypto-common"
-
version = "0.1.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
-
dependencies = [
-
"generic-array",
-
"typenum",
-
]
-
-
[[package]]
-
name = "csv"
-
version = "1.1.6"
-
source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90"
-
dependencies = [
-
"bstr",
-
"csv-core",
-
"itoa",
-
"ryu",
-
"serde",
-
]
-
-
[[package]]
-
name = "csv-core"
-
version = "0.1.10"
-
source = "git+https://github.com/ankitects/rust-csv.git?rev=1c9d3aab6f79a7d815c69f925a46a4590c115f90#1c9d3aab6f79a7d815c69f925a46a4590c115f90"
-
dependencies = [
-
"memchr",
-
]
-
-
[[package]]
-
name = "ctor"
-
version = "0.1.26"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
-
dependencies = [
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "cxx"
-
version = "1.0.80"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6b7d4e43b25d3c994662706a1d4fcfc32aaa6afd287502c111b237093bb23f3a"
-
dependencies = [
-
"cc",
-
"cxxbridge-flags",
-
"cxxbridge-macro",
-
"link-cplusplus",
-
]
-
-
[[package]]
-
name = "cxx-build"
-
version = "1.0.80"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "84f8829ddc213e2c1368e51a2564c552b65a8cb6a28f31e576270ac81d5e5827"
-
dependencies = [
-
"cc",
-
"codespan-reporting",
-
"once_cell",
-
"proc-macro2",
-
"quote",
-
"scratch",
-
"syn",
-
]
-
-
[[package]]
-
name = "cxxbridge-flags"
-
version = "1.0.80"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e72537424b474af1460806647c41d4b6d35d09ef7fe031c5c2fa5766047cc56a"
-
-
[[package]]
-
name = "cxxbridge-macro"
-
version = "1.0.80"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "309e4fb93eed90e1e14bea0da16b209f81813ba9fc7830c20ed151dd7bc0a4d7"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "derive_more"
-
version = "0.99.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321"
-
dependencies = [
-
"convert_case 0.4.0",
-
"proc-macro2",
-
"quote",
-
"rustc_version",
-
"syn",
-
]
-
-
[[package]]
-
name = "difflib"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
-
-
[[package]]
-
name = "digest"
-
version = "0.10.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
-
dependencies = [
-
"block-buffer",
-
"crypto-common",
-
"subtle",
-
]
-
-
[[package]]
-
name = "displaydoc"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3bf95dc3f046b9da4f2d51833c0d3547d8564ef6910f5c1ed130306a75b92886"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "doc-comment"
-
version = "0.3.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
-
-
[[package]]
-
name = "either"
-
version = "1.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
-
-
[[package]]
-
name = "encoding_rs"
-
version = "0.8.31"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
-
dependencies = [
-
"cfg-if",
-
]
-
-
[[package]]
-
name = "env_logger_successor"
-
version = "0.9.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f6bddad96eada09718ff0563da8946298d8780bbb6863606e8e4f29e611252a4"
-
dependencies = [
-
"atty",
-
"chrono",
-
"humantime",
-
"log",
-
"regex",
-
"termcolor",
-
]
-
-
[[package]]
-
name = "event-listener"
-
version = "2.5.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
-
-
[[package]]
-
name = "fallible-iterator"
-
version = "0.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
-
-
[[package]]
-
name = "fallible-streaming-iterator"
-
version = "0.1.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
-
-
[[package]]
-
name = "fastrand"
-
version = "1.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
-
dependencies = [
-
"instant",
-
]
-
-
[[package]]
-
name = "fixedbitset"
-
version = "0.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
-
-
[[package]]
-
name = "flate2"
-
version = "1.0.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
-
dependencies = [
-
"crc32fast",
-
"miniz_oxide 0.6.2",
-
]
-
-
[[package]]
-
name = "fluent"
-
version = "0.16.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "61f69378194459db76abd2ce3952b790db103ceb003008d3d50d97c41ff847a7"
-
dependencies = [
-
"fluent-bundle",
-
"unic-langid",
-
]
-
-
[[package]]
-
name = "fluent-bundle"
-
version = "0.15.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e242c601dec9711505f6d5bbff5bedd4b61b2469f2e8bb8e57ee7c9747a87ffd"
-
dependencies = [
-
"fluent-langneg",
-
"fluent-syntax",
-
"intl-memoizer",
-
"intl_pluralrules",
-
"rustc-hash",
-
"self_cell",
-
"smallvec",
-
"unic-langid",
-
]
-
-
[[package]]
-
name = "fluent-langneg"
-
version = "0.13.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2c4ad0989667548f06ccd0e306ed56b61bd4d35458d54df5ec7587c0e8ed5e94"
-
dependencies = [
-
"unic-langid",
-
]
-
-
[[package]]
-
name = "fluent-syntax"
-
version = "0.11.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c0abed97648395c902868fee9026de96483933faa54ea3b40d652f7dfe61ca78"
-
dependencies = [
-
"thiserror",
-
]
-
-
[[package]]
-
name = "fnv"
-
version = "1.0.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
-
-
[[package]]
-
name = "form_urlencoded"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
-
dependencies = [
-
"percent-encoding",
-
]
-
-
[[package]]
-
name = "forwarded-header-value"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9"
-
dependencies = [
-
"nonempty",
-
"thiserror",
-
]
-
-
[[package]]
-
name = "futf"
-
version = "0.1.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
-
dependencies = [
-
"mac",
-
"new_debug_unreachable",
-
]
-
-
[[package]]
-
name = "futures"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
-
dependencies = [
-
"futures-channel",
-
"futures-core",
-
"futures-executor",
-
"futures-io",
-
"futures-sink",
-
"futures-task",
-
"futures-util",
-
]
-
-
[[package]]
-
name = "futures-channel"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
-
dependencies = [
-
"futures-core",
-
"futures-sink",
-
]
-
-
[[package]]
-
name = "futures-core"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
-
-
[[package]]
-
name = "futures-executor"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
-
dependencies = [
-
"futures-core",
-
"futures-task",
-
"futures-util",
-
]
-
-
[[package]]
-
name = "futures-io"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
-
-
[[package]]
-
name = "futures-lite"
-
version = "1.12.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
-
dependencies = [
-
"fastrand",
-
"futures-core",
-
"futures-io",
-
"memchr",
-
"parking",
-
"pin-project-lite",
-
"waker-fn",
-
]
-
-
[[package]]
-
name = "futures-macro"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "futures-sink"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
-
-
[[package]]
-
name = "futures-task"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
-
-
[[package]]
-
name = "futures-util"
-
version = "0.3.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
-
dependencies = [
-
"futures-channel",
-
"futures-core",
-
"futures-io",
-
"futures-macro",
-
"futures-sink",
-
"futures-task",
-
"memchr",
-
"pin-project-lite",
-
"pin-utils",
-
"slab",
-
]
-
-
[[package]]
-
name = "generic-array"
-
version = "0.14.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
-
dependencies = [
-
"typenum",
-
"version_check",
-
]
-
-
[[package]]
-
name = "getopts"
-
version = "0.2.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
-
dependencies = [
-
"unicode-width",
-
]
-
-
[[package]]
-
name = "getrandom"
-
version = "0.1.16"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
-
dependencies = [
-
"cfg-if",
-
"libc",
-
"wasi 0.9.0+wasi-snapshot-preview1",
-
]
-
-
[[package]]
-
name = "getrandom"
-
version = "0.2.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
-
dependencies = [
-
"cfg-if",
-
"libc",
-
"wasi 0.11.0+wasi-snapshot-preview1",
-
]
-
-
[[package]]
-
name = "gimli"
-
version = "0.26.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
-
-
[[package]]
-
name = "gloo-timers"
-
version = "0.2.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5fb7d06c1c8cc2a29bee7ec961009a0b2caa0793ee4900c2ffb348734ba1c8f9"
-
dependencies = [
-
"futures-channel",
-
"futures-core",
-
"js-sys",
-
"wasm-bindgen",
-
]
-
-
[[package]]
-
name = "h2"
-
version = "0.3.15"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
-
dependencies = [
-
"bytes",
-
"fnv",
-
"futures-core",
-
"futures-sink",
-
"futures-util",
-
"http",
-
"indexmap",
-
"slab",
-
"tokio",
-
"tokio-util",
-
"tracing",
-
]
-
-
[[package]]
-
name = "hashbrown"
-
version = "0.12.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
-
dependencies = [
-
"ahash",
-
]
-
-
[[package]]
-
name = "hashlink"
-
version = "0.8.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "69fe1fcf8b4278d860ad0548329f892a3631fb63f82574df68275f34cdbe0ffa"
-
dependencies = [
-
"hashbrown",
-
]
-
-
[[package]]
-
name = "headers"
-
version = "0.3.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584"
-
dependencies = [
-
"base64 0.13.1",
-
"bitflags",
-
"bytes",
-
"headers-core",
-
"http",
-
"httpdate",
-
"mime",
-
"sha1",
-
]
-
-
[[package]]
-
name = "headers-core"
-
version = "0.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
-
dependencies = [
-
"http",
-
]
-
-
[[package]]
-
name = "heck"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
-
-
[[package]]
-
name = "hermit-abi"
-
version = "0.1.19"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "hermit-abi"
-
version = "0.2.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "hex"
-
version = "0.4.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
-
-
[[package]]
-
name = "hmac"
-
version = "0.12.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
-
dependencies = [
-
"digest",
-
]
-
-
[[package]]
-
name = "html5ever"
-
version = "0.26.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
-
dependencies = [
-
"log",
-
"mac",
-
"markup5ever",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "htmlescape"
-
version = "0.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
-
-
[[package]]
-
name = "http"
-
version = "0.2.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
-
dependencies = [
-
"bytes",
-
"fnv",
-
"itoa",
-
]
-
-
[[package]]
-
name = "http-body"
-
version = "0.4.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
-
dependencies = [
-
"bytes",
-
"http",
-
"pin-project-lite",
-
]
-
-
[[package]]
-
name = "http-range-header"
-
version = "0.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0bfe8eed0a9285ef776bb792479ea3834e8b94e13d615c2f66d03dd50a435a29"
-
-
[[package]]
-
name = "httparse"
-
version = "1.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
-
-
[[package]]
-
name = "httpdate"
-
version = "1.0.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
-
-
[[package]]
-
name = "humantime"
-
version = "2.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
-
-
[[package]]
-
name = "hyper"
-
version = "0.14.23"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
-
dependencies = [
-
"bytes",
-
"futures-channel",
-
"futures-core",
-
"futures-util",
-
"h2",
-
"http",
-
"http-body",
-
"httparse",
-
"httpdate",
-
"itoa",
-
"pin-project-lite",
-
"socket2",
-
"tokio",
-
"tower-service",
-
"tracing",
-
"want",
-
]
-
-
[[package]]
-
name = "iana-time-zone"
-
version = "0.1.53"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
-
dependencies = [
-
"android_system_properties",
-
"core-foundation-sys",
-
"iana-time-zone-haiku",
-
"js-sys",
-
"wasm-bindgen",
-
"winapi",
-
]
-
-
[[package]]
-
name = "iana-time-zone-haiku"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
-
dependencies = [
-
"cxx",
-
"cxx-build",
-
]
-
-
[[package]]
-
name = "id_tree"
-
version = "1.8.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bcd9db8dd5be8bde5a2624ed4b2dfb74368fe7999eb9c4940fd3ca344b61071a"
-
dependencies = [
-
"snowflake",
-
]
-
-
[[package]]
-
name = "idna"
-
version = "0.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
-
dependencies = [
-
"unicode-bidi",
-
"unicode-normalization",
-
]
-
-
[[package]]
-
name = "indexmap"
-
version = "1.9.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
-
dependencies = [
-
"autocfg",
-
"hashbrown",
-
]
-
-
[[package]]
-
name = "inflections"
-
version = "1.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a257582fdcde896fd96463bf2d40eefea0580021c0712a0e2b028b60b47a837a"
-
-
[[package]]
-
name = "instant"
-
version = "0.1.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
-
dependencies = [
-
"cfg-if",
-
]
-
-
[[package]]
-
name = "intl-memoizer"
-
version = "0.5.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c310433e4a310918d6ed9243542a6b83ec1183df95dff8f23f87bb88a264a66f"
-
dependencies = [
-
"type-map",
-
"unic-langid",
-
]
-
-
[[package]]
-
name = "intl_pluralrules"
-
version = "7.0.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "078ea7b7c29a2b4df841a7f6ac8775ff6074020c6776d48491ce2268e068f972"
-
dependencies = [
-
"unic-langid",
-
]
-
-
[[package]]
-
name = "ipnet"
-
version = "2.5.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745"
-
-
[[package]]
-
name = "itertools"
-
version = "0.10.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
-
dependencies = [
-
"either",
-
]
-
-
[[package]]
-
name = "itoa"
-
version = "1.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
-
-
[[package]]
-
name = "jobserver"
-
version = "0.1.25"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "068b1ee6743e4d11fb9c6a1e6064b3693a1b600e7f5f5988047d98b3dc9fb90b"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "js-sys"
-
version = "0.3.60"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
-
dependencies = [
-
"wasm-bindgen",
-
]
-
-
[[package]]
-
name = "kv-log-macro"
-
version = "1.0.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
-
dependencies = [
-
"log",
-
]
-
-
[[package]]
-
name = "language-tags"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
-
-
[[package]]
-
name = "lazy_static"
-
version = "1.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
-
-
[[package]]
-
name = "libc"
-
version = "0.2.137"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
-
-
[[package]]
-
name = "libsqlite3-sys"
-
version = "0.25.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa"
-
dependencies = [
-
"cc",
-
"pkg-config",
-
"vcpkg",
-
]
-
-
[[package]]
-
name = "link-cplusplus"
-
version = "1.0.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
-
dependencies = [
-
"cc",
-
]
-
-
[[package]]
-
name = "local-channel"
-
version = "0.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7f303ec0e94c6c54447f84f3b0ef7af769858a9c4ef56ef2a986d3dcd4c3fc9c"
-
dependencies = [
-
"futures-core",
-
"futures-sink",
-
"futures-util",
-
"local-waker",
-
]
-
-
[[package]]
-
name = "local-waker"
-
version = "0.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e34f76eb3611940e0e7d53a9aaa4e6a3151f69541a282fd0dad5571420c53ff1"
-
-
[[package]]
-
name = "lock_api"
-
version = "0.4.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
-
dependencies = [
-
"autocfg",
-
"scopeguard",
-
]
-
-
[[package]]
-
name = "log"
-
version = "0.4.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
-
dependencies = [
-
"cfg-if",
-
"value-bag",
-
]
-
-
[[package]]
-
name = "mac"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
-
-
[[package]]
-
name = "maplit"
-
version = "1.0.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
-
-
[[package]]
-
name = "markup5ever"
-
version = "0.11.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
-
dependencies = [
-
"log",
-
"phf 0.10.1",
-
"phf_codegen",
-
"string_cache",
-
"string_cache_codegen",
-
"tendril",
-
]
-
-
[[package]]
-
name = "matchers"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
-
dependencies = [
-
"regex-automata",
-
]
-
-
[[package]]
-
name = "matches"
-
version = "0.1.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
-
-
[[package]]
-
name = "matchit"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
-
-
[[package]]
-
name = "md5"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
-
-
[[package]]
-
name = "memchr"
-
version = "2.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
-
-
[[package]]
-
name = "mime"
-
version = "0.3.16"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
-
-
[[package]]
-
name = "mime_guess"
-
version = "2.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
-
dependencies = [
-
"mime",
-
"unicase",
-
]
-
-
[[package]]
-
name = "minimal-lexical"
-
version = "0.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
-
-
[[package]]
-
name = "miniz_oxide"
-
version = "0.5.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
-
dependencies = [
-
"adler",
-
]
-
-
[[package]]
-
name = "miniz_oxide"
-
version = "0.6.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
-
dependencies = [
-
"adler",
-
]
-
-
[[package]]
-
name = "mio"
-
version = "0.8.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
-
dependencies = [
-
"libc",
-
"log",
-
"wasi 0.11.0+wasi-snapshot-preview1",
-
"windows-sys",
-
]
-
-
[[package]]
-
name = "multer"
-
version = "2.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6ed4198ce7a4cbd2a57af78d28c6fbb57d81ac5f1d6ad79ac6c5587419cbdf22"
-
dependencies = [
-
"bytes",
-
"encoding_rs",
-
"futures-util",
-
"http",
-
"httparse",
-
"log",
-
"memchr",
-
"mime",
-
"spin 0.9.4",
-
"version_check",
-
]
-
-
[[package]]
-
name = "multimap"
-
version = "0.8.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
-
-
[[package]]
-
name = "new_debug_unreachable"
-
version = "1.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
-
-
[[package]]
-
name = "nom"
-
version = "7.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
-
dependencies = [
-
"memchr",
-
"minimal-lexical",
-
]
-
-
[[package]]
-
name = "nonempty"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7"
-
-
[[package]]
-
name = "nu-ansi-term"
-
version = "0.46.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
-
dependencies = [
-
"overload",
-
"winapi",
-
]
-
-
[[package]]
-
name = "num-format"
-
version = "0.4.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a652d9771a63711fd3c3deb670acfbe5c30a4072e664d7a3bf5a9e1056ac72c3"
-
dependencies = [
-
"arrayvec",
-
"itoa",
-
]
-
-
[[package]]
-
name = "num-integer"
-
version = "0.1.45"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
-
dependencies = [
-
"autocfg",
-
"num-traits",
-
]
-
-
[[package]]
-
name = "num-traits"
-
version = "0.2.15"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
-
dependencies = [
-
"autocfg",
-
]
-
-
[[package]]
-
name = "num_cpus"
-
version = "1.15.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
-
dependencies = [
-
"hermit-abi 0.2.6",
-
"libc",
-
]
-
-
[[package]]
-
name = "num_enum"
-
version = "0.5.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cf5395665662ef45796a4ff5486c5d41d29e0c09640af4c5f17fd94ee2c119c9"
-
dependencies = [
-
"num_enum_derive",
-
]
-
-
[[package]]
-
name = "num_enum_derive"
-
version = "0.5.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3b0498641e53dd6ac1a4f22547548caa6864cc4933784319cd1775271c5a46ce"
-
dependencies = [
-
"proc-macro-crate",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "object"
-
version = "0.29.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
-
dependencies = [
-
"memchr",
-
]
-
-
[[package]]
-
name = "once_cell"
-
version = "1.17.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
-
-
[[package]]
-
name = "opaque-debug"
-
version = "0.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
-
-
[[package]]
-
name = "os_str_bytes"
-
version = "6.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3baf96e39c5359d2eb0dd6ccb42c62b91d9678aa68160d261b9e0ccbf9e9dea9"
-
-
[[package]]
-
name = "overload"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
-
-
[[package]]
-
name = "parking"
-
version = "2.0.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
-
-
[[package]]
-
name = "parking_lot"
-
version = "0.12.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
-
dependencies = [
-
"lock_api",
-
"parking_lot_core",
-
]
-
-
[[package]]
-
name = "parking_lot_core"
-
version = "0.9.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
-
dependencies = [
-
"cfg-if",
-
"libc",
-
"redox_syscall",
-
"smallvec",
-
"windows-sys",
-
]
-
-
[[package]]
-
name = "password-hash"
-
version = "0.4.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7676374caaee8a325c9e7a2ae557f216c5563a171d6997b0ef8a65af35147700"
-
dependencies = [
-
"base64ct",
-
"rand_core 0.6.4",
-
"subtle",
-
]
-
-
[[package]]
-
name = "paste"
-
version = "1.0.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
-
-
[[package]]
-
name = "pbkdf2"
-
version = "0.11.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
-
dependencies = [
-
"digest",
-
"hmac",
-
"password-hash",
-
"sha2",
-
]
-
-
[[package]]
-
name = "percent-encoding"
-
version = "2.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
-
-
[[package]]
-
name = "petgraph"
-
version = "0.6.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e6d5014253a1331579ce62aa67443b4a658c5e7dd03d4bc6d302b94474888143"
-
dependencies = [
-
"fixedbitset",
-
"indexmap",
-
]
-
-
[[package]]
-
name = "phf"
-
version = "0.10.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
-
dependencies = [
-
"phf_shared 0.10.0",
-
]
-
-
[[package]]
-
name = "phf"
-
version = "0.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "928c6535de93548188ef63bb7c4036bd415cd8f36ad25af44b9789b2ee72a48c"
-
dependencies = [
-
"phf_macros",
-
"phf_shared 0.11.1",
-
]
-
-
[[package]]
-
name = "phf_codegen"
-
version = "0.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
-
dependencies = [
-
"phf_generator 0.10.0",
-
"phf_shared 0.10.0",
-
]
-
-
[[package]]
-
name = "phf_generator"
-
version = "0.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
-
dependencies = [
-
"phf_shared 0.10.0",
-
"rand 0.8.5",
-
]
-
-
[[package]]
-
name = "phf_generator"
-
version = "0.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b1181c94580fa345f50f19d738aaa39c0ed30a600d95cb2d3e23f94266f14fbf"
-
dependencies = [
-
"phf_shared 0.11.1",
-
"rand 0.8.5",
-
]
-
-
[[package]]
-
name = "phf_macros"
-
version = "0.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "92aacdc5f16768709a569e913f7451034034178b05bdc8acda226659a3dccc66"
-
dependencies = [
-
"phf_generator 0.11.1",
-
"phf_shared 0.11.1",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "phf_shared"
-
version = "0.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
-
dependencies = [
-
"siphasher",
-
]
-
-
[[package]]
-
name = "phf_shared"
-
version = "0.11.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e1fb5f6f826b772a8d4c0394209441e7d37cbbb967ae9c7e0e8134365c9ee676"
-
dependencies = [
-
"siphasher",
-
]
-
-
[[package]]
-
name = "pin-project"
-
version = "1.0.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
-
dependencies = [
-
"pin-project-internal",
-
]
-
-
[[package]]
-
name = "pin-project-internal"
-
version = "1.0.12"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "pin-project-lite"
-
version = "0.2.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
-
-
[[package]]
-
name = "pin-utils"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
-
-
[[package]]
-
name = "pkg-config"
-
version = "0.3.26"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
-
-
[[package]]
-
name = "polling"
-
version = "2.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ab4609a838d88b73d8238967b60dd115cc08d38e2bbaf51ee1e4b695f89122e2"
-
dependencies = [
-
"autocfg",
-
"cfg-if",
-
"libc",
-
"log",
-
"wepoll-ffi",
-
"winapi",
-
]
-
-
[[package]]
-
name = "ppv-lite86"
-
version = "0.2.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
-
-
[[package]]
-
name = "precomputed-hash"
-
version = "0.1.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
-
-
[[package]]
-
name = "prettyplease"
-
version = "0.1.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c142c0e46b57171fe0c528bee8c5b7569e80f0c17e377cd0e30ea57dbc11bb51"
-
dependencies = [
-
"proc-macro2",
-
"syn",
-
]
-
-
[[package]]
-
name = "proc-macro-crate"
-
version = "1.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
-
dependencies = [
-
"once_cell",
-
"thiserror",
-
"toml",
-
]
-
-
[[package]]
-
name = "proc-macro-error"
-
version = "1.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
-
dependencies = [
-
"proc-macro-error-attr",
-
"proc-macro2",
-
"quote",
-
"syn",
-
"version_check",
-
]
-
-
[[package]]
-
name = "proc-macro-error-attr"
-
version = "1.0.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"version_check",
-
]
-
-
[[package]]
-
name = "proc-macro-hack"
-
version = "0.5.19"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
-
-
[[package]]
-
name = "proc-macro2"
-
version = "1.0.47"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
-
dependencies = [
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "prost"
-
version = "0.11.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "21dc42e00223fc37204bd4aa177e69420c604ca4a183209a8f9de30c6d934698"
-
dependencies = [
-
"bytes",
-
"prost-derive",
-
]
-
-
[[package]]
-
name = "prost-build"
-
version = "0.11.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a3f8ad728fb08fe212df3c05169e940fbb6d9d16a877ddde14644a983ba2012e"
-
dependencies = [
-
"bytes",
-
"heck",
-
"itertools",
-
"lazy_static",
-
"log",
-
"multimap",
-
"petgraph",
-
"prettyplease",
-
"prost",
-
"prost-types",
-
"regex",
-
"syn",
-
"tempfile",
-
"which",
-
]
-
-
[[package]]
-
name = "prost-derive"
-
version = "0.11.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8bda8c0881ea9f722eb9629376db3d0b903b462477c1aafcb0566610ac28ac5d"
-
dependencies = [
-
"anyhow",
-
"itertools",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "prost-types"
-
version = "0.11.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a5e0526209433e96d83d750dd81a99118edbc55739e7e61a46764fd2ad537788"
-
dependencies = [
-
"bytes",
-
"prost",
-
]
-
-
[[package]]
-
name = "pulldown-cmark"
-
version = "0.9.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2d9cc634bc78768157b5cbfe988ffcd1dcba95cd2b2f03a88316c08c6d00ed63"
-
dependencies = [
-
"bitflags",
-
"getopts",
-
"memchr",
-
"unicase",
-
]
-
-
[[package]]
-
name = "quote"
-
version = "1.0.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
-
dependencies = [
-
"proc-macro2",
-
]
-
-
[[package]]
-
name = "rand"
-
version = "0.7.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
-
dependencies = [
-
"getrandom 0.1.16",
-
"libc",
-
"rand_chacha 0.2.2",
-
"rand_core 0.5.1",
-
"rand_hc",
-
"rand_pcg",
-
]
-
-
[[package]]
-
name = "rand"
-
version = "0.8.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
-
dependencies = [
-
"libc",
-
"rand_chacha 0.3.1",
-
"rand_core 0.6.4",
-
]
-
-
[[package]]
-
name = "rand_chacha"
-
version = "0.2.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
-
dependencies = [
-
"ppv-lite86",
-
"rand_core 0.5.1",
-
]
-
-
[[package]]
-
name = "rand_chacha"
-
version = "0.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
-
dependencies = [
-
"ppv-lite86",
-
"rand_core 0.6.4",
-
]
-
-
[[package]]
-
name = "rand_core"
-
version = "0.5.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
-
dependencies = [
-
"getrandom 0.1.16",
-
]
-
-
[[package]]
-
name = "rand_core"
-
version = "0.6.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
-
dependencies = [
-
"getrandom 0.2.8",
-
]
-
-
[[package]]
-
name = "rand_hc"
-
version = "0.2.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
-
dependencies = [
-
"rand_core 0.5.1",
-
]
-
-
[[package]]
-
name = "rand_pcg"
-
version = "0.2.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
-
dependencies = [
-
"rand_core 0.5.1",
-
]
-
-
[[package]]
-
name = "redox_syscall"
-
version = "0.2.16"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
-
dependencies = [
-
"bitflags",
-
]
-
-
[[package]]
-
name = "regex"
-
version = "1.7.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
-
dependencies = [
-
"aho-corasick",
-
"memchr",
-
"regex-syntax",
-
]
-
-
[[package]]
-
name = "regex-automata"
-
version = "0.1.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
-
dependencies = [
-
"regex-syntax",
-
]
-
-
[[package]]
-
name = "regex-syntax"
-
version = "0.6.28"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
-
-
[[package]]
-
name = "remove_dir_all"
-
version = "0.5.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
-
dependencies = [
-
"winapi",
-
]
-
-
[[package]]
-
name = "reqwest"
-
version = "0.11.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "21eed90ec8570952d53b772ecf8f206aa1ec9a3d76b2521c56c42973f2d91ee9"
-
dependencies = [
-
"base64 0.21.0",
-
"bytes",
-
"encoding_rs",
-
"futures-core",
-
"futures-util",
-
"h2",
-
"http",
-
"http-body",
-
"hyper",
-
"ipnet",
-
"js-sys",
-
"log",
-
"mime",
-
"mime_guess",
-
"once_cell",
-
"percent-encoding",
-
"pin-project-lite",
-
"serde",
-
"serde_json",
-
"serde_urlencoded",
-
"tokio",
-
"tokio-socks",
-
"tokio-util",
-
"tower-service",
-
"url",
-
"wasm-bindgen",
-
"wasm-bindgen-futures",
-
"wasm-streams",
-
"web-sys",
-
"winreg",
-
]
-
-
[[package]]
-
name = "ring"
-
version = "0.16.20"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
-
dependencies = [
-
"cc",
-
"libc",
-
"once_cell",
-
"spin 0.5.2",
-
"untrusted",
-
"web-sys",
-
"winapi",
-
]
-
-
[[package]]
-
name = "rusqlite"
-
version = "0.28.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a"
-
dependencies = [
-
"bitflags",
-
"fallible-iterator",
-
"fallible-streaming-iterator",
-
"hashlink",
-
"libsqlite3-sys",
-
"smallvec",
-
]
-
-
[[package]]
-
name = "rustc-demangle"
-
version = "0.1.21"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
-
-
[[package]]
-
name = "rustc-hash"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
-
-
[[package]]
-
name = "rustc_version"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
-
dependencies = [
-
"semver",
-
]
-
-
[[package]]
-
name = "rustls"
-
version = "0.20.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
-
dependencies = [
-
"log",
-
"ring",
-
"sct",
-
"webpki",
-
]
-
-
[[package]]
-
name = "rustls-pemfile"
-
version = "1.0.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
-
dependencies = [
-
"base64 0.13.1",
-
]
-
-
[[package]]
-
name = "rustversion"
-
version = "1.0.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "97477e48b4cf8603ad5f7aaf897467cf42ab4218a38ef76fb14c2d6773a6d6a8"
-
-
[[package]]
-
name = "ryu"
-
version = "1.0.11"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
-
-
[[package]]
-
name = "scopeguard"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
-
-
[[package]]
-
name = "scratch"
-
version = "1.0.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
-
-
[[package]]
-
name = "sct"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
-
dependencies = [
-
"ring",
-
"untrusted",
-
]
-
-
[[package]]
-
name = "self_cell"
-
version = "0.10.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1ef965a420fe14fdac7dd018862966a4c14094f900e1650bbc71ddd7d580c8af"
-
-
[[package]]
-
name = "semver"
-
version = "1.0.14"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e25dfac463d778e353db5be2449d1cce89bd6fd23c9f1ea21310ce6e5a1b29c4"
-
-
[[package]]
-
name = "serde"
-
version = "1.0.152"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
-
dependencies = [
-
"serde_derive",
-
]
-
-
[[package]]
-
name = "serde-aux"
-
version = "4.1.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c599b3fd89a75e0c18d6d2be693ddb12cccaf771db4ff9e39097104808a014c0"
-
dependencies = [
-
"chrono",
-
"serde",
-
"serde_json",
-
]
-
-
[[package]]
-
name = "serde_derive"
-
version = "1.0.152"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "serde_json"
-
version = "1.0.92"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7434af0dc1cbd59268aa98b4c22c131c0584d2232f6fb166efb993e2832e896a"
-
dependencies = [
-
"itoa",
-
"ryu",
-
"serde",
-
]
-
-
[[package]]
-
name = "serde_path_to_error"
-
version = "0.1.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "26b04f22b563c91331a10074bda3dd5492e3cc39d56bd557e91c0af42b6c7341"
-
dependencies = [
-
"serde",
-
]
-
-
[[package]]
-
name = "serde_repr"
-
version = "0.1.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9a5ec9fa74a20ebbe5d9ac23dac1fc96ba0ecfe9f50f2843b52e537b10fbcb4e"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "serde_tuple"
-
version = "0.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f4f025b91216f15a2a32aa39669329a475733590a015835d1783549a56d09427"
-
dependencies = [
-
"serde",
-
"serde_tuple_macros",
-
]
-
-
[[package]]
-
name = "serde_tuple_macros"
-
version = "0.5.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4076151d1a2b688e25aaf236997933c66e18b870d0369f8b248b8ab2be630d7e"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "serde_urlencoded"
-
version = "0.7.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
-
dependencies = [
-
"form_urlencoded",
-
"itoa",
-
"ryu",
-
"serde",
-
]
-
-
[[package]]
-
name = "sha1"
-
version = "0.10.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
-
dependencies = [
-
"cfg-if",
-
"cpufeatures",
-
"digest",
-
]
-
-
[[package]]
-
name = "sha2"
-
version = "0.10.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
-
dependencies = [
-
"cfg-if",
-
"cpufeatures",
-
"digest",
-
]
-
-
[[package]]
-
name = "sharded-slab"
-
version = "0.1.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
-
dependencies = [
-
"lazy_static",
-
]
-
-
[[package]]
-
name = "signal-hook-registry"
-
version = "1.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
-
dependencies = [
-
"libc",
-
]
-
-
[[package]]
-
name = "siphasher"
-
version = "0.3.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
-
-
[[package]]
-
name = "slab"
-
version = "0.4.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
-
dependencies = [
-
"autocfg",
-
]
-
-
[[package]]
-
name = "smallvec"
-
version = "1.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
-
-
[[package]]
-
name = "snafu"
-
version = "0.7.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cb0656e7e3ffb70f6c39b3c2a86332bb74aa3c679da781642590f3c1118c5045"
-
dependencies = [
-
"backtrace",
-
"doc-comment",
-
"snafu-derive",
-
]
-
-
[[package]]
-
name = "snafu-derive"
-
version = "0.7.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "475b3bbe5245c26f2d8a6f62d67c1f30eb9fffeccee721c45d162c3ebbdf81b2"
-
dependencies = [
-
"heck",
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "snowflake"
-
version = "1.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "27207bb65232eda1f588cf46db2fee75c0808d557f6b3cf19a75f5d6d7c94df1"
-
-
[[package]]
-
name = "socket2"
-
version = "0.4.7"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
-
dependencies = [
-
"libc",
-
"winapi",
-
]
-
-
[[package]]
-
name = "spin"
-
version = "0.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
-
-
[[package]]
-
name = "spin"
-
version = "0.9.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
-
-
[[package]]
-
name = "string_cache"
-
version = "0.8.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
-
dependencies = [
-
"new_debug_unreachable",
-
"once_cell",
-
"parking_lot",
-
"phf_shared 0.10.0",
-
"precomputed-hash",
-
"serde",
-
]
-
-
[[package]]
-
name = "string_cache_codegen"
-
version = "0.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
-
dependencies = [
-
"phf_generator 0.10.0",
-
"phf_shared 0.10.0",
-
"proc-macro2",
-
"quote",
-
]
-
-
[[package]]
-
name = "strsim"
-
version = "0.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
-
-
[[package]]
-
name = "strum"
-
version = "0.24.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "063e6045c0e62079840579a7e47a355ae92f60eb74daaf156fb1e84ba164e63f"
-
dependencies = [
-
"strum_macros",
-
]
-
-
[[package]]
-
name = "strum_macros"
-
version = "0.24.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
-
dependencies = [
-
"heck",
-
"proc-macro2",
-
"quote",
-
"rustversion",
-
"syn",
-
]
-
-
[[package]]
-
name = "subtle"
-
version = "2.4.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
-
-
[[package]]
-
name = "syn"
-
version = "1.0.107"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"unicode-ident",
-
]
-
-
[[package]]
-
name = "sync_wrapper"
-
version = "0.1.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
-
-
[[package]]
-
name = "tempfile"
-
version = "3.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
-
dependencies = [
-
"cfg-if",
-
"fastrand",
-
"libc",
-
"redox_syscall",
-
"remove_dir_all",
-
"winapi",
-
]
-
-
[[package]]
-
name = "tendril"
-
version = "0.4.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
-
dependencies = [
-
"futf",
-
"mac",
-
"utf-8",
-
]
-
-
[[package]]
-
name = "termcolor"
-
version = "1.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
-
dependencies = [
-
"winapi-util",
-
]
-
-
[[package]]
-
name = "thiserror"
-
version = "1.0.37"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
-
dependencies = [
-
"thiserror-impl",
-
]
-
-
[[package]]
-
name = "thiserror-impl"
-
version = "1.0.37"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "thread_local"
-
version = "1.1.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
-
dependencies = [
-
"once_cell",
-
]
-
-
[[package]]
-
name = "time"
-
version = "0.1.44"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
-
dependencies = [
-
"libc",
-
"wasi 0.10.0+wasi-snapshot-preview1",
-
"winapi",
-
]
-
-
[[package]]
-
name = "time"
-
version = "0.3.17"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
-
dependencies = [
-
"itoa",
-
"serde",
-
"time-core",
-
"time-macros",
-
]
-
-
[[package]]
-
name = "time-core"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
-
-
[[package]]
-
name = "time-macros"
-
version = "0.2.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
-
dependencies = [
-
"time-core",
-
]
-
-
[[package]]
-
name = "tinystr"
-
version = "0.7.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f8aeafdfd935e4a7fe16a91ab711fa52d54df84f9c8f7ca5837a9d1d902ef4c2"
-
dependencies = [
-
"displaydoc",
-
]
-
-
[[package]]
-
name = "tinyvec"
-
version = "1.6.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
-
dependencies = [
-
"tinyvec_macros",
-
]
-
-
[[package]]
-
name = "tinyvec_macros"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
-
-
[[package]]
-
name = "tokio"
-
version = "1.25.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c8e00990ebabbe4c14c08aca901caed183ecd5c09562a12c824bb53d3c3fd3af"
-
dependencies = [
-
"autocfg",
-
"bytes",
-
"libc",
-
"memchr",
-
"mio",
-
"num_cpus",
-
"parking_lot",
-
"pin-project-lite",
-
"signal-hook-registry",
-
"socket2",
-
"tokio-macros",
-
"windows-sys",
-
]
-
-
[[package]]
-
name = "tokio-macros"
-
version = "1.8.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "tokio-rustls"
-
version = "0.23.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
-
dependencies = [
-
"rustls",
-
"tokio",
-
"webpki",
-
]
-
-
[[package]]
-
name = "tokio-socks"
-
version = "0.5.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
-
dependencies = [
-
"either",
-
"futures-util",
-
"thiserror",
-
"tokio",
-
]
-
-
[[package]]
-
name = "tokio-util"
-
version = "0.7.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
-
dependencies = [
-
"bytes",
-
"futures-core",
-
"futures-sink",
-
"pin-project-lite",
-
"tokio",
-
"tracing",
-
]
-
-
[[package]]
-
name = "toml"
-
version = "0.5.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
-
dependencies = [
-
"serde",
-
]
-
-
[[package]]
-
name = "tower"
-
version = "0.4.13"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
-
dependencies = [
-
"futures-core",
-
"futures-util",
-
"pin-project",
-
"pin-project-lite",
-
"tokio",
-
"tower-layer",
-
"tower-service",
-
"tracing",
-
]
-
-
[[package]]
-
name = "tower-http"
-
version = "0.3.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f873044bf02dd1e8239e9c1293ea39dad76dc594ec16185d0a1bf31d8dc8d858"
-
dependencies = [
-
"bitflags",
-
"bytes",
-
"futures-core",
-
"futures-util",
-
"http",
-
"http-body",
-
"http-range-header",
-
"pin-project-lite",
-
"tower",
-
"tower-layer",
-
"tower-service",
-
"tracing",
-
]
-
-
[[package]]
-
name = "tower-layer"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
-
-
[[package]]
-
name = "tower-service"
-
version = "0.3.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
-
-
[[package]]
-
name = "tracing"
-
version = "0.1.37"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
-
dependencies = [
-
"cfg-if",
-
"log",
-
"pin-project-lite",
-
"tracing-attributes",
-
"tracing-core",
-
]
-
-
[[package]]
-
name = "tracing-appender"
-
version = "0.2.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e"
-
dependencies = [
-
"crossbeam-channel",
-
"time 0.3.17",
-
"tracing-subscriber",
-
]
-
-
[[package]]
-
name = "tracing-attributes"
-
version = "0.1.23"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
]
-
-
[[package]]
-
name = "tracing-core"
-
version = "0.1.30"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
-
dependencies = [
-
"once_cell",
-
"valuable",
-
]
-
-
[[package]]
-
name = "tracing-log"
-
version = "0.1.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
-
dependencies = [
-
"lazy_static",
-
"log",
-
"tracing-core",
-
]
-
-
[[package]]
-
name = "tracing-subscriber"
-
version = "0.3.16"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
-
dependencies = [
-
"matchers",
-
"nu-ansi-term",
-
"once_cell",
-
"regex",
-
"sharded-slab",
-
"smallvec",
-
"thread_local",
-
"tracing",
-
"tracing-core",
-
"tracing-log",
-
]
-
-
[[package]]
-
name = "try-lock"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
-
-
[[package]]
-
name = "twoway"
-
version = "0.2.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47"
-
dependencies = [
-
"memchr",
-
"unchecked-index",
-
]
-
-
[[package]]
-
name = "type-map"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "b6d3364c5e96cb2ad1603037ab253ddd34d7fb72a58bdddf4b7350760fc69a46"
-
dependencies = [
-
"rustc-hash",
-
]
-
-
[[package]]
-
name = "typenum"
-
version = "1.15.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
-
-
[[package]]
-
name = "unchecked-index"
-
version = "0.2.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c"
-
-
[[package]]
-
name = "unic-char-property"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
-
dependencies = [
-
"unic-char-range",
-
]
-
-
[[package]]
-
name = "unic-char-range"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
-
-
[[package]]
-
name = "unic-common"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
-
-
[[package]]
-
name = "unic-langid"
-
version = "0.9.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "398f9ad7239db44fd0f80fe068d12ff22d78354080332a5077dc6f52f14dcf2f"
-
dependencies = [
-
"unic-langid-impl",
-
"unic-langid-macros",
-
]
-
-
[[package]]
-
name = "unic-langid-impl"
-
version = "0.9.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "e35bfd2f2b8796545b55d7d3fd3e89a0613f68a0d1c8bc28cb7ff96b411a35ff"
-
dependencies = [
-
"tinystr",
-
]
-
-
[[package]]
-
name = "unic-langid-macros"
-
version = "0.9.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "055e618bf694161ffff0466d95cef3e1a5edc59f6ba1888e97801f2b4ebdc4fe"
-
dependencies = [
-
"proc-macro-hack",
-
"tinystr",
-
"unic-langid-impl",
-
"unic-langid-macros-impl",
-
]
-
-
[[package]]
-
name = "unic-langid-macros-impl"
-
version = "0.9.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1f5cdec05b907f4e2f6843f4354f4ce6a5bebe1a56df320a49134944477ce4d8"
-
dependencies = [
-
"proc-macro-hack",
-
"quote",
-
"syn",
-
"unic-langid-impl",
-
]
-
-
[[package]]
-
name = "unic-ucd-category"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1b8d4591f5fcfe1bd4453baaf803c40e1b1e69ff8455c47620440b46efef91c0"
-
dependencies = [
-
"matches",
-
"unic-char-property",
-
"unic-char-range",
-
"unic-ucd-version",
-
]
-
-
[[package]]
-
name = "unic-ucd-version"
-
version = "0.9.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
-
dependencies = [
-
"unic-common",
-
]
-
-
[[package]]
-
name = "unicase"
-
version = "2.6.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
-
dependencies = [
-
"version_check",
-
]
-
-
[[package]]
-
name = "unicode-bidi"
-
version = "0.3.8"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
-
-
[[package]]
-
name = "unicode-ident"
-
version = "1.0.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
-
-
[[package]]
-
name = "unicode-normalization"
-
version = "0.1.22"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
-
dependencies = [
-
"tinyvec",
-
]
-
-
[[package]]
-
name = "unicode-segmentation"
-
version = "1.10.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
-
-
[[package]]
-
name = "unicode-width"
-
version = "0.1.10"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
-
-
[[package]]
-
name = "untrusted"
-
version = "0.7.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
-
-
[[package]]
-
name = "url"
-
version = "2.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
-
dependencies = [
-
"form_urlencoded",
-
"idna",
-
"percent-encoding",
-
"serde",
-
]
-
-
[[package]]
-
name = "urlparse"
-
version = "0.7.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "110352d4e9076c67839003c7788d8604e24dcded13e0b375af3efaa8cf468517"
-
-
[[package]]
-
name = "utf-8"
-
version = "0.7.6"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
-
-
[[package]]
-
name = "utime"
-
version = "0.3.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "91baa0c65eabd12fcbdac8cc35ff16159cab95cae96d0222d6d0271db6193cef"
-
dependencies = [
-
"libc",
-
"winapi",
-
]
-
-
[[package]]
-
name = "valuable"
-
version = "0.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
-
-
[[package]]
-
name = "value-bag"
-
version = "1.0.0-alpha.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55"
-
dependencies = [
-
"ctor",
-
"version_check",
-
]
-
-
[[package]]
-
name = "vcpkg"
-
version = "0.2.15"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
-
-
[[package]]
-
name = "version_check"
-
version = "0.9.4"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
-
-
[[package]]
-
name = "waker-fn"
-
version = "1.1.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
-
-
[[package]]
-
name = "want"
-
version = "0.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
-
dependencies = [
-
"log",
-
"try-lock",
-
]
-
-
[[package]]
-
name = "wasi"
-
version = "0.9.0+wasi-snapshot-preview1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
-
-
[[package]]
-
name = "wasi"
-
version = "0.10.0+wasi-snapshot-preview1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
-
-
[[package]]
-
name = "wasi"
-
version = "0.11.0+wasi-snapshot-preview1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
-
-
[[package]]
-
name = "wasm-bindgen"
-
version = "0.2.83"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
-
dependencies = [
-
"cfg-if",
-
"wasm-bindgen-macro",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-backend"
-
version = "0.2.83"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
-
dependencies = [
-
"bumpalo",
-
"log",
-
"once_cell",
-
"proc-macro2",
-
"quote",
-
"syn",
-
"wasm-bindgen-shared",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-futures"
-
version = "0.4.33"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
-
dependencies = [
-
"cfg-if",
-
"js-sys",
-
"wasm-bindgen",
-
"web-sys",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-macro"
-
version = "0.2.83"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
-
dependencies = [
-
"quote",
-
"wasm-bindgen-macro-support",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-macro-support"
-
version = "0.2.83"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
-
dependencies = [
-
"proc-macro2",
-
"quote",
-
"syn",
-
"wasm-bindgen-backend",
-
"wasm-bindgen-shared",
-
]
-
-
[[package]]
-
name = "wasm-bindgen-shared"
-
version = "0.2.83"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
-
-
[[package]]
-
name = "wasm-streams"
-
version = "0.2.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
-
dependencies = [
-
"futures-util",
-
"js-sys",
-
"wasm-bindgen",
-
"wasm-bindgen-futures",
-
"web-sys",
-
]
-
-
[[package]]
-
name = "web-sys"
-
version = "0.3.60"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
-
dependencies = [
-
"js-sys",
-
"wasm-bindgen",
-
]
-
-
[[package]]
-
name = "webpki"
-
version = "0.22.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
-
dependencies = [
-
"ring",
-
"untrusted",
-
]
-
-
[[package]]
-
name = "webpki-roots"
-
version = "0.22.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
-
dependencies = [
-
"webpki",
-
]
-
-
[[package]]
-
name = "wepoll-ffi"
-
version = "0.1.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
-
dependencies = [
-
"cc",
-
]
-
-
[[package]]
-
name = "which"
-
version = "4.3.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1c831fbbee9e129a8cf93e7747a82da9d95ba8e16621cae60ec2cdc849bacb7b"
-
dependencies = [
-
"either",
-
"libc",
-
"once_cell",
-
]
-
-
[[package]]
-
name = "winapi"
-
version = "0.3.9"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
-
dependencies = [
-
"winapi-i686-pc-windows-gnu",
-
"winapi-x86_64-pc-windows-gnu",
-
]
-
-
[[package]]
-
name = "winapi-i686-pc-windows-gnu"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
-
-
[[package]]
-
name = "winapi-util"
-
version = "0.1.5"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
-
dependencies = [
-
"winapi",
-
]
-
-
[[package]]
-
name = "winapi-x86_64-pc-windows-gnu"
-
version = "0.4.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
-
-
[[package]]
-
name = "windows"
-
version = "0.44.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9e745dab35a0c4c77aa3ce42d595e13d2003d6902d6b08c9ef5fc326d08da12b"
-
dependencies = [
-
"windows-targets",
-
]
-
-
[[package]]
-
name = "windows-sys"
-
version = "0.42.0"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
-
dependencies = [
-
"windows_aarch64_gnullvm",
-
"windows_aarch64_msvc",
-
"windows_i686_gnu",
-
"windows_i686_msvc",
-
"windows_x86_64_gnu",
-
"windows_x86_64_gnullvm",
-
"windows_x86_64_msvc",
-
]
-
-
[[package]]
-
name = "windows-targets"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
-
dependencies = [
-
"windows_aarch64_gnullvm",
-
"windows_aarch64_msvc",
-
"windows_i686_gnu",
-
"windows_i686_msvc",
-
"windows_x86_64_gnu",
-
"windows_x86_64_gnullvm",
-
"windows_x86_64_msvc",
-
]
-
-
[[package]]
-
name = "windows_aarch64_gnullvm"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
-
-
[[package]]
-
name = "windows_aarch64_msvc"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
-
-
[[package]]
-
name = "windows_i686_gnu"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
-
-
[[package]]
-
name = "windows_i686_msvc"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
-
-
[[package]]
-
name = "windows_x86_64_gnu"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
-
-
[[package]]
-
name = "windows_x86_64_gnullvm"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
-
-
[[package]]
-
name = "windows_x86_64_msvc"
-
version = "0.42.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
-
-
[[package]]
-
name = "winreg"
-
version = "0.10.1"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
-
dependencies = [
-
"winapi",
-
]
-
-
[[package]]
-
name = "workspace-hack"
-
version = "0.1.0"
-
dependencies = [
-
"bytes",
-
"cc",
-
"crossbeam-utils",
-
"either",
-
"flate2",
-
"futures-channel",
-
"futures-io",
-
"futures-task",
-
"futures-util",
-
"getrandom 0.2.8",
-
"hashbrown",
-
"hmac",
-
"hyper",
-
"indexmap",
-
"itertools",
-
"log",
-
"num-traits",
-
"phf_shared 0.11.1",
-
"prost",
-
"rand 0.7.3",
-
"rand 0.8.5",
-
"rand_core 0.6.4",
-
"regex",
-
"regex-syntax",
-
"scopeguard",
-
"serde",
-
"serde_json",
-
"sha2",
-
"snafu",
-
"syn",
-
"time 0.3.17",
-
"time-macros",
-
"tokio",
-
"tokio-util",
-
"tracing",
-
"tracing-core",
-
"url",
-
"zip",
-
"zstd 0.11.2+zstd.1.5.2",
-
"zstd 0.12.3+zstd.1.5.2",
-
"zstd-safe 5.0.2+zstd.1.5.2",
-
"zstd-safe 6.0.3+zstd.1.5.2",
-
"zstd-sys",
-
]
-
-
[[package]]
-
name = "zip"
-
version = "0.6.3"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "537ce7411d25e54e8ae21a7ce0b15840e7bfcff15b51d697ec3266cc76bdf080"
-
dependencies = [
-
"aes",
-
"byteorder",
-
"bzip2",
-
"constant_time_eq 0.1.5",
-
"crc32fast",
-
"crossbeam-utils",
-
"flate2",
-
"hmac",
-
"pbkdf2",
-
"sha1",
-
"time 0.3.17",
-
"zstd 0.11.2+zstd.1.5.2",
-
]
-
-
[[package]]
-
name = "zstd"
-
version = "0.11.2+zstd.1.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "20cc960326ece64f010d2d2107537f26dc589a6573a316bd5b1dba685fa5fde4"
-
dependencies = [
-
"zstd-safe 5.0.2+zstd.1.5.2",
-
]
-
-
[[package]]
-
name = "zstd"
-
version = "0.12.3+zstd.1.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
-
dependencies = [
-
"zstd-safe 6.0.3+zstd.1.5.2",
-
]
-
-
[[package]]
-
name = "zstd-safe"
-
version = "5.0.2+zstd.1.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "1d2a5585e04f9eea4b2a3d1eca508c4dee9592a89ef6f450c11719da0726f4db"
-
dependencies = [
-
"libc",
-
"zstd-sys",
-
]
-
-
[[package]]
-
name = "zstd-safe"
-
version = "6.0.3+zstd.1.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "68e4a3f57d13d0ab7e478665c60f35e2a613dcd527851c2c7287ce5c787e134a"
-
dependencies = [
-
"libc",
-
"zstd-sys",
-
]
-
-
[[package]]
-
name = "zstd-sys"
-
version = "2.0.1+zstd.1.5.2"
-
source = "registry+https://github.com/rust-lang/crates.io-index"
-
checksum = "9fd07cbbc53846d9145dbffdf6dd09a7a0aa52be46741825f5c97bdd4f73f12b"
-
dependencies = [
-
"cc",
-
"libc",
-
]
-53
pkgs/servers/ankisyncd/default.nix
···
-
{ lib, runCommand, fetchFromGitHub, rustPlatform, protobuf }:
-
-
let
-
pname = "ankisyncd";
-
version = "1.1.4";
-
-
# anki-sync-server-rs expects anki sources in the 'anki' folder
-
# of its own source tree, with a patch applied (mostly to make
-
# some modules public): prepare our own 'src' manually
-
src = runCommand "anki-sync-server-rs-src" {
-
src = fetchFromGitHub {
-
owner = "ankicommunity";
-
repo = "anki-sync-server-rs";
-
rev = version;
-
hash = "sha256-iL4lJJAV4SrNeRX3s0ZpJ//lrwoKjLsltlX4d2wP6O0=";
-
};
-
} ''
-
cp -r "$src/." "$out"
-
chmod +w "$out"
-
cp -r "${ankiSrc}" "$out/anki"
-
chmod -R +w "$out/anki"
-
patch -d "$out/anki" -Np1 < "$src/anki_patch/d9d36078f17a2b4b8b44fcb802eb274911ebabe7_anki_rslib.patch"
-
'';
-
-
# Note we do not use anki.src because the patch in ankisyncd's
-
# sources expect a fixed version, so we pin it here.
-
ankiSrc = fetchFromGitHub {
-
owner = "ankitects";
-
repo = "anki";
-
rev = "2.1.60";
-
hash = "sha256-hNrf6asxF7r7QK2XO150yiRjyHAYKN8OFCFYX0SAiwA=";
-
fetchSubmodules = true;
-
};
-
in rustPlatform.buildRustPackage {
-
inherit pname version src;
-
-
cargoLock = {
-
lockFile = ./Cargo.lock;
-
outputHashes = {
-
"csv-1.1.6" = "sha256-w728ffOVkI+IfK6FbmkGhr0CjuyqgJnPB1kutMJIUYg=";
-
};
-
};
-
-
nativeBuildInputs = [ protobuf ];
-
-
meta = with lib; {
-
description = "Standalone unofficial anki sync server";
-
homepage = "https://github.com/ankicommunity/anki-sync-server-rs";
-
license = with licenses; [ agpl3Only ];
-
maintainers = with maintainers; [ martinetd ];
-
mainProgram = "ankisyncd";
-
};
-
}
+1
pkgs/top-level/aliases.nix
···
ansible_2_14 = throw "Ansible 2.14 goes end of life in 2024/05 and can't be supported throughout the 24.05 release cycle"; # Added 2024-04-11
antennas = throw "antennas has been removed as it only works with tvheadend, which nobody was willing to maintain and was stuck on an unmaintained version that required FFmpeg 4; please see https://github.com/NixOS/nixpkgs/pull/332259 if you are interested in maintaining a newer version"; # Added 2024-08-21
androidndkPkgs_23b = lib.warn "The package set `androidndkPkgs_23b` has been renamed to `androidndkPkgs_23`." androidndkPkgs_23; # Added 2024-07-21
+
ankisyncd = throw "ankisyncd is dead, use anki-sync-server instead"; # Added 2024-08-10
apacheAnt_1_9 = throw "Ant 1.9 has been removed since it's not used in nixpkgs anymore"; # Added 2023-11-12
apacheKafka_2_8 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12
apacheKafka_3_0 = throw "apacheKafka_2_8 through _3_5 have been removed from nixpkgs as outdated"; # Added 2024-02-12
-2
pkgs/top-level/all-packages.nix
···
anders = callPackage ../applications/science/logic/anders { };
-
ankisyncd = callPackage ../servers/ankisyncd { };
-
ariang = callPackage ../servers/ariang { };
ani-cli = callPackage ../applications/video/ani-cli { };