Merge branch 'master' into staging-next

Changed files
+6781 -1215
doc
languages-frameworks
maintainers
nixos
doc
manual
release-notes
modules
services
blockchain
ethereum
networking
tasks
filesystems
tests
pkgs
applications
audio
bitwig-studio
cmus
editors
file-managers
misc
gimoji
networking
browsers
cluster
bosh-cli
instant-messengers
telegram
telegram-desktop
by-name
sv
svix-server
desktops
xfce
core
xfconf
development
libraries
enchant
libhugetlbfs
mm-common
physics
clhep
lua-modules
python-modules
rotary-embedding-torch
tools
language-servers
kotlin-language-server
rust
cargo-insta
cargo-make
cargo-modules
os-specific
linux
nvme-cli
servers
matrix-hebbot
sslh
tools
networking
system
netdata
top-level
+3 -3
doc/languages-frameworks/lua.section.md
···
Luarocks-based packages are generated in [pkgs/development/lua-modules/generated-packages.nix](https://github.com/NixOS/nixpkgs/tree/master/pkgs/development/lua-modules/generated-packages.nix) from
the whitelist maintainers/scripts/luarocks-packages.csv and updated by running
-
the script
-
[maintainers/scripts/update-luarocks-packages](https://github.com/NixOS/nixpkgs/tree/master/maintainers/scripts/update-luarocks-packages):
+
the package `luarocks-packages-updater`:
```sh
-
./maintainers/scripts/update-luarocks-packages update
+
+
nix-shell -p luarocks-packages-updater --run luarocks-packages-updater
```
[luarocks2nix](https://github.com/nix-community/luarocks) is a tool capable of generating nix derivations from both rockspec and src.rock (and favors the src.rock).
+12 -3
maintainers/scripts/pluginupdate.py
···
"--input-names",
"-i",
dest="input_file",
+
type=Path,
default=self.default_in,
help="A list of plugins in the form owner/repo",
)
···
"-o",
dest="outfile",
default=self.default_out,
+
type=Path,
help="Filename to save generated nix code",
)
common.add_argument(
···
if autocommit:
from datetime import date
-
editor.nixpkgs_repo = git.Repo(editor.root, search_parent_directories=True)
-
updated = date.today().strftime('%m-%d-%Y')
-
commit(editor.nixpkgs_repo, f"{editor.attr_path}: updated the {updated}", [args.outfile])
+
try:
+
repo = git.Repo(os.getcwd())
+
updated = date.today().strftime('%m-%d-%Y')
+
print(args.outfile)
+
commit(repo,
+
f"{editor.attr_path}: updated the {updated}", [args.outfile]
+
)
+
except git.InvalidGitRepositoryError as e:
+
print(f"Not in a git repository: {e}", file=sys.stderr)
+
sys.exit(1)
if redirects:
update()
-224
maintainers/scripts/update-luarocks-packages
···
-
#!/usr/bin/env nix-shell
-
#!nix-shell update-luarocks-shell.nix -i python3
-
-
# format:
-
# $ nix run nixpkgs#python3Packages.black -- update.py
-
# type-check:
-
# $ nix run nixpkgs#python3Packages.mypy -- update.py
-
# linted:
-
# $ nix run nixpkgs#python3Packages.flake8 -- --ignore E501,E265,E402 update.py
-
-
import inspect
-
import os
-
import tempfile
-
import shutil
-
from dataclasses import dataclass
-
import subprocess
-
import csv
-
import logging
-
import textwrap
-
from multiprocessing.dummy import Pool
-
-
from typing import List, Tuple, Optional
-
from pathlib import Path
-
-
log = logging.getLogger()
-
log.addHandler(logging.StreamHandler())
-
-
ROOT = Path(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))).parent.parent # type: ignore
-
import pluginupdate
-
from pluginupdate import update_plugins, FetchConfig, CleanEnvironment
-
-
PKG_LIST = "maintainers/scripts/luarocks-packages.csv"
-
TMP_FILE = "$(mktemp)"
-
GENERATED_NIXFILE = "pkgs/development/lua-modules/generated-packages.nix"
-
LUAROCKS_CONFIG = "maintainers/scripts/luarocks-config.lua"
-
-
HEADER = """/* {GENERATED_NIXFILE} is an auto-generated file -- DO NOT EDIT!
-
Regenerate it with:
-
nixpkgs$ ./maintainers/scripts/update-luarocks-packages
-
-
You can customize the generated packages in pkgs/development/lua-modules/overrides.nix
-
*/
-
""".format(
-
GENERATED_NIXFILE=GENERATED_NIXFILE
-
)
-
-
FOOTER = """
-
}
-
/* GENERATED - do not edit this file */
-
"""
-
-
-
@dataclass
-
class LuaPlugin:
-
name: str
-
"""Name of the plugin, as seen on luarocks.org"""
-
src: str
-
"""address to the git repository"""
-
ref: Optional[str]
-
"""git reference (branch name/tag)"""
-
version: Optional[str]
-
"""Set it to pin a package """
-
server: Optional[str]
-
"""luarocks.org registers packages under different manifests.
-
Its value can be 'http://luarocks.org/dev'
-
"""
-
luaversion: Optional[str]
-
"""Attribue of the lua interpreter if a package is available only for a specific lua version"""
-
maintainers: Optional[str]
-
""" Optional string listing maintainers separated by spaces"""
-
-
@property
-
def normalized_name(self) -> str:
-
return self.name.replace(".", "-")
-
-
-
# rename Editor to LangUpdate/ EcosystemUpdater
-
class LuaEditor(pluginupdate.Editor):
-
def get_current_plugins(self):
-
return []
-
-
def load_plugin_spec(self, input_file) -> List[LuaPlugin]:
-
luaPackages = []
-
csvfilename = input_file
-
log.info("Loading package descriptions from %s", csvfilename)
-
-
with open(csvfilename, newline="") as csvfile:
-
reader = csv.DictReader(
-
csvfile,
-
)
-
for row in reader:
-
# name,server,version,luaversion,maintainers
-
plugin = LuaPlugin(**row)
-
luaPackages.append(plugin)
-
return luaPackages
-
-
def update(self, args):
-
update_plugins(self, args)
-
-
def generate_nix(self, results: List[Tuple[LuaPlugin, str]], outfilename: str):
-
with tempfile.NamedTemporaryFile("w+") as f:
-
f.write(HEADER)
-
header2 = textwrap.dedent(
-
# header2 = inspect.cleandoc(
-
"""
-
{ stdenv, lib, fetchurl, fetchgit, callPackage, ... }:
-
final: prev:
-
{
-
"""
-
)
-
f.write(header2)
-
for plugin, nix_expr in results:
-
f.write(f"{plugin.normalized_name} = {nix_expr}")
-
f.write(FOOTER)
-
f.flush()
-
-
# if everything went fine, move the generated file to its destination
-
# using copy since move doesn't work across disks
-
shutil.copy(f.name, outfilename)
-
-
print(f"updated {outfilename}")
-
-
@property
-
def attr_path(self):
-
return "luaPackages"
-
-
def get_update(self, input_file: str, outfile: str, config: FetchConfig):
-
_prefetch = generate_pkg_nix
-
-
def update() -> dict:
-
plugin_specs = self.load_plugin_spec(input_file)
-
sorted_plugin_specs = sorted(plugin_specs, key=lambda v: v.name.lower())
-
-
try:
-
pool = Pool(processes=config.proc)
-
results = pool.map(_prefetch, sorted_plugin_specs)
-
finally:
-
pass
-
-
self.generate_nix(results, outfile)
-
-
redirects = {}
-
return redirects
-
-
return update
-
-
def rewrite_input(self, input_file: str, *args, **kwargs):
-
# vim plugin reads the file before update but that shouldn't be our case
-
# not implemented yet
-
# fieldnames = ['name', 'server', 'version', 'luaversion', 'maintainers']
-
# input_file = "toto.csv"
-
# with open(input_file, newline='') as csvfile:
-
# writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
-
# writer.writeheader()
-
# for row in reader:
-
# # name,server,version,luaversion,maintainers
-
# plugin = LuaPlugin(**row)
-
# luaPackages.append(plugin)
-
pass
-
-
-
def generate_pkg_nix(plug: LuaPlugin):
-
"""
-
Generate nix expression for a luarocks package
-
Our cache key associates "p.name-p.version" to its rockspec
-
"""
-
log.debug("Generating nix expression for %s", plug.name)
-
custom_env = os.environ.copy()
-
custom_env["LUAROCKS_CONFIG"] = LUAROCKS_CONFIG
-
-
# we add --dev else luarocks wont find all the "scm" (=dev) versions of the
-
# packages
-
# , "--dev"
-
cmd = ["luarocks", "nix"]
-
-
if plug.maintainers:
-
cmd.append(f"--maintainers={plug.maintainers}")
-
-
# if plug.server == "src":
-
if plug.src != "":
-
if plug.src is None:
-
msg = (
-
"src must be set when 'version' is set to \"src\" for package %s"
-
% plug.name
-
)
-
log.error(msg)
-
raise RuntimeError(msg)
-
log.debug("Updating from source %s", plug.src)
-
cmd.append(plug.src)
-
# update the plugin from luarocks
-
else:
-
cmd.append(plug.name)
-
if plug.version and plug.version != "src":
-
cmd.append(plug.version)
-
-
if plug.server != "src" and plug.server:
-
cmd.append(f"--only-server={plug.server}")
-
-
if plug.luaversion:
-
cmd.append(f"--lua-version={plug.luaversion}")
-
-
log.debug("running %s", " ".join(cmd))
-
-
output = subprocess.check_output(cmd, env=custom_env, text=True)
-
output = "callPackage(" + output.strip() + ") {};\n\n"
-
return (plug, output)
-
-
-
def main():
-
editor = LuaEditor(
-
"lua",
-
ROOT,
-
"",
-
default_in=ROOT.joinpath(PKG_LIST),
-
default_out=ROOT.joinpath(GENERATED_NIXFILE),
-
)
-
-
editor.run()
-
-
-
if __name__ == "__main__":
-
main()
-
-
# vim: set ft=python noet fdm=manual fenc=utf-8 ff=unix sts=0 sw=4 ts=4 :
-13
maintainers/scripts/update-luarocks-shell.nix
···
-
{ nixpkgs ? import ../.. { }
-
}:
-
with nixpkgs;
-
let
-
pyEnv = python3.withPackages(ps: [ ps.gitpython ]);
-
in
-
mkShell {
-
packages = [
-
pyEnv
-
luarocks-nix
-
nix-prefetch-scripts
-
];
-
}
+11
nixos/doc/manual/release-notes/rl-2311.section.md
···
- `getent` has been moved from `glibc`'s `bin` output to its own dedicated output, reducing closure size for many dependents. Dependents using the `getent` alias should not be affected; others should move from using `glibc.bin` or `getBin glibc` to `getent` (which also improves compatibility with non-glibc platforms).
+
- `maintainers/scripts/update-luarocks-packages` is now a proper package
+
`luarocks-packages-updater` that can be run to maintain out-of-tree luarocks
+
packages
+
- The `users.users.<name>.passwordFile` has been renamed to `users.users.<name>.hashedPasswordFile` to avoid possible confusions. The option is in fact the file-based version of `hashedPassword`, not `password`, and expects a file containing the {manpage}`crypt(3)` hash of the user password.
+
+
- `chromiumBeta` and `chromiumDev` have been removed due to the lack of maintenance in nixpkgs. Consider using `chromium` instead.
+
+
- `google-chrome-beta` and `google-chrome-dev` have been removed due to the lack of maintenance in nixpkgs. Consider using `google-chrome` instead.
- The `services.ananicy.extraRules` option now has the type of `listOf attrs` instead of `string`.
···
- `buildGoModule` `go-modules` attrs have been renamed to `goModules`.
- The `fonts.fonts` and `fonts.enableDefaultFonts` options have been renamed to `fonts.packages` and `fonts.enableDefaultPackages` respectively.
+
+
- The `services.sslh` module has been updated to follow [RFC 0042](https://github.com/NixOS/rfcs/blob/master/rfcs/0042-config-option.md). As such, several options have been moved to the freeform attribute set [services.sslh.settings](#opt-services.sslh.settings), which allows to change any of the settings in {manpage}`sslh(8)`.
+
In addition, the newly added option [services.sslh.method](#opt-services.sslh.method) allows to switch between the {manpage}`fork(2)`, {manpage}`select(2)` and `libev`-based connection handling method; see the [sslh docs](https://github.com/yrutschle/sslh/blob/master/doc/INSTALL.md#binaries) for a comparison.
- `pkgs.openvpn3` now optionally supports systemd-resolved. `programs.openvpn3` will automatically enable systemd-resolved support if `config.services.resolved.enable` is enabled.
+3 -1
nixos/modules/services/blockchain/ethereum/erigon.nix
···
services.erigon = {
enable = mkEnableOption (lib.mdDoc "Ethereum implementation on the efficiency frontier");
+
package = mkPackageOptionMD pkgs "erigon" { };
+
extraArgs = mkOption {
type = types.listOf types.str;
description = lib.mdDoc "Additional arguments passed to Erigon";
···
serviceConfig = {
LoadCredential = "ERIGON_JWT:${cfg.secretJwtPath}";
-
ExecStart = "${pkgs.erigon}/bin/erigon --config ${configFile} --authrpc.jwtsecret=%d/ERIGON_JWT ${lib.escapeShellArgs cfg.extraArgs}";
+
ExecStart = "${cfg.package}/bin/erigon --config ${configFile} --authrpc.jwtsecret=%d/ERIGON_JWT ${lib.escapeShellArgs cfg.extraArgs}";
DynamicUser = true;
Restart = "on-failure";
StateDirectory = "erigon";
+123 -64
nixos/modules/services/networking/sslh.nix
···
let
cfg = config.services.sslh;
user = "sslh";
-
configFile = pkgs.writeText "sslh.conf" ''
-
verbose: ${boolToString cfg.verbose};
-
foreground: true;
-
inetd: false;
-
numeric: false;
-
transparent: ${boolToString cfg.transparent};
-
timeout: "${toString cfg.timeout}";
-
listen:
-
(
-
${
-
concatMapStringsSep ",\n"
-
(addr: ''{ host: "${addr}"; port: "${toString cfg.port}"; }'')
-
cfg.listenAddresses
-
}
-
);
+
configFormat = pkgs.formats.libconfig {};
+
configFile = configFormat.generate "sslh.conf" cfg.settings;
+
in
-
${cfg.appendConfig}
-
'';
-
defaultAppendConfig = ''
-
protocols:
-
(
-
{ name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; probe: "builtin"; },
-
{ name: "openvpn"; host: "localhost"; port: "1194"; probe: "builtin"; },
-
{ name: "xmpp"; host: "localhost"; port: "5222"; probe: "builtin"; },
-
{ name: "http"; host: "localhost"; port: "80"; probe: "builtin"; },
-
{ name: "tls"; host: "localhost"; port: "443"; probe: "builtin"; },
-
{ name: "anyprot"; host: "localhost"; port: "443"; probe: "builtin"; }
-
);
-
'';
-
in
{
imports = [
(mkRenamedOptionModule [ "services" "sslh" "listenAddress" ] [ "services" "sslh" "listenAddresses" ])
+
(mkRenamedOptionModule [ "services" "sslh" "timeout" ] [ "services" "sslh" "settings" "timeout" ])
+
(mkRenamedOptionModule [ "services" "sslh" "transparent" ] [ "services" "sslh" "settings" "transparent" ])
+
(mkRemovedOptionModule [ "services" "sslh" "appendConfig" ] "Use services.sslh.settings instead")
+
(mkChangedOptionModule [ "services" "sslh" "verbose" ] [ "services" "sslh" "settings" "verbose-connections" ]
+
(config: if config.services.sslh.verbose then 1 else 0))
];
-
options = {
-
services.sslh = {
-
enable = mkEnableOption (lib.mdDoc "sslh");
+
meta.buildDocsInSandbox = false;
+
+
options.services.sslh = {
+
enable = mkEnableOption (lib.mdDoc "sslh, protocol demultiplexer");
+
+
method = mkOption {
+
type = types.enum [ "fork" "select" "ev" ];
+
default = "fork";
+
description = lib.mdDoc ''
+
The method to use for handling connections:
+
+
- `fork` forks a new process for each incoming connection. It is
+
well-tested and very reliable, but incurs the overhead of many
+
processes.
+
+
- `select` uses only one thread, which monitors all connections at once.
+
It has lower overhead per connection, but if it stops, you'll lose all
+
connections.
+
+
- `ev` is implemented using libev, it's similar to `select` but
+
scales better to a large number of connections.
+
'';
+
};
+
+
listenAddresses = mkOption {
+
type = with types; coercedTo str singleton (listOf str);
+
default = [ "0.0.0.0" "[::]" ];
+
description = lib.mdDoc "Listening addresses or hostnames.";
+
};
+
+
port = mkOption {
+
type = types.port;
+
default = 443;
+
description = lib.mdDoc "Listening port.";
+
};
+
+
settings = mkOption {
+
type = types.submodule {
+
freeformType = configFormat.type;
+
+
options.timeout = mkOption {
+
type = types.ints.unsigned;
+
default = 2;
+
description = lib.mdDoc "Timeout in seconds.";
+
};
+
+
options.transparent = mkOption {
+
type = types.bool;
+
default = false;
+
description = lib.mdDoc ''
+
Whether the services behind sslh (Apache, sshd and so on) will see the
+
external IP and ports as if the external world connected directly to
+
them.
+
'';
+
};
+
+
options.verbose-connections = mkOption {
+
type = types.ints.between 0 4;
+
default = 0;
+
description = lib.mdDoc ''
+
Where to log connections information. Possible values are:
+
+
0. don't log anything
+
1. write log to stdout
+
2. write log to syslog
+
3. write log to both stdout and syslog
+
4. write to a log file ({option}`sslh.settings.logfile`)
+
'';
+
};
+
+
options.numeric = mkOption {
+
type = types.bool;
+
default = true;
+
description = lib.mdDoc ''
+
Whether to disable reverse DNS lookups, thus keeping IP
+
address literals in the log.
+
'';
+
};
+
+
options.protocols = mkOption {
+
type = types.listOf configFormat.type;
+
default = [
+
{ name = "ssh"; host = "localhost"; port = "22"; service= "ssh"; }
+
{ name = "openvpn"; host = "localhost"; port = "1194"; }
+
{ name = "xmpp"; host = "localhost"; port = "5222"; }
+
{ name = "http"; host = "localhost"; port = "80"; }
+
{ name = "tls"; host = "localhost"; port = "443"; }
+
{ name = "anyprot"; host = "localhost"; port = "443"; }
+
];
+
description = lib.mdDoc ''
+
List of protocols sslh will probe for and redirect.
+
Each protocol entry consists of:
+
+
- `name`: name of the probe.
-
verbose = mkOption {
-
type = types.bool;
-
default = false;
-
description = lib.mdDoc "Verbose logs.";
-
};
+
- `service`: libwrap service name (see {manpage}`hosts_access(5)`),
-
timeout = mkOption {
-
type = types.int;
-
default = 2;
-
description = lib.mdDoc "Timeout in seconds.";
-
};
+
- `host`, `port`: where to connect when this probe succeeds,
-
transparent = mkOption {
-
type = types.bool;
-
default = false;
-
description = lib.mdDoc "Will the services behind sslh (Apache, sshd and so on) see the external IP and ports as if the external world connected directly to them";
-
};
+
- `log_level`: to log incoming connections,
-
listenAddresses = mkOption {
-
type = types.coercedTo types.str singleton (types.listOf types.str);
-
default = [ "0.0.0.0" "[::]" ];
-
description = lib.mdDoc "Listening addresses or hostnames.";
-
};
+
- `transparent`: proxy this protocol transparently,
-
port = mkOption {
-
type = types.port;
-
default = 443;
-
description = lib.mdDoc "Listening port.";
-
};
+
- etc.
-
appendConfig = mkOption {
-
type = types.str;
-
default = defaultAppendConfig;
-
description = lib.mdDoc "Verbatim configuration file.";
+
See the documentation for all options, including probe-specific ones.
+
'';
+
};
};
+
description = lib.mdDoc "sslh configuration. See {manpage}`sslh(8)` for available settings.";
};
};
···
PermissionsStartOnly = true;
Restart = "always";
RestartSec = "1s";
-
ExecStart = "${pkgs.sslh}/bin/sslh -F${configFile}";
+
ExecStart = "${pkgs.sslh}/bin/sslh-${cfg.method} -F${configFile}";
KillMode = "process";
-
AmbientCapabilities = "CAP_NET_BIND_SERVICE CAP_NET_ADMIN CAP_SETGID CAP_SETUID";
+
AmbientCapabilities = ["CAP_NET_BIND_SERVICE" "CAP_NET_ADMIN" "CAP_SETGID" "CAP_SETUID"];
PrivateTmp = true;
PrivateDevices = true;
ProtectSystem = "full";
ProtectHome = true;
};
};
+
+
services.sslh.settings = {
+
# Settings defined here are not supposed to be changed: doing so will
+
# break the module, as such you need `lib.mkForce` to override them.
+
foreground = true;
+
inetd = false;
+
listen = map (addr: { host = addr; port = toString cfg.port; }) cfg.listenAddresses;
+
};
+
})
# code from https://github.com/yrutschle/sslh#transparent-proxy-support
# the only difference is using iptables mark 0x2 instead of 0x1 to avoid conflicts with nixos/nat module
-
(mkIf (cfg.enable && cfg.transparent) {
+
(mkIf (cfg.enable && cfg.settings.transparent) {
# Set route_localnet = 1 on all interfaces so that ssl can use "localhost" as destination
boot.kernel.sysctl."net.ipv4.conf.default.route_localnet" = 1;
boot.kernel.sysctl."net.ipv4.conf.all.route_localnet" = 1;
+40 -10
nixos/modules/tasks/filesystems/bcachefs.nix
···
}
'';
-
openCommand = name: fs:
-
let
-
# we need only unlock one device manually, and cannot pass multiple at once
-
# remove this adaptation when bcachefs implements mounting by filesystem uuid
-
# also, implement automatic waiting for the constituent devices when that happens
-
# bcachefs does not support mounting devices with colons in the path, ergo we don't (see #49671)
-
firstDevice = head (splitString ":" fs.device);
-
in
-
''
-
tryUnlock ${name} ${firstDevice}
+
# we need only unlock one device manually, and cannot pass multiple at once
+
# remove this adaptation when bcachefs implements mounting by filesystem uuid
+
# also, implement automatic waiting for the constituent devices when that happens
+
# bcachefs does not support mounting devices with colons in the path, ergo we don't (see #49671)
+
firstDevice = fs: head (splitString ":" fs.device);
+
+
openCommand = name: fs: ''
+
tryUnlock ${name} ${firstDevice fs}
+
'';
+
+
mkUnits = prefix: name: fs: let
+
mountUnit = "${utils.escapeSystemdPath (prefix + (lib.removeSuffix "/" fs.mountPoint))}.mount";
+
device = firstDevice fs;
+
deviceUnit = "${utils.escapeSystemdPath device}.device";
+
in {
+
name = "unlock-bcachefs-${utils.escapeSystemdPath fs.mountPoint}";
+
value = {
+
description = "Unlock bcachefs for ${fs.mountPoint}";
+
requiredBy = [ mountUnit ];
+
before = [ mountUnit ];
+
bindsTo = [ deviceUnit ];
+
after = [ deviceUnit ];
+
unitConfig.DefaultDependencies = false;
+
serviceConfig = {
+
Type = "oneshot";
+
ExecCondition = "${pkgs.bcachefs-tools}/bin/bcachefs unlock -c \"${device}\"";
+
Restart = "on-failure";
+
RestartMode = "direct";
+
# Ideally, this service would lock the key on stop.
+
# As is, RemainAfterExit doesn't accomplish anything.
+
RemainAfterExit = true;
+
};
+
script = ''
+
${config.boot.initrd.systemd.package}/bin/systemd-ask-password --timeout=0 "enter passphrase for ${name}" | exec ${pkgs.bcachefs-tools}/bin/bcachefs unlock "${device}"
'';
+
};
+
};
in
···
# use kernel package with bcachefs support until it's in mainline
# TODO replace with requireKernelConfig
boot.kernelPackages = pkgs.linuxPackages_testing_bcachefs;
+
+
systemd.services = lib.mapAttrs' (mkUnits "") (lib.filterAttrs (n: fs: (fs.fsType == "bcachefs") && (!utils.fsNeededForBoot fs)) config.fileSystems);
}
(mkIf ((elem "bcachefs" config.boot.initrd.supportedFilesystems) || (bootFs != {})) {
···
'';
boot.initrd.postDeviceCommands = commonFunctions + concatStrings (mapAttrsToList openCommand bootFs);
+
+
boot.initrd.systemd.services = lib.mapAttrs' (mkUnits "/sysroot") bootFs;
})
]);
}
+2
nixos/tests/installer-systemd-stage-1.nix
···
# them when fixed.
inherit (import ./installer.nix { inherit system config pkgs; systemdStage1 = true; })
# bcache
+
bcachefsSimple
+
bcachefsEncrypted
btrfsSimple
btrfsSubvolDefault
btrfsSubvolEscape
+4
nixos/tests/installer.nix
···
enableOCR = true;
preBootCommands = ''
machine.start()
+
# Enter it wrong once
+
machine.wait_for_text("enter passphrase for ")
+
machine.send_chars("wrong\n")
+
# Then enter it right.
machine.wait_for_text("enter passphrase for ")
machine.send_chars("password\n")
'';
+5 -13
nixos/tests/sslh.nix
···
prefixLength = 64;
}
];
-
# sslh is really slow when reverse dns does not work
-
networking.hosts = {
-
"fe00:aa:bb:cc::2" = [ "server" ];
-
"fe00:aa:bb:cc::1" = [ "client" ];
-
};
services.sslh = {
enable = true;
-
transparent = true;
-
appendConfig = ''
-
protocols:
-
(
-
{ name: "ssh"; service: "ssh"; host: "localhost"; port: "22"; probe: "builtin"; },
-
{ name: "http"; host: "localhost"; port: "80"; probe: "builtin"; },
-
);
-
'';
+
settings.transparent = true;
+
settings.protocols = [
+
{ name = "ssh"; service = "ssh"; host = "localhost"; port = "22"; probe = "builtin"; }
+
{ name = "http"; host = "localhost"; port = "80"; probe = "builtin"; }
+
];
};
services.openssh.enable = true;
users.users.root.openssh.authorizedKeys.keyFiles = [ ./initrd-network-ssh/id_ed25519.pub ];
+2 -2
pkgs/applications/audio/bitwig-studio/bitwig-studio5.nix
···
stdenv.mkDerivation rec {
pname = "bitwig-studio";
-
version = "5.0.9";
+
version = "5.0.11";
src = fetchurl {
url = "https://downloads.bitwig.com/stable/${version}/${pname}-${version}.deb";
-
sha256 = "sha256-B6s8FuNvJ3NdU7uZ+AsZkiFf9p6WcLzoZPsfzors1kk=";
+
sha256 = "sha256-c9bRWVWCC9hLxmko6EHgxgmghrxskJP4PQf3ld2BHoY=";
};
nativeBuildInputs = [ dpkg makeWrapper wrapGAppsHook ];
+6 -2
pkgs/applications/audio/cmus/default.nix
···
-
{ config, lib, stdenv, fetchFromGitHub, runCommand, ncurses, pkg-config
+
{ config, lib, stdenv, fetchFromGitHub, fetchpatch, ncurses, pkg-config
, libiconv, CoreAudio, AudioUnit, VideoToolbox
, alsaSupport ? stdenv.isLinux, alsa-lib ? null
···
sha256 = "sha256-Ha0bIh3SYMhA28YXQ//Loaz9J1lTJAzjTx8eK3AqUjM=";
};
-
patches = [ ./option-debugging.patch ];
+
patches = [
+
./option-debugging.patch
+
# ffmpeg 6 fix https://github.com/cmus/cmus/pull/1254/
+
(fetchpatch { url = "https://github.com/cmus/cmus/commit/07b368ff1500e1d2957cad61ced982fa10243fbc.patch"; hash = "sha256-5gsz3q8R9FPobHoLj8BQPsa9s4ULEA9w2VQR+gmpmgA="; })
+
];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses ]
+7 -2
pkgs/applications/editors/emacs/default.nix
···
let
gconf = pkgs.gnome2.GConf;
inherit (self) callPackage;
-
stdenv = if pkgs.stdenv.isDarwin then pkgs.darwin.apple_sdk_11_0.stdenv else pkgs.stdenv;
+
stdenv = if pkgs.stdenv.isDarwin
+
then pkgs.darwin.apple_sdk_11_0.stdenv
+
else pkgs.stdenv;
inheritedArgs = {
inherit gconf;
inherit stdenv;
···
Quartz QuartzCore UniformTypeIdentifiers WebKit;
gnutls =
if pkgs.stdenv.isDarwin
-
then pkgs.gnutls.override { inherit stdenv; inherit (pkgs.darwin.apple_sdk_11_0.frameworks) Security; }
+
then pkgs.gnutls.override {
+
inherit stdenv;
+
inherit (pkgs.darwin.apple_sdk_11_0.frameworks) Security;
+
}
else pkgs.gnutls;
};
in {
+142 -141
pkgs/applications/editors/emacs/elisp-packages/elpa-devel-generated.nix
···
elpaBuild {
pname = "ada-mode";
ename = "ada-mode";
-
version = "8.0.5.0.20230208.70712";
+
version = "8.1.0.0.20231018.91522";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/ada-mode-8.0.5.0.20230208.70712.tar";
-
sha256 = "1957w6fynk345iwhgc4iq7zlda3fi211r7vi5420g761568wp4ca";
+
url = "https://elpa.gnu.org/devel/ada-mode-8.1.0.0.20231018.91522.tar";
+
sha256 = "00ywqyvqvynrskyg0wh2acl6a68f0s2r83w3cmsgxd569phlsrqp";
};
packageRequires = [ emacs gnat-compiler uniquify-files wisi ];
meta = {
···
elpaBuild {
pname = "bbdb";
ename = "bbdb";
-
version = "3.2.2.2.0.20220705.233849";
+
version = "3.2.2.4.0.20231023.5901";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/bbdb-3.2.2.2.0.20220705.233849.tar";
-
sha256 = "1041nqxs8sp34zvpahn6x603hx8i2zc65jp6ygd611z7rb2mwd5x";
+
url = "https://elpa.gnu.org/devel/bbdb-3.2.2.4.0.20231023.5901.tar";
+
sha256 = "1hvhrbnnhc5hy4szkhsl5fvqlm13kzn5cx4l5sm5pr75xnmcvm08";
};
packageRequires = [ cl-lib emacs ];
meta = {
···
license = lib.licenses.free;
};
}) {};
-
beframe = callPackage ({ elpaBuild
-
, emacs
-
, fetchurl
-
, lib }:
+
beframe = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "beframe";
ename = "beframe";
-
version = "0.3.0.0.20231017.145435";
+
version = "0.3.0.0.20231027.55708";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/beframe-0.3.0.0.20231017.145435.tar";
-
sha256 = "1fnflpbnnjzfyccq6jcpwsq9byn7jda8mjhjynjk3l27jmzqd2g2";
+
url = "https://elpa.gnu.org/devel/beframe-0.3.0.0.20231027.55708.tar";
+
sha256 = "0hmls2l6wy14hv3sghdha7h9gmqrany77cfiam5j2hqjhy0g6vns";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "boxy";
ename = "boxy";
-
version = "1.1.3.0.20230408.95238";
+
version = "1.1.3.0.20231024.113314";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/boxy-1.1.3.0.20230408.95238.tar";
-
sha256 = "0hzfrbc20qn9ld51ivkvclphsvc2qqq4ir056d2d9bjxq56zndl6";
+
url = "https://elpa.gnu.org/devel/boxy-1.1.3.0.20231024.113314.tar";
+
sha256 = "1b5dkjic7spzbkj78m03z00gh8a9f8yv1kkyhnr4gks81jdr1gsn";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "boxy-headings";
ename = "boxy-headings";
-
version = "2.1.4.0.20221114.84552";
+
version = "2.1.4.0.20231024.114002";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/boxy-headings-2.1.4.0.20221114.84552.tar";
-
sha256 = "1ximn07ri3wga73alglzlfmqly52v2dbr3y1hp6syv5m3mxk248f";
+
url = "https://elpa.gnu.org/devel/boxy-headings-2.1.4.0.20231024.114002.tar";
+
sha256 = "1fan3pdslmwxkdc8lj7svcjllzjqhnhsma1yjpfhi99dv4b8fyns";
};
packageRequires = [ boxy emacs org ];
meta = {
···
elpaBuild {
pname = "cape";
ename = "cape";
-
version = "0.17.0.20230930.53703";
+
version = "0.17.0.20231022.115714";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/cape-0.17.0.20230930.53703.tar";
-
sha256 = "1jfba9fm075bj9si4mn5c63yzc15a6qm5c4swm6bvz1rlcmyq7cz";
+
url = "https://elpa.gnu.org/devel/cape-0.17.0.20231022.115714.tar";
+
sha256 = "0bvmrxjd054f14qap6w5052900k4pn33vb7cbc87rvrgdyhh5ixa";
};
packageRequires = [ compat emacs ];
meta = {
···
elpaBuild {
pname = "company";
ename = "company";
-
version = "0.10.2.0.20231016.232437";
+
version = "0.10.2.0.20231023.103313";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/company-0.10.2.0.20231016.232437.tar";
-
sha256 = "16q3wlc1df8rlg67yihn33sshhg0c7lyvsajawf9xq92wqf2f5ik";
+
url = "https://elpa.gnu.org/devel/company-0.10.2.0.20231023.103313.tar";
+
sha256 = "1zcap5mv6cn9a2j8axg4yw4iprxkwwyjmw7qahijlk02ycwmwwfn";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "consult";
ename = "consult";
-
version = "0.35.0.20231020.193229";
+
version = "0.35.0.20231023.154305";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/consult-0.35.0.20231020.193229.tar";
-
sha256 = "1k96wpiyyylcmyd7hyi8yv0s5qrzipnkz9jpdwh0j53vy6yd7a7i";
+
url = "https://elpa.gnu.org/devel/consult-0.35.0.20231023.154305.tar";
+
sha256 = "1cx8m0llk76z1kawkqg9dq7aws2i2bsgnhr3xvw7chdwvjywghs6";
};
packageRequires = [ compat emacs ];
meta = {
···
elpaBuild {
pname = "counsel";
ename = "counsel";
-
version = "0.14.0.0.20230619.162538";
+
version = "0.14.2.0.20231025.232958";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/counsel-0.14.0.0.20230619.162538.tar";
-
sha256 = "0lirnz10p9zyvdhwwqgvc7wasm31syifb2khxdwi4bqqgrmpqvix";
+
url = "https://elpa.gnu.org/devel/counsel-0.14.2.0.20231025.232958.tar";
+
sha256 = "0y1lxhsmjazml41sg0if7y9jv1i90ad13grafil6pb4mg4m15v70";
};
packageRequires = [ emacs ivy swiper ];
meta = {
···
elpaBuild {
pname = "denote";
ename = "denote";
-
version = "2.0.0.0.20231020.121249";
+
version = "2.0.0.0.20231027.53913";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/denote-2.0.0.0.20231020.121249.tar";
-
sha256 = "130k9ixw0n20zvhyj1b0k1363p8wa7q2klw9g8m9p4b6sslh7w5f";
+
url = "https://elpa.gnu.org/devel/denote-2.0.0.0.20231027.53913.tar";
+
sha256 = "044r77y0b7b3svwjin926xkp8xcwkxjpixi0x8nrfzh2krzkkakx";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "do-at-point";
ename = "do-at-point";
-
version = "0.1.1.0.20231002.131946";
+
version = "0.1.1.0.20231027.63811";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/do-at-point-0.1.1.0.20231002.131946.tar";
-
sha256 = "1bqbfb2cj4qb46lximqz3nymdyq6lc5df74cvwksng09226nk9nj";
+
url = "https://elpa.gnu.org/devel/do-at-point-0.1.1.0.20231027.63811.tar";
+
sha256 = "0k490g70lv89l87bn79m4bphnkv6vk578qgv1vk64z403wdgvxbv";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "ebdb";
ename = "ebdb";
-
version = "0.8.18.0.20231021.161113";
+
version = "0.8.18.0.20231023.175242";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/ebdb-0.8.18.0.20231021.161113.tar";
-
sha256 = "0p6n69qzl3cpnhpyvfzn0pqmh0wjw2mrd4q4dnj4w4p9103g1z62";
+
url = "https://elpa.gnu.org/devel/ebdb-0.8.18.0.20231023.175242.tar";
+
sha256 = "0lxb9isbg6whwcfi8gjmggi4aa4ri6b4mx4xiljzwkmrcv3y5q76";
};
packageRequires = [ emacs seq ];
meta = {
···
elpaBuild {
pname = "ef-themes";
ename = "ef-themes";
-
version = "1.3.0.0.20231014.41130";
+
version = "1.4.0.0.20231026.80318";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/ef-themes-1.3.0.0.20231014.41130.tar";
-
sha256 = "0sgyjwwna91mfj1knirx34hc27101lhpsnfw9ncb63790yw4sidd";
+
url = "https://elpa.gnu.org/devel/ef-themes-1.4.0.0.20231026.80318.tar";
+
sha256 = "02nx6p5m54gyyw2rjb0msvh3cijnqpm0p5i9l71gykg54rbabwnr";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "embark";
ename = "embark";
-
version = "0.23.0.20231007.130222";
+
version = "0.23.0.20231026.124244";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/embark-0.23.0.20231007.130222.tar";
-
sha256 = "0q15m0zccz3h9w88y3pbdy7g09yn317pyhf880gqpiwpbprd831b";
+
url = "https://elpa.gnu.org/devel/embark-0.23.0.20231026.124244.tar";
+
sha256 = "0d73fpxqv243pbj36299nfb4j6w2aqabpn4l3z1gvcpx2x2abbrd";
};
packageRequires = [ compat emacs ];
meta = {
···
elpaBuild {
pname = "embark-consult";
ename = "embark-consult";
-
version = "0.8.0.20231007.130222";
+
version = "0.8.0.20231026.124244";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/embark-consult-0.8.0.20231007.130222.tar";
-
sha256 = "11c5r7j7hi5f91pn4dcx8z3i7p3lhrhqpj8jd6g36mwn3scb9m1b";
+
url = "https://elpa.gnu.org/devel/embark-consult-0.8.0.20231026.124244.tar";
+
sha256 = "0wd3pdkh0y5x2bd8q6q7bc543s5ks7d8zlxrflk5ywlqaz8xi9g4";
};
packageRequires = [ consult emacs embark ];
meta = {
···
elpaBuild {
pname = "erc";
ename = "erc";
-
version = "5.6snapshot0.20231020.152406";
+
version = "5.6snapshot0.20231027.130929";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/erc-5.6snapshot0.20231020.152406.tar";
-
sha256 = "18h6jkp051mmixrnfgqnkh0c21qfnpaxzhjnsxxaknp3v17rvm5d";
+
url = "https://elpa.gnu.org/devel/erc-5.6snapshot0.20231027.130929.tar";
+
sha256 = "1v1r86cpl4jnnds9ljwr71g3xc96b2gvjbcpcvkhjfbf8g58ky40";
};
packageRequires = [ compat emacs ];
meta = {
···
license = lib.licenses.free;
};
}) {};
-
flymake = callPackage ({ eldoc, elpaBuild, emacs, fetchurl, lib, project }:
+
flymake = callPackage ({ eldoc
+
, elpaBuild
+
, emacs
+
, fetchurl
+
, lib
+
, project }:
elpaBuild {
pname = "flymake";
ename = "flymake";
-
version = "1.3.6.0.20230924.80727";
+
version = "1.3.7.0.20231026.132104";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/flymake-1.3.6.0.20230924.80727.tar";
-
sha256 = "0ldy6idm6kvrpx3d08wgalrv17s5vpwxqh339mq8ijv9qz7i39w4";
+
url = "https://elpa.gnu.org/devel/flymake-1.3.7.0.20231026.132104.tar";
+
sha256 = "0xk42bz63156vnkwxk743ln1w0zjs7yjayy9l2a97mynnzwa0knh";
};
packageRequires = [ eldoc emacs project ];
meta = {
···
elpaBuild {
pname = "fontaine";
ename = "fontaine";
-
version = "1.0.0.0.20230929.155942";
+
version = "1.0.0.0.20231026.83630";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/fontaine-1.0.0.0.20230929.155942.tar";
-
sha256 = "1xznn6w38p6riccwbnlqnqysaapssz18kwx0f9j4h07aam8d7kkg";
+
url = "https://elpa.gnu.org/devel/fontaine-1.0.0.0.20231026.83630.tar";
+
sha256 = "0y02wj5m1xj7ja57rj42jhdjvzy7rsdk3vkdmaay7y4bh4dd7vnl";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "gnat-compiler";
ename = "gnat-compiler";
-
version = "1.0.2.0.20230124.51334";
+
version = "1.0.3.0.20230915.165808";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/gnat-compiler-1.0.2.0.20230124.51334.tar";
-
sha256 = "0kqzqw2dbsmcmrqkb5rsjmkpznfj1licnbfjbp1ifs0kaf2cigqy";
+
url = "https://elpa.gnu.org/devel/gnat-compiler-1.0.3.0.20230915.165808.tar";
+
sha256 = "1za3ihjbramms85r35kz1d3gyyr3kyimd5m7xsmqnrpj3wsrjika";
};
packageRequires = [ emacs wisi ];
meta = {
···
elpaBuild {
pname = "gpr-mode";
ename = "gpr-mode";
-
version = "1.0.3.0.20230119.135149";
+
version = "1.0.4.0.20231015.114428";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/gpr-mode-1.0.3.0.20230119.135149.tar";
-
sha256 = "1qd4wdmjlhj325q5qjhdx2l4z1bqpv4giwvsgd29s9k3sh7n8m2h";
+
url = "https://elpa.gnu.org/devel/gpr-mode-1.0.4.0.20231015.114428.tar";
+
sha256 = "1y3571ymlrgiq5jxbwlyw43pmfxgq776pajb9hlvyz9l3w195c8g";
};
packageRequires = [ emacs gnat-compiler wisi ];
meta = {
···
elpaBuild {
pname = "gpr-query";
ename = "gpr-query";
-
version = "1.0.3.0.20230128.112055";
+
version = "1.0.4.0.20231018.92052";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/gpr-query-1.0.3.0.20230128.112055.tar";
-
sha256 = "0fnq3zdzlcfc54m5ix01ix78drfmzvfiicjp9cvsw78s0sd05p9x";
+
url = "https://elpa.gnu.org/devel/gpr-query-1.0.4.0.20231018.92052.tar";
+
sha256 = "1pk14d88vy0ylgcdymp9pclygpn06n25yhy0hsjs0lrd8zr56a49";
};
packageRequires = [ emacs gnat-compiler wisi ];
meta = {
···
license = lib.licenses.free;
};
}) {};
-
greader = callPackage ({ elpaBuild
-
, emacs
-
, fetchurl
-
, lib }:
+
greader = callPackage ({ elpaBuild, emacs, fetchurl, lib }:
elpaBuild {
pname = "greader";
ename = "greader";
-
version = "0.5.0.0.20230927.204955";
+
version = "0.5.0.0.20231026.5322";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/greader-0.5.0.0.20230927.204955.tar";
-
sha256 = "02kq8r2grdg8y2bjcw01d5wm5mkv4wir4yggs41cmgcwnk3gm1d1";
+
url = "https://elpa.gnu.org/devel/greader-0.5.0.0.20231026.5322.tar";
+
sha256 = "0m4d1cr637jsy75ax6y2aqhzjwax7qkidm25k4qiqa69lzbkckid";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "hyperbole";
ename = "hyperbole";
-
version = "8.0.1pre0.20231009.215811";
+
version = "8.0.1pre0.20231022.151646";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/hyperbole-8.0.1pre0.20231009.215811.tar";
-
sha256 = "0dhrjdk3llxv5s5xfd849vqwr6f1fk411klgjn44szkgi9anbqdv";
+
url = "https://elpa.gnu.org/devel/hyperbole-8.0.1pre0.20231022.151646.tar";
+
sha256 = "1kr6ayfnq9ah8n8b6k4lxh5napghb90y5sz0g3fs5qjbszcbvxc9";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "ivy";
ename = "ivy";
-
version = "0.14.0.0.20230714.75746";
+
version = "0.14.2.0.20231025.231958";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/ivy-0.14.0.0.20230714.75746.tar";
-
sha256 = "166nysfapnz1b15dmag9hlfx26j0k882k5wmx7fpbm4mdj20y6q0";
+
url = "https://elpa.gnu.org/devel/ivy-0.14.2.0.20231025.231958.tar";
+
sha256 = "0r6dyq350djn5vprk0cvj7vh3l0j2vadsxaiq35yv9gjqh20ca88";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "ivy-avy";
ename = "ivy-avy";
-
version = "0.14.0.0.20230410.182616";
+
version = "0.14.2.0.20231025.232243";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/ivy-avy-0.14.0.0.20230410.182616.tar";
-
sha256 = "1s749025jyd5qy5yhxnnd71bj1qcwa6ah0ddl2cs16h9mdbf87qy";
+
url = "https://elpa.gnu.org/devel/ivy-avy-0.14.2.0.20231025.232243.tar";
+
sha256 = "1y9v3iv7zj7zc526k336rjq04vlisx8giyax5h0as97r8zc4rpzc";
};
packageRequires = [ avy emacs ivy ];
meta = {
···
elpaBuild {
pname = "ivy-hydra";
ename = "ivy-hydra";
-
version = "0.14.0.0.20230410.182324";
+
version = "0.14.2.0.20231025.232457";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/ivy-hydra-0.14.0.0.20230410.182324.tar";
-
sha256 = "10sd554k3qb81am3jvg7l084i031c133a24cgh0g44vjj2s76nra";
+
url = "https://elpa.gnu.org/devel/ivy-hydra-0.14.2.0.20231025.232457.tar";
+
sha256 = "15az95s0bv0wc33kqh2h5n92hhn54mhy4lx9m2mm2x83jggdw4yy";
};
packageRequires = [ emacs hydra ivy ];
meta = {
···
elpaBuild {
pname = "jinx";
ename = "jinx";
-
version = "0.9.0.20231019.170830";
+
version = "0.9.0.20231026.154650";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/jinx-0.9.0.20231019.170830.tar";
-
sha256 = "13wd7xaa3grslycvykx4yglh669fqrrfpqz6715zifkd3mnl0ik3";
+
url = "https://elpa.gnu.org/devel/jinx-0.9.0.20231026.154650.tar";
+
sha256 = "1fck948ay9n64mxqmx7j6fn6hzfn858l0s0gw544in2y617niyh6";
};
packageRequires = [ compat emacs ];
meta = {
···
elpaBuild {
pname = "llm";
ename = "llm";
-
version = "0.4.0.0.20231018.234129";
+
version = "0.5.0.0.20231026.5843";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/llm-0.4.0.0.20231018.234129.tar";
-
sha256 = "1zfqyqga38j319hy85pq7fqmma1x2p716z6zvydrnn0npnfnggry";
+
url = "https://elpa.gnu.org/devel/llm-0.5.0.0.20231026.5843.tar";
+
sha256 = "0ywmfbis4jrqjg2gc3khgwc9kdbhjh99syag2bk1vzjmwfd2cq89";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "marginalia";
ename = "marginalia";
-
version = "1.3.0.20230925.162757";
+
version = "1.3.0.20231026.181335";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/marginalia-1.3.0.20230925.162757.tar";
-
sha256 = "0g0ccxd2ks2av5lxbz5c3hi86jf10dizvm8ziday1v34lbp4f6hw";
+
url = "https://elpa.gnu.org/devel/marginalia-1.3.0.20231026.181335.tar";
+
sha256 = "1q7dbzrdzjwiyq09zbq8wbj673vaj5ss3xyrz3y226wb6jpmzr74";
};
packageRequires = [ compat emacs ];
meta = {
···
elpaBuild {
pname = "orderless";
ename = "orderless";
-
version = "1.0.0.20230919.235319";
+
version = "1.0.0.20231025.204425";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/orderless-1.0.0.20230919.235319.tar";
-
sha256 = "0j26253q0f6h016xpgxx6jy36mdi9sm5bvyki7i2374hmcp5lxd8";
+
url = "https://elpa.gnu.org/devel/orderless-1.0.0.20231025.204425.tar";
+
sha256 = "1lsfa62hpq6zmk49mnf1434lqv3p472la3aky003xplkvl0xbw7l";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "org";
ename = "org";
-
version = "9.7pre0.20231021.130825";
+
version = "9.7pre0.20231027.91944";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/org-9.7pre0.20231021.130825.tar";
-
sha256 = "1vfgzgd7zwcnv55n7v542zn90irwjwsgn7z8kmxqg5cpyw0r2x06";
+
url = "https://elpa.gnu.org/devel/org-9.7pre0.20231027.91944.tar";
+
sha256 = "0af65mm22bl6c38abqn39s5rz6i67pbcmhfq6n2hn0a8jgmmppwc";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "org-real";
ename = "org-real";
-
version = "1.0.6.0.20221114.84409";
+
version = "1.0.7.0.20231024.111108";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/org-real-1.0.6.0.20221114.84409.tar";
-
sha256 = "1xmix5ldxxkh249fgyqlp31yndl14gz3ylpcsh6l9hmwqagzg20x";
+
url = "https://elpa.gnu.org/devel/org-real-1.0.7.0.20231024.111108.tar";
+
sha256 = "199900lvg5jxfspp1papx0aj88vm6addlyv7zhp8bc2f5a9igg21";
};
packageRequires = [ boxy emacs org ];
meta = {
···
elpaBuild {
pname = "relint";
ename = "relint";
-
version = "1.24.0.20231005.122642";
+
version = "1.24.0.20231026.84057";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/relint-1.24.0.20231005.122642.tar";
-
sha256 = "0xlb4i0zj225q8l4a9riagc7qv795bigygmqrlm81ypxqvbm3r5n";
+
url = "https://elpa.gnu.org/devel/relint-1.24.0.20231026.84057.tar";
+
sha256 = "0s0gz6w6b04sif8yf83hb7y61jmjvksmslznmzlf8x3rq9p7kwyd";
};
packageRequires = [ emacs xr ];
meta = {
···
elpaBuild {
pname = "swiper";
ename = "swiper";
-
version = "0.14.0.0.20230410.182739";
+
version = "0.14.2.0.20231025.232825";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/swiper-0.14.0.0.20230410.182739.tar";
-
sha256 = "10vqxmqdzvr7rg6wg5whzl4w9y4j47m330fx7qgvzi5zw28b69f3";
+
url = "https://elpa.gnu.org/devel/swiper-0.14.2.0.20231025.232825.tar";
+
sha256 = "13jvr9xv1i44ky906m4awkakvhrmpxg7x5f9hzbwnfz52wcxx8ix";
};
packageRequires = [ emacs ivy ];
meta = {
···
, elpaBuild
, emacs
, fetchurl
-
, lib }:
+
, lib
+
, seq }:
elpaBuild {
pname = "transient";
ename = "transient";
-
version = "0.4.3.0.20230919.214625";
+
version = "0.4.3.0.20231024.181508";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/transient-0.4.3.0.20230919.214625.tar";
-
sha256 = "1b4dlgk6x22mpacd4wiinlh5sjgprhabha7wq7dfcsgv7mqhk5z2";
+
url = "https://elpa.gnu.org/devel/transient-0.4.3.0.20231024.181508.tar";
+
sha256 = "0b092m462gndqlyv8lvfikkdqmly2w5dkbbkn405rbmki2r4bggk";
};
-
packageRequires = [ compat emacs ];
+
packageRequires = [ compat emacs seq ];
meta = {
homepage = "https://elpa.gnu.org/packages/transient.html";
license = lib.licenses.free;
···
elpaBuild {
pname = "urgrep";
ename = "urgrep";
-
version = "0.3.0snapshot0.20230831.195518";
+
version = "0.3.0snapshot0.20231026.224925";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/urgrep-0.3.0snapshot0.20230831.195518.tar";
-
sha256 = "1qhvspbzbnl1jcqhixfbrqg9jxmc495gv95vhiadm3dpqhxfcn81";
+
url = "https://elpa.gnu.org/devel/urgrep-0.3.0snapshot0.20231026.224925.tar";
+
sha256 = "07akrg4z177xjway75bl7281ic78j8sl818jd52nmxhx4wxys9mv";
};
packageRequires = [ compat emacs project ];
meta = {
···
elpaBuild {
pname = "url-http-ntlm";
ename = "url-http-ntlm";
-
version = "2.0.4.0.20231015.130736";
+
version = "2.0.5.0.20231024.31412";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/url-http-ntlm-2.0.4.0.20231015.130736.tar";
-
sha256 = "0gpkr7m2kwnz7pmj6y4xn41175jy9vaxsj5f7glzd3w1xklr4hg0";
+
url = "https://elpa.gnu.org/devel/url-http-ntlm-2.0.5.0.20231024.31412.tar";
+
sha256 = "0vr04yr4ywxvh7c6s447bsa5v148ny3lvx54bpd60qf5cp92z1zw";
};
packageRequires = [ cl-lib nadvice ntlm ];
meta = {
···
elpaBuild {
pname = "use-package";
ename = "use-package";
-
version = "2.4.5.0.20231022.75512";
+
version = "2.4.5.0.20231026.114632";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/use-package-2.4.5.0.20231022.75512.tar";
-
sha256 = "0cvsqrbamg9nxcjxqiq6avjyk027dxxzskgnvv0drrlsgcvb3yai";
+
url = "https://elpa.gnu.org/devel/use-package-2.4.5.0.20231026.114632.tar";
+
sha256 = "0sfs6030s6zngxgsv9wj181brsk6f8avfvl53vr0yspry53z2vpz";
};
packageRequires = [ bind-key emacs ];
meta = {
···
elpaBuild {
pname = "wisi";
ename = "wisi";
-
version = "4.2.2.0.20230126.2042";
+
version = "4.3.2.0.20231026.105332";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/wisi-4.2.2.0.20230126.2042.tar";
-
sha256 = "0b70yipm6wmz5034f5l7f78c2bgscm2c8lph75jgd5x1qwzngw47";
+
url = "https://elpa.gnu.org/devel/wisi-4.3.2.0.20231026.105332.tar";
+
sha256 = "1jlqvimnjsdvaylfj2hq9k9bllvl74j1g4pd8w4kf3c30n7jyiql";
};
packageRequires = [ emacs seq ];
meta = {
···
elpaBuild {
pname = "wisitoken-grammar-mode";
ename = "wisitoken-grammar-mode";
-
version = "1.3.0.0.20230125.102656";
+
version = "1.3.0.0.20231023.83923";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/wisitoken-grammar-mode-1.3.0.0.20230125.102656.tar";
-
sha256 = "1h5pnghxg01f0hgxw7284b4rm5c43r48nbsxj19dcypxrzz3w1qw";
+
url = "https://elpa.gnu.org/devel/wisitoken-grammar-mode-1.3.0.0.20231023.83923.tar";
+
sha256 = "17kgrwm1jr1dxaprgay60jmgg5bfhmyrngzy0qfia6zs7w43bscx";
};
packageRequires = [ emacs mmm-mode wisi ];
meta = {
···
elpaBuild {
pname = "xr";
ename = "xr";
-
version = "1.25.0.20231005.122612";
+
version = "1.25.0.20231026.84432";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/xr-1.25.0.20231005.122612.tar";
-
sha256 = "0sj2cyxdfykk3gfw3v9d93mzssxiassj5vhzl76sm8dy59z93z4y";
+
url = "https://elpa.gnu.org/devel/xr-1.25.0.20231026.84432.tar";
+
sha256 = "0kvkz24z0cb32igj1hv09j0cg2xhwrkafi7zhfb85vwj4kgcd6pj";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "xref";
ename = "xref";
-
version = "1.6.3.0.20231009.180303";
+
version = "1.6.3.0.20231023.205120";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/xref-1.6.3.0.20231009.180303.tar";
-
sha256 = "146bvnaxzfqjbpib8cm7mlq4j2695wh9czwi9lfbx5k8npakjrih";
+
url = "https://elpa.gnu.org/devel/xref-1.6.3.0.20231023.205120.tar";
+
sha256 = "1qszzbnn3pdpy7q7i9ir04dnp15rgkm7xnl73pp3wpvbqjwwgmd3";
};
packageRequires = [ emacs ];
meta = {
···
}) {};
yasnippet = callPackage ({ cl-lib ? null
, elpaBuild
+
, emacs
, fetchurl
, lib }:
elpaBuild {
pname = "yasnippet";
ename = "yasnippet";
-
version = "0.14.0.0.20230912.111325";
+
version = "0.14.0.0.20230914.100037";
src = fetchurl {
-
url = "https://elpa.gnu.org/devel/yasnippet-0.14.0.0.20230912.111325.tar";
-
sha256 = "0k9h33dgxhg20cg2wwxmhxl5yzyh2g4kims15l0rgs2ag496qn5a";
+
url = "https://elpa.gnu.org/devel/yasnippet-0.14.0.0.20230914.100037.tar";
+
sha256 = "0kqv0scxkxxczxc1fxmpv0lgddp92j600s972xwb681a0vq2ssz6";
};
-
packageRequires = [ cl-lib ];
+
packageRequires = [ cl-lib emacs ];
meta = {
homepage = "https://elpa.gnu.org/packages/yasnippet.html";
license = lib.licenses.free;
+50 -49
pkgs/applications/editors/emacs/elisp-packages/elpa-generated.nix
···
elpaBuild {
pname = "ada-mode";
ename = "ada-mode";
-
version = "8.0.5";
+
version = "8.1.0";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/ada-mode-8.0.5.tar";
-
sha256 = "00baypl9bv2z42d6z2k531ai25yw2aj1dcv4pi1jhcp19c9kjg4l";
+
url = "https://elpa.gnu.org/packages/ada-mode-8.1.0.tar";
+
sha256 = "1nfqm173gbk6483xgdkmxp5nb8biihq1623058gbl0dfwn0p9njh";
};
packageRequires = [ emacs gnat-compiler uniquify-files wisi ];
meta = {
···
elpaBuild {
pname = "bbdb";
ename = "bbdb";
-
version = "3.2.2.2";
+
version = "3.2.2.4";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/bbdb-3.2.2.2.tar";
-
sha256 = "0bf20r5xhxln6z4qp8zrlln0303dkci2ydsr74pxcj08aqgk5xxf";
+
url = "https://elpa.gnu.org/packages/bbdb-3.2.2.4.tar";
+
sha256 = "13i8ggknc29sny16rq126q0ssz26m3fam0zpdhlsm05pa8dydd7p";
};
packageRequires = [ cl-lib emacs ];
meta = {
···
elpaBuild {
pname = "counsel";
ename = "counsel";
-
version = "0.14.0";
+
version = "0.14.2";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/counsel-0.14.0.tar";
-
sha256 = "03n1qk66dcbh9xlnlzpwkb441c2xdpfc7bzx4i2szw0xh4a6g5sj";
+
url = "https://elpa.gnu.org/packages/counsel-0.14.2.tar";
+
sha256 = "13119alyzr2xipk3jra3iawplqkqgvv0gdcm4yd527z592b0s7f0";
};
packageRequires = [ emacs ivy swiper ];
meta = {
···
elpaBuild {
pname = "ef-themes";
ename = "ef-themes";
-
version = "1.3.0";
+
version = "1.4.0";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/ef-themes-1.3.0.tar";
-
sha256 = "1cchc1cfp2y32d736r4523gjzvg4rd1nqddxsjsk5kialz06alms";
+
url = "https://elpa.gnu.org/packages/ef-themes-1.4.0.tar";
+
sha256 = "0pp72bi9s7vyxyyy7dc0vql4k6hqzd1gg3a2i4wi09awdak85gi6";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "flymake";
ename = "flymake";
-
version = "1.3.6";
+
version = "1.3.7";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/flymake-1.3.6.tar";
-
sha256 = "1ihv8gh77849rrdc6qpbpjdw7ikr4biaibw6aggv3hzjf508dzi8";
+
url = "https://elpa.gnu.org/packages/flymake-1.3.7.tar";
+
sha256 = "07n72y77q1vqvz1rv36jq1cxdp1brp572plvsi2g6mizif5y531z";
};
packageRequires = [ eldoc emacs project ];
meta = {
···
elpaBuild {
pname = "gnat-compiler";
ename = "gnat-compiler";
-
version = "1.0.2";
+
version = "1.0.3";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/gnat-compiler-1.0.2.tar";
-
sha256 = "1cwjv1ziw5hjnk493vwwg25bnvy98wcryy0c4gknl1xp5qr2qxdg";
+
url = "https://elpa.gnu.org/packages/gnat-compiler-1.0.3.tar";
+
sha256 = "1l5j3br5yrhp3ic0va666ar636hywfd8vssxma3gc858zb9qbzw2";
};
packageRequires = [ emacs wisi ];
meta = {
···
elpaBuild {
pname = "gpr-mode";
ename = "gpr-mode";
-
version = "1.0.3";
+
version = "1.0.4";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/gpr-mode-1.0.3.tar";
-
sha256 = "0m93szqyh9dd73z2pygvacg42n3siiy8pji3yzg1ynji859bc3b8";
+
url = "https://elpa.gnu.org/packages/gpr-mode-1.0.4.tar";
+
sha256 = "1c97m28i6lym07kb05jgssjxj6p9v3v56qrn48xwv55sriqrha4l";
};
packageRequires = [ emacs gnat-compiler wisi ];
meta = {
···
elpaBuild {
pname = "gpr-query";
ename = "gpr-query";
-
version = "1.0.3";
+
version = "1.0.4";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/gpr-query-1.0.3.tar";
-
sha256 = "13h8hl2g55mbaz95k9jfcvz718rv4vli9wccr3rr7cb7yfvn4c5j";
+
url = "https://elpa.gnu.org/packages/gpr-query-1.0.4.tar";
+
sha256 = "0a6wrkjqszqq4d0a1amrp7yx4w2hwjbyy7qxd40k9n1vdp7jbzri";
};
packageRequires = [ emacs gnat-compiler wisi ];
meta = {
···
elpaBuild {
pname = "ivy";
ename = "ivy";
-
version = "0.14.0";
+
version = "0.14.2";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/ivy-0.14.0.tar";
-
sha256 = "1fzl7xcmxjg005g4676ac3jcshgmcmdr81ywmxvjcs8wj71v56jv";
+
url = "https://elpa.gnu.org/packages/ivy-0.14.2.tar";
+
sha256 = "1zjksh0jvxyqhzgwmh9i26gaip6c04q400xckh730r2gjs287pjj";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "ivy-avy";
ename = "ivy-avy";
-
version = "0.14.0";
+
version = "0.14.2";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/ivy-avy-0.14.0.tar";
-
sha256 = "0gjpvjahhkxsakqrcni78v71fsrh3f0jrs55a4kqc5hv6qyn8hk9";
+
url = "https://elpa.gnu.org/packages/ivy-avy-0.14.2.tar";
+
sha256 = "0vdrfn2i078567lklhxfhzq2cjplfpawyq2rzpdpww0fzz6fi426";
};
packageRequires = [ avy emacs ivy ];
meta = {
···
elpaBuild {
pname = "ivy-hydra";
ename = "ivy-hydra";
-
version = "0.14.0";
+
version = "0.14.2";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/ivy-hydra-0.14.0.tar";
-
sha256 = "1gsjr2yny9qcj56cb4xy47la11z0lszq0f2qws0yzyh02ng30k1n";
+
url = "https://elpa.gnu.org/packages/ivy-hydra-0.14.2.tar";
+
sha256 = "10qav0rvgc5bnlazjiwnv9dlk6hivl4acif0zq2f0qqgld9nh528";
};
packageRequires = [ emacs hydra ivy ];
meta = {
···
elpaBuild {
pname = "llm";
ename = "llm";
-
version = "0.4.0";
+
version = "0.5.0";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/llm-0.4.0.tar";
-
sha256 = "0jq1q9gmm3nbdsycca2qkjpf04qpp9j615z6l41plmfv7bc0p0x6";
+
url = "https://elpa.gnu.org/packages/llm-0.5.0.tar";
+
sha256 = "07n32hfzyjzj7vjy5l7rxaldpa4hyjwharkizs2gzz66lg83wix8";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "org-real";
ename = "org-real";
-
version = "1.0.6";
+
version = "1.0.7";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/org-real-1.0.6.tar";
-
sha256 = "1qfzmmv3c1yc14v502x0438pxh2bcwli1r3xmcxibhb7h6p9mr3k";
+
url = "https://elpa.gnu.org/packages/org-real-1.0.7.tar";
+
sha256 = "16isfsaxmgxiqfqx4lcsqlxazxjgxakr0k9pgpam13bqqqkq3cmp";
};
packageRequires = [ boxy emacs org ];
meta = {
···
elpaBuild {
pname = "swiper";
ename = "swiper";
-
version = "0.14.0";
+
version = "0.14.2";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/swiper-0.14.0.tar";
-
sha256 = "1p2qil6gj4y8y3ydqs8pbxn8j16q9r42nnc2f61c30hws504pkms";
+
url = "https://elpa.gnu.org/packages/swiper-0.14.2.tar";
+
sha256 = "1x6jnc0nrk68kww12gq6w8nss6ny76xz0fgxf57550bbipx9pa8m";
};
packageRequires = [ emacs ivy ];
meta = {
···
, elpaBuild
, fetchurl
, lib
+
, nadvice
, ntlm ? null }:
elpaBuild {
pname = "url-http-ntlm";
ename = "url-http-ntlm";
-
version = "2.0.4";
+
version = "2.0.5";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/url-http-ntlm-2.0.4.el";
-
sha256 = "1cakq2ykraci7d1gl8rnpv4f2f5ffyaidhqb1282g7i72adwmb98";
+
url = "https://elpa.gnu.org/packages/url-http-ntlm-2.0.5.tar";
+
sha256 = "0bpjif0c4yzz75v59wsv7hilkpj2gv4kyc0rdk8h3d9hvmlq7791";
};
-
packageRequires = [ cl-lib ntlm ];
+
packageRequires = [ cl-lib nadvice ntlm ];
meta = {
homepage = "https://elpa.gnu.org/packages/url-http-ntlm.html";
license = lib.licenses.free;
···
elpaBuild {
pname = "wisi";
ename = "wisi";
-
version = "4.2.2";
+
version = "4.3.2";
src = fetchurl {
-
url = "https://elpa.gnu.org/packages/wisi-4.2.2.tar";
-
sha256 = "041np2xssm4iv75wmwds25fwx0p2y3j6ph0j0pxmgcj9p028mbka";
+
url = "https://elpa.gnu.org/packages/wisi-4.3.2.tar";
+
sha256 = "0y3wh0wvxqw7ig2bfrha4zs03993aqcpdp9pald20nady6sqri37";
};
packageRequires = [ emacs seq ];
meta = {
+12 -12
pkgs/applications/editors/emacs/elisp-packages/nongnu-generated.nix
···
elpaBuild {
pname = "cider";
ename = "cider";
-
version = "1.8.3";
+
version = "1.9.0";
src = fetchurl {
-
url = "https://elpa.nongnu.org/nongnu/cider-1.8.3.tar";
-
sha256 = "0c77rlpyda4x05fj3d10cpww0pkbsjcbrvwcwy4gh74c9m9xmq1d";
+
url = "https://elpa.nongnu.org/nongnu/cider-1.9.0.tar";
+
sha256 = "08vc1v4gzh1njvqhg10c07wq28r2s9qq3y7i4b5clrzgy9l872cw";
};
packageRequires = [
clojure-mode
···
elpaBuild {
pname = "sweeprolog";
ename = "sweeprolog";
-
version = "0.25.5";
+
version = "0.26.0";
src = fetchurl {
-
url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.25.5.tar";
-
sha256 = "1gxy68a26h65rzf8815iifcnr67rpw69ll14d4cbq9qsxvrmy50h";
+
url = "https://elpa.nongnu.org/nongnu/sweeprolog-0.26.0.tar";
+
sha256 = "0pgxz3ckw3qjzqyn6vr8k8y1gdiybsm47ik8j62ybsnqs7ivs208";
};
packageRequires = [ compat emacs ];
meta = {
···
elpaBuild {
pname = "web-mode";
ename = "web-mode";
-
version = "17.3.14";
+
version = "17.3.15";
src = fetchurl {
-
url = "https://elpa.nongnu.org/nongnu/web-mode-17.3.14.tar";
-
sha256 = "1a13lra62vqcxr31ivx1r68wj1d59hkbrfxxmy8f7afm1v4aqbz2";
+
url = "https://elpa.nongnu.org/nongnu/web-mode-17.3.15.tar";
+
sha256 = "028p034793pkkwgaqgc3zw23ji39ss5gma5g8fhml6v8pc4ri2w8";
};
packageRequires = [ emacs ];
meta = {
···
elpaBuild {
pname = "xah-fly-keys";
ename = "xah-fly-keys";
-
version = "24.13.20231009115302";
+
version = "24.13.20231025112537";
src = fetchurl {
-
url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-24.13.20231009115302.tar";
-
sha256 = "0k530ihjjwcvl24f815nk9jqfnbhzb95xlfm8721dlsbrsmsaiwc";
+
url = "https://elpa.nongnu.org/nongnu/xah-fly-keys-24.13.20231025112537.tar";
+
sha256 = "1h7z9g3307w0cg361md8mbhsia2534ncqihdfsasg5qhw9184sib";
};
packageRequires = [ emacs ];
meta = {
+713 -588
pkgs/applications/editors/emacs/elisp-packages/recipes-archive-melpa.json
···
"repo": "mohkale/all-the-icons-nerd-fonts",
"unstable": {
"version": [
-
20230904,
-
1718
+
20231022,
+
1956
],
"deps": [
"all-the-icons",
"nerd-icons"
],
-
"commit": "db513dafaa8b73b5abcf9737939863d0e5b2f03d",
-
"sha256": "0rrghm38brj209imi221lvclxf7fda7vzla0xmdipz2zbvcvcr66"
+
"commit": "9ac476b1a82199cfa770f214b6d53776cd276bd9",
+
"sha256": "0f76l7g1gwji3wy3gxir989b8p3lmfn9q5m5p76p0qfvi9c8gz62"
},
···
"repo": "elp-revive/auto-highlight-symbol",
"unstable": {
"version": [
-
20221231,
-
1631
+
20231027,
+
715
],
"deps": [
"ht"
],
-
"commit": "ece5e2c722efa5c9ea32a809b484afc222ebebe5",
-
"sha256": "13v21zmcvnrc5a7ig08xs6nf2irdkah3nwgfjk4933ym8rff4sy9"
+
"commit": "1c79083b9b6af70b0eba3d4c00cafafeb6154845",
+
"sha256": "1szb4namrl0415adji9042cxbh28kw8kxk756b3z45y18bscns14"
},
"stable": {
"version": [
···
"repo": "nverno/awk-ts-mode",
"unstable": {
"version": [
-
20231001,
-
2221
+
20231022,
+
1757
],
-
"commit": "d142f0ab61da89d3bf311194f69b655b0b7855a9",
-
"sha256": "0d6wwx47c1z7vs2ql1497041fawya1xpbgzys5n4j2vqhl07lali"
+
"commit": "a32d83a2c8714c5f2fdb8cc8cb6733a2eb1a4e87",
+
"sha256": "1k3nyp4h9iqz6cx90g469jf2j7kvr4q8mqn2i0han2a406izk9n5"
},
···
"url": "https://git.savannah.nongnu.org/git/bbdb.git",
"unstable": {
"version": [
-
20220706,
-
433
+
20231023,
+
544
],
"deps": [
"cl-lib"
],
-
"commit": "1b121e94871f5d931c75793257db732ba82fdddb",
-
"sha256": "1mak78xg46hz5l00xqy5g8d6mrfs5z36nb0arjmpam2gvi6mzcz2"
+
"commit": "14ed4d1048c41c813f601bbf0f4c8d0d5b9489d8",
+
"sha256": "00qjrzfn0lmj5dr54s6sm10kfjqs815ak2hhgi875rhv5p30smh7"
},
"stable": {
"version": [
···
"repo": "liuyinz/binky.el",
"unstable": {
"version": [
-
20231020,
-
2113
+
20231023,
+
2145
],
-
"commit": "0078a4b0bab190e27cf011b6d1f685ae953fcc82",
-
"sha256": "0nnn17rjnmzkryckahzpsicy11shbzbrdjwgwnqxigy7bp39smd2"
+
"commit": "bf9bd87c44cd5ca5ede0f080fa510240d948a644",
+
"sha256": "0m0xzcrb0yiddbr2vvnnv0vz4wb6smb3lmk4hij2hdhawf22vm1h"
},
"stable": {
"version": [
1,
4,
-
0
+
1
],
-
"commit": "4285ecaf03f821892a83c2deebb9bc2ecad2995f",
-
"sha256": "0iy5xq5jyjcgqj6slklv0ywpqb4b5ln11xv5q1gj757ach2nmfiy"
+
"commit": "38e26cb3408a38d749645ee3f2ea9fc1a3cf2a3e",
+
"sha256": "0d6wyvmbqvzsasldzfv9fwb7iwxdh214xjzq7jqy5xc5k25p0x60"
},
···
"repo": "alphapapa/bufler.el",
"unstable": {
"version": [
-
20230925,
-
118
+
20231027,
+
1517
],
"deps": [
"burly",
···
"map",
"pretty-hydra"
],
-
"commit": "8bfbcd54127f01f812d6e13fa11f55566034fa19",
-
"sha256": "0p6b6wjcsg2ls7jwgyf8k04jz57y6sw85hz1cky1v7hl2kdl5371"
+
"commit": "d8d52767b3e0afe00a5166f00897c6d7baea1f90",
+
"sha256": "0xgw4bhp3gd9acjwd1f00g84hj7wlsvh8m2ll1cc2gjhsywl5kxh"
},
"stable": {
"version": [
···
"repo": "minad/cape",
"unstable": {
"version": [
-
20230930,
-
537
+
20231022,
+
1157
"deps": [
"compat"
-
"commit": "116063b9ee912cbaa7318dbe6597ade4a62b3f59",
-
"sha256": "0p6waivxyg6mdr6xikv41j19ybbjwn7pmvbjxf309q42qgsvb4jp"
+
"commit": "bee13e568d42ffec9010fbf795e8f942973da174",
+
"sha256": "1hxlb2rbbjvfaq858v9cia7msmmpzm3nl5vygaxc1rqyyw6b7wn4"
"stable": {
"version": [
···
"repo": "xenodium/chatgpt-shell",
"unstable": {
"version": [
-
20230911,
-
2017
+
20231027,
+
1804
"deps": [
"shell-maker"
-
"commit": "8da666560551d6f8bd2f871c48e84b552836a023",
-
"sha256": "0xfzzqh7dyzk43jfxfn50r8pykaxprs1qnw290s0g22ka0mj64gi"
+
"commit": "7f11d4a8d979473ea7390cfcbed1ba1ab0fb6732",
+
"sha256": "0p5lf0r8ldqq8khcarih7msz3pwlzsmzgs2im4dp4akskjqqzbqq"
···
"repo": "clojure-emacs/cider",
"unstable": {
"version": [
-
20231021,
-
1221
+
20231025,
+
508
"deps": [
"clojure-mode",
···
"spinner",
"transient"
-
"commit": "4c99c02b5762c107cdf771a771a1216b040ba53e",
-
"sha256": "1nyrlbkqbn7bqj39xdzk6mgrhl4bg3ddhna4f3kggk2rhjlv7yx7"
+
"commit": "6437f8fe053ada1f5839ff749c3d1b3cfcfd4edd",
+
"sha256": "072qw9gk11nmgpzgccq01pc32figb547kgw1lxq0m0fkwl1al2k9"
"stable": {
"version": [
-
8,
-
3
+
9,
+
0
"deps": [
"clojure-mode",
···
"spinner",
"transient"
-
"commit": "944d6773ac254d9fcac55c05489bff3d91d91402",
-
"sha256": "12505hbyiqlf4m0mhnkf5r1yaa11rqw4786qxzw56641msv8fxfi"
+
"commit": "65ab78c7321f1084922653c33b5085ba6633a100",
+
"sha256": "0sjscbi3qgwn3wcpq5lz7k4gam69h0svh8wbhxcbskr9ys1rmysp"
···
"repo": "guidoschmidt/circadian.el",
"unstable": {
"version": [
-
20221223,
-
1734
+
20231027,
+
744
-
"commit": "9959e4b9d2ed9920b668fc229aab1f5fa5bd8584",
-
"sha256": "1hydxhmcchaprfmp08xr6nlksz6y97jbf4mswj69bgdfjfbf22km"
+
"commit": "b3bb94040080ac18aab04b010752d4984feee37b",
+
"sha256": "062mci931fwaf12cyw0kidavasdkfcd415iiwizdvlb2dmr3qmsk"
"stable": {
"version": [
···
"repo": "company-mode/company-mode",
"unstable": {
"version": [
-
20231016,
-
2324
+
20231023,
+
1033
-
"commit": "a0c7c1775ab15d5d7df57a2126b6b9699049b7f0",
-
"sha256": "09m5y7n8lvfyrvhlnx3yjqlaw28lsdxljald1kqj4r0pvb1kqwk6"
+
"commit": "66201465a962ac003f320a1df612641b2b276ab5",
+
"sha256": "0cia8xic3a1z83mwqnjsfa3nz396zzjwpp8vb0784kk3n7964is6"
"stable": {
"version": [
···
"repo": "company-mode/company-quickhelp",
"unstable": {
"version": [
-
20221212,
-
534
+
20231026,
+
1714
"deps": [
"company",
"pos-tip"
-
"commit": "9505fb09d064581da142d75c139d48b5cf695bd5",
-
"sha256": "14sm431636k72pc9iz2kmxxrk0q0ijbwy4gnl0qxqh41p9pqm148"
+
"commit": "5bda859577582cc42d16fc0eaf5f7c8bedfd9e69",
+
"sha256": "1i3qysgmyzw66hgw9w9yzvdrx9rbis88byi3aidswnxdj3lvrfgk"
"stable": {
"version": [
···
+
"ename": "conan",
+
"commit": "7eebc91812072c0f65c95ab9829f31505f880331",
+
"sha256": "0n829m79pr85s2c7h582bpv040bx9n9pqwni8ascxdnn8rlm8dzf",
+
"fetcher": "github",
+
"repo": "carl2/conan-elisp",
+
"unstable": {
+
"version": [
+
20231016,
+
830
+
],
+
"deps": [
+
"f",
+
"s"
+
],
+
"commit": "80d17373cb6c3dc7952c538efd9f94a7f564ffec",
+
"sha256": "1zn9jvdnrs6brgrsmzkmnmlcvvsdyf1in2jrrx6yzz953i7dnz11"
+
}
+
},
+
{
"ename": "concurrent",
"commit": "8bc29a8d518ce7a584277089bd4654f52ac0f358",
"sha256": "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf",
···
"repo": "minad/consult",
"unstable": {
"version": [
-
20231020,
-
1932
+
20231023,
+
1543
"deps": [
"compat"
-
"commit": "8f22fbce8d645b9ed45c9ca62c4151644f338a22",
-
"sha256": "0s6gb6j7y1i1kv8gbhswqbys4pgs2b6g0maspa8dd8f9v96rgh2h"
+
"commit": "fa249d5dd7212e5ae1fa51c086d8f1197d738ef4",
+
"sha256": "12h79lc9r5rgmivr2v8ilk4fw9lw8yh0jv4hc7jksc9dgriwxx9k"
"stable": {
"version": [
···
"repo": "mclear-tools/consult-notes",
"unstable": {
"version": [
-
20230706,
-
2018
+
20231027,
+
1436
"deps": [
"consult",
"dash",
"s"
-
"commit": "4d905df3b74a5a46ebf27ce601846e3adc6b8144",
-
"sha256": "17lz4bsp8vv9ksfg4a8d3kz2lz7qdpi81gfc0y4jvd9zllcafhnb"
+
"commit": "eb4c59b8a43c5b74250f92cf8eb05c659efb04d0",
+
"sha256": "01cs1w126r0czqszwrmfjx31drzq9rlmgfqi5swwvvsz1jcgp2pm"
···
"repo": "titus.pinta/consult-tex",
"unstable": {
"version": [
-
20231012,
-
1121
+
20231027,
+
1150
"deps": [
"consult"
-
"commit": "81cf7d7e2ef52c01c291c4ec7215020cbce29085",
-
"sha256": "1wb8sfmx0y5xwk2yx5alqspm9ddq9mzxfwwcccw8267kqkm3gs3j"
+
"commit": "a799f1a548e71151b5c0f625c9a532b670c07eb9",
+
"sha256": "143ihhan50nyfqznw6b331ms5776hq187q3k2i0ha8fcqasycxic"
"stable": {
"version": [
···
+
"ename": "consult-todo",
+
"commit": "8445e8dae6f552ea479e2f64961a8e776104570e",
+
"sha256": "1izplpc6mmn0r9yrfngmwnhprq7lpwdg2dabhlj4170y5xp9y03i",
+
"fetcher": "github",
+
"repo": "liuyinz/consult-todo",
+
"unstable": {
+
"version": [
+
20231022,
+
2059
+
],
+
"deps": [
+
"consult",
+
"hl-todo"
+
],
+
"commit": "84f3c9876a285f733d75053076a97cc30f7d8eb9",
+
"sha256": "0v336l9dary68i910yvpk9c24b9vrc1cx615hiv9dz8zi1khz8rr"
+
},
+
"stable": {
+
"version": [
+
0,
+
4,
+
1
+
],
+
"deps": [
+
"consult",
+
"hl-todo"
+
],
+
"commit": "84f3c9876a285f733d75053076a97cc30f7d8eb9",
+
"sha256": "0v336l9dary68i910yvpk9c24b9vrc1cx615hiv9dz8zi1khz8rr"
+
}
+
},
+
{
"ename": "consult-yasnippet",
"commit": "da399d9149261f6fded5a465ba1b6f2353abfa5a",
"sha256": "08piq6zfj8ixp8shyc69hmmxqqci0xp5mmg51ajddvz8k0sndgn1",
···
"repo": "nverno/cool-mode",
"unstable": {
"version": [
-
20220612,
-
1904
+
20231026,
+
456
-
"commit": "961e66956412a1dd63f79473a8273da8853f7179",
-
"sha256": "07dbw0yvk3ijibhghzgaik3cfrv56dr8ax7dyy0kryvjairmhwjc"
+
"commit": "46b6a38a99a954c5e77e90506eafec4092690692",
+
"sha256": "1vf4rr97y326lq76q57i2f7j3s264gqz36dnhaav0ivrzx8zwnyl"
···
"repo": "abo-abo/swiper",
"unstable": {
"version": [
-
20230619,
-
1623
+
20231025,
+
2311
"deps": [
"ivy",
"swiper"
-
"commit": "aa18c1f4861cef2ddcf0c70b6fd7edd93ae9c627",
-
"sha256": "11c8874amlgfch2m993qyn4lrj05z3ij4dk2a4wvhj93x8hr0dr8"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
"stable": {
"version": [
14,
-
0
+
2
"deps": [
"ivy",
"swiper"
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
···
"repo": "hlolli/csound-mode",
"unstable": {
"version": [
-
20230825,
-
946
+
20231024,
+
1442
"deps": [
"dash",
···
"multi",
"shut-up"
-
"commit": "21b2841696fed1b3d8103ad58202d5604326fcc1",
-
"sha256": "1kwn0hrcl23icq5phz5h6y9likpcnm54mkqrwcvsnzwvdz0jl5xd"
+
"commit": "2c9107a78048f16c4e274390eb3021e974372d64",
+
"sha256": "1sfmvqmgvvff56s39jb51sp9b5sz308y99b0xp4galw51s0vm4vq"
"stable": {
"version": [
···
"repo": "doublep/datetime",
"unstable": {
"version": [
-
20230925,
-
2038
+
20231025,
+
1805
"deps": [
"extmap"
-
"commit": "3def4bf0d1ed58cdd424980dd01a4b2e056a86ad",
-
"sha256": "0q4w76b5ay21k011kmsmqcqgibn79j26a593kyj2bqs9fwvsxc5g"
+
"commit": "0ec8ecf25e857638ead944eeb3e7d68c6f16f2de",
+
"sha256": "1n10qyhhyxh4g5pizrj2hlffqd0zx5ym8wsbvwk3z3s6949rjniy"
"stable": {
"version": [
···
"repo": "Wilfred/deadgrep",
"unstable": {
"version": [
-
20230914,
-
206
+
20231028,
+
506
"deps": [
"dash",
"s",
"spinner"
-
"commit": "415b69394960677a8a013d32a3cf67cb9956eef6",
-
"sha256": "07360pdbsj5dzwwfdbj4yfxpakmmyy17373wh79z0k954wnj5knc"
+
"commit": "960b61f4d9bcf75fa0f19c3abb447c63c7d886cf",
+
"sha256": "1791i7jxpmqvs3xmyk0c12dmx1cjni6gk6z6f0s4h0fhp6g99zas"
"stable": {
"version": [
···
"repo": "seagle0128/doom-modeline",
"unstable": {
"version": [
-
20230930,
-
2212
+
20231027,
+
619
"deps": [
"compat",
"nerd-icons",
"shrink-path"
-
"commit": "d739ab51d58b76c1d9cc29e7a0e4abe9c30370dc",
-
"sha256": "0l6w019gngrqb0scign188pyx06yvfiqanjvvl64yjgl5fryr1k2"
+
"commit": "1df1a7e49015004a7fb54f7baa8fb1767b3960ec",
+
"sha256": "0zgwdryws6817pj4jldxas9khfzc57hp0cc0vmgbr8izsqqkidhr"
"stable": {
"version": [
···
"repo": "xenodium/dwim-shell-command",
"unstable": {
"version": [
-
20231010,
-
2046
+
20231024,
+
1346
-
"commit": "1f865701105de5bbc62d88071a05381c14026732",
-
"sha256": "17gb87av3zflgi9nzm2igfcgby9m9s9lay16w6j2hx6kbwzqdngf"
+
"commit": "19be1c2f3792c95f04fd369cb931a52f7df9cfd5",
+
"sha256": "0fc43n3958b5ix304zigsyz5d5i0gx35lq58lfg40qmc9lhm5hym"
···
"repo": "nverno/ebnf-mode",
"unstable": {
"version": [
-
20220606,
-
1846
+
20231022,
+
1759
-
"commit": "9bc7242557dcef797afdcb4a50c70bf153aa221d",
-
"sha256": "1zzn9zivg242m5k5hk94fnp0d1vvbhx00jpf14hb7mr0n7qfdgan"
+
"commit": "61486b1c9d4746249640410e58087e318f801ed8",
+
"sha256": "17dmi5gpbp4m4c9xbppar3gc67q6s4p4w9q4phzr1ng4xblwkcjj"
···
"repo": "emacs-eldev/eldev",
"unstable": {
"version": [
-
20231011,
-
1840
+
20231027,
+
1758
-
"commit": "ed9828d074f53a135c62e989b90c3320642ded5a",
-
"sha256": "0b6mxz5r830gd14j4jbyifg3k8cqhdl97xxfbgplgj4xxirmpn96"
+
"commit": "108bccfab4e566c72d16401a675a5fee7ebbb3d8",
+
"sha256": "16f5ynyvphp58g1fgzqdicd7cj0xc12mx7mi3wzhr6gy9ll510mz"
"stable": {
"version": [
···
"repo": "karthink/elfeed-tube",
"unstable": {
"version": [
-
20231021,
-
605
+
20231022,
+
1733
"deps": [
"aio",
"elfeed"
-
"commit": "1e61ba02afa7e4258e63b5243e2efebe93f28ae4",
-
"sha256": "1h5841lkcf9029q4zb6cr4z5zgn1x7n17r0jdddd00dwcf5pclrf"
+
"commit": "0291038a00c17d780aded05b1e90860a2d586546",
+
"sha256": "0pza83vfih4gmqmf3mvpp9nxvhd9rsvszh71r9vfmdafzwqkc31p"
"stable": {
"version": [
···
"repo": "ideasman42/emacs-elisp-autofmt",
"unstable": {
"version": [
-
20230929,
-
17
+
20231026,
+
2028
-
"commit": "9263ed12f653872c70dfef537848e4b3e4a1c4a6",
-
"sha256": "00l52q82xg3rpbyylbnv8kaynsm7i0z6r9db1css7vzqlk7nbzlf"
+
"commit": "d5d6010a1bc1b1f5a2422474f701d4573a95aa5b",
+
"sha256": "055k3za0c5jpa5lgqic9749zsf7vrfzfhcinhhpkrw95amyhpy76"
···
"repo": "wkirschbaum/elixir-ts-mode",
"unstable": {
"version": [
-
20231007,
-
1031
+
20231025,
+
640
"deps": [
"heex-ts-mode"
-
"commit": "411ab0a8594040573a2b6bc30f35fa4eea02ba02",
-
"sha256": "0ws6l9pz3l1wzn71nb49prav5ffskv9c4q6mcgn8y8pkiczir1pj"
+
"commit": "cb536ff3e70b70004687bbf583757f6929ce0238",
+
"sha256": "1x55zig1jj8qiarhv6hzmam96jzafwlnsanjq3jqnl5rybr8nsxy"
···
"repo": "s-kostyaev/ellama",
"unstable": {
"version": [
-
20231019,
-
905
+
20231027,
+
1759
"deps": [
+
"llm",
"spinner"
-
"commit": "f9e0de5af6a48659dc39914e61964231fe75ca69",
-
"sha256": "1826m9nhyn67dsj8gmvff3nps1d4ldxrcdr3kxhdb88wmnwm7z7b"
+
"commit": "2e5219afbef9ae0c9adc288d3d13b21e49c847d1",
+
"sha256": "1l551x979914nznczi2n697ykwcpcr40w61c0ivq46fnvzg9sdl8"
···
"repo": "oantolin/embark",
"unstable": {
"version": [
-
20231007,
-
1902
+
20231026,
+
1842
"deps": [
"compat"
-
"commit": "b22bcc42c70e75e5c7cb479eb830ecebda0b8cc3",
-
"sha256": "16vgg0xfv1xpkkwizcim1xp3ns9dzs4cln2d2lir4lyid8hp4x2p"
+
"commit": "99cb35d7d228f57ce8e096f0c3afbf4335aa307b",
+
"sha256": "0r9y6c0hgd8qsv05w21g8h575b7m8hn4xi8zhmjhs1vswxgwidmx"
"stable": {
"version": [
···
"repo": "cute-jumper/embrace.el",
"unstable": {
"version": [
-
20171031,
-
1833
+
20231027,
+
419
"deps": [
"cl-lib",
"expand-region"
-
"commit": "dd5da196e5bcc5e6d87e1937eca0c21da4334ef2",
-
"sha256": "1m0qyipkp5ydgcav8d0m58fbj1gilipbj7g8mg40iajr8wfqcjdc"
+
"commit": "c7e748603151d7d91c237fd2d9cdf56e9f3b1ea8",
+
"sha256": "1c6fbkw1hl9bhdy62g782js8i9kgjr0pr132mpga12jd4cwf8mmz"
"stable": {
"version": [
···
"url": "https://git.savannah.gnu.org/git/emms.git",
"unstable": {
"version": [
-
20231017,
-
1937
+
20231027,
+
2131
"deps": [
"cl-lib",
"nadvice",
"seq"
-
"commit": "b1c1c2ef579b1737a86b9d9550261c77afb93992",
-
"sha256": "0d9frqn01hnqq4gr7i158mh5nlx94myqb2js9xbzncaavxja1r5d"
+
"commit": "cdea73e122e07c39678606bf876be925589a51f9",
+
"sha256": "0k8c2c2aaa7byzf8bm5iayfz1h58igsy2mic7ibbm180m69yl1rm"
"stable": {
"version": [
···
"repo": "purcell/envrc",
"unstable": {
"version": [
-
20230831,
-
1730
+
20231023,
+
1521
"deps": [
"inheritenv",
"seq"
-
"commit": "7effcda0c9870247da72e7bc56bcac2ca12fcbde",
-
"sha256": "09azbskv3k2dmfk5xq1rrxxjc47h2sdkn3hbqj7icsz2gfynbn6s"
+
"commit": "4f9ae5d4d1fcb32c844b50ccda34305884d68be3",
+
"sha256": "1jsxdyl5sjwc2rwwg2j6ggxs7bvgsifsclqylv1lj3hjl8nhrjzj"
"stable": {
"version": [
···
"repo": "positron-solutions/elisp-repo-kit",
"unstable": {
"version": [
-
20230511,
-
251
+
20231025,
+
252
"deps": [
"auto-compile",
-
"dash"
+
"dash",
+
"license-templates"
-
"commit": "f6cca4647538c4dc659f07669938f7e795dba4ee",
-
"sha256": "10827cn3gxlwxdx7a00ayxjhgmfm184v24fidmdz0z17r6sfccjs"
+
"commit": "f664196ad5736ec03ff04b4566a363309b8ceda4",
+
"sha256": "01hx2s9x4zz1d33br6hxc2x9wdf09fcn0rq09fmy96gq74cbjf5n"
"stable": {
"version": [
-
3,
-
2
+
4,
+
0
"deps": [
"auto-compile",
-
"dash"
+
"dash",
+
"license-templates"
-
"commit": "008494af28ef37ecc60571e7b2212e44767db862",
-
"sha256": "0z5h709w01sss69g97608hrjf5zkqvijqafgq8v2p6a9nf6k3ymc"
+
"commit": "6e5eaa8b6317d596d0721a3d7656bfb89ff2f847",
+
"sha256": "09gy3p94cpb2ray4jvpxf1cyjzylvxczhn7m76wx8ppfsg221say"
···
"repo": "meain/evil-textobj-tree-sitter",
"unstable": {
"version": [
-
20231013,
-
1706
+
20231026,
+
1357
-
"commit": "db6ab405980dc350b7db411cc25e4bba1be0c092",
-
"sha256": "1xgzcv6bhnw4dl5c21f54lrhpsl12g9bn18mhjknfyh2cqsaypva"
+
"commit": "b98c1c6d0b08317c9094bb222739ee037afbe7cd",
+
"sha256": "05y2sy9kbxk81pg6s45n9d1pymfm7zd0bz5zp6b240hyqc5qx8m8"
···
"repo": "walseb/exwm-firefox-evil",
"unstable": {
"version": [
-
20231002,
-
1316
+
20231026,
+
309
"deps": [
"evil",
"exwm",
"exwm-firefox-core"
-
"commit": "fe1e30029b7e44eae2a2b0bbab8719dd8a9457db",
-
"sha256": "1kyyf2g0ichi9y6hza3wam91x43bz1aj6njfnlk2kz90dg5kbpiq"
+
"commit": "ec9e14eca25aea9b7c7169be23843898f46696e7",
+
"sha256": "1fbxll1ylkrkk6jm4mwcdvpix23dxvfsgl2zs10lr823ndydk1b6"
···
"repo": "technomancy/fennel-mode",
"unstable": {
"version": [
-
20230904,
-
1952
+
20231022,
+
1926
-
"commit": "ec4b0cf13fd374d5de8992eca6adc4db69dbb5ba",
-
"sha256": "15098ljnanbwfi3va99xy1asagg7df3q0d8kdhx47frld3wlmvcc"
+
"commit": "5965c8fc693a49e65237a087e693690cf8c9fcb3",
+
"sha256": "1qxrhrnnxjmw6a1q0v12h2ix5l3d5rp2knf4ppg808mx8b8dcm5w"
···
"repo": "crmsnbleyd/flexoki-emacs-theme",
"unstable": {
"version": [
-
20231020,
-
623
+
20231026,
+
905
-
"commit": "262db9e912c9cde370f1981121778e9f3bf2beee",
-
"sha256": "0czcy6v5fsvkbx4hc2ssbhi029jl8dzxi1jfw73pa17779x92a8h"
+
"commit": "149d00ee4cd17ab465db004910b67456db142802",
+
"sha256": "056hzf4r8bzzmmhlrgh6f0pppsr3spbrpiwb2kpkdbg1fwi9bjkf"
···
+
"ename": "flycheck-eask",
+
"commit": "0ba6c82245d1faaa1280385fe90f8a3144a1c968",
+
"sha256": "0czmvcb3xg9k9501zr9vym6qg90d89f16pjgkrdfqzdn9v8gpml6",
+
"fetcher": "github",
+
"repo": "flycheck/flycheck-eask",
+
"unstable": {
+
"version": [
+
20230212,
+
1748
+
],
+
"deps": [
+
"flycheck"
+
],
+
"commit": "93cf80d60a8d7080f380e16443e0882ac4656ff1",
+
"sha256": "0q45h7yyqldj8kxzqb51x7zq98v4f9izwcj1hhgifk8ni1xzr1x5"
+
},
+
"stable": {
+
"version": [
+
0,
+
1,
+
0
+
],
+
"deps": [
+
"flycheck"
+
],
+
"commit": "ca1de9d55c99c91971857f0c37abfb3da90dd012",
+
"sha256": "11minw60sp2jg4p3k25cndx5m8ikl44m11ksnhcvqr891z1r8ny4"
+
}
+
},
+
{
"ename": "flycheck-eglot",
"commit": "ead6dfff6183385b6792bae4637bcaec76d87428",
"sha256": "0awm312r8my2fy7b2zchhfsf12mv7ad24d4wx85f9p5dalgi2340",
···
"repo": "rnkn/fountain-mode",
"unstable": {
"version": [
-
20231021,
-
1102
+
20231027,
+
359
"deps": [
"seq"
-
"commit": "0717a12ef3a1c5b847f961a4ae944cd0198805c6",
-
"sha256": "1jnb0l4sc9w0yh0mf1z4jz3lvpj7rpfq1m2am3ddipfj9zyipv59"
+
"commit": "a9c521590e720ab151ed601baf924928bce40bd7",
+
"sha256": "1ja13x0pqwni367y2vzjl2py4q8v0q5a2f8m5ngps6fppn6hbxjz"
"stable": {
"version": [
···
"repo": "godotengine/emacs-gdscript-mode",
"unstable": {
"version": [
-
20230527,
-
2344
+
20231024,
+
1150
-
"commit": "3e2ae19f036fedc4cc1c1382cd6bb4f12b1aeb76",
-
"sha256": "0pj9jc0kvbyk5hpila79ipxqyq1zh1w96qyaks4i0530iqci41y8"
+
"commit": "8a28276daaa23f10e986367b80dc751c5d26829e",
+
"sha256": "1hwagkbfrrd5bgwykl6hq56jmg0264hd6iz1nljl3n06k1gm3p90"
"stable": {
"version": [
···
"repo": "magit/ghub",
"unstable": {
"version": [
-
20231012,
-
2152
+
20231026,
+
1306
"deps": [
"compat",
"let-alist",
"treepy"
-
"commit": "636a46327384780dc2e4f5ab081bf6046a29af87",
-
"sha256": "0i2p12ff55wx8pkm44yhfgkggwrj67l113zla2l2sz1vdlzvjs24"
+
"commit": "0d7c81eee3ba0c6e029605e545173721c39947d7",
+
"sha256": "1mz4kkrs8b3n7gra3j5gy74awbwnk91nph33r2wql7a7zpz3qizc"
"stable": {
"version": [
···
"repo": "liuyinz/git-cliff.el",
"unstable": {
"version": [
-
20231016,
-
915
+
20231020,
+
1845
"deps": [
"transient"
-
"commit": "60db3f5a9350865ec78c652ef53a1335c6534239",
-
"sha256": "0jislk9rnnx0zbx5jik9w8hqrb3i3pd3rmhvk1i7rjfps0rxf7ps"
+
"commit": "d675d2ec3f6fb10a07fc3632bb7034a74f92cf8b",
+
"sha256": "0c07hv3ca8pch9cxqr97m4szksk6m21ipy0a0kimqnavivcgwii5"
"stable": {
"version": [
···
"repo": "magit/magit",
"unstable": {
"version": [
-
20231015,
-
2008
+
20231027,
+
2058
"deps": [
"compat",
"transient",
"with-editor"
-
"commit": "dd14e0c3c6604f97a447967f0c1ace9947a09e66",
-
"sha256": "1mfhqgk8ag6pwnim9xvw1jpqd3jndqckhf7zix2j3qjj1qhyjzqw"
+
"commit": "16ddcd7cc8eced7c242389a8ec51ce52f3b28425",
+
"sha256": "0c7zsya1v7hkbn316zkky4j9nzkrfavr9xspwrm40mv6z9vdan69"
"stable": {
"version": [
···
"repo": "M1ndo/gofmt-tag",
"unstable": {
"version": [
-
20231008,
-
2315
+
20231024,
+
2333
+
],
+
"commit": "93d746bda753f892c547d4c366d175c5b972fdd2",
+
"sha256": "1q0whcp1r3lrkim6dnllxdw59qlqz47rkgsmvwh9dq2jaqiid0pd"
+
},
+
"stable": {
+
"version": [
+
1,
+
0,
+
1
-
"commit": "45295db2106140cde6099b15847de79076468405",
-
"sha256": "0hdkrj9g8is58l2afb7v11mj911ns6mj3yal7rlganggbb6zkk0v"
+
"commit": "17db364ebf76548b37222b3a0e38c7cb4b5c95fb",
+
"sha256": "1rkr3bwwsv35bm65j468pf7dmdz0n8glz83wly8q3rpxliyrw4v7"
···
"stable": {
"version": [
-
32,
+
33,
"deps": [
···
"magit-popup",
"s"
-
"commit": "a8d705a003ec4a4316a38af03bcca56e5e4eedd1",
-
"sha256": "04x73r6dnzagf67vixxd5c36rykj6s4kqh6lzsa13iwrvs01cwqs"
+
"commit": "f3c1fca929db8a8289c27533de1fdffaf72cfba3",
+
"sha256": "098f5rj6x6w6pdl2jz0yabrsq7gyhrncz676j5clik7sn97fp3v1"
···
"repo": "karthink/gptel",
"unstable": {
"version": [
-
20231003,
-
2147
+
20231024,
+
2326
"deps": [
"transient"
-
"commit": "648fa228a1ccb3ba399a511db8d154fa9fa95b4b",
-
"sha256": "0g0ryxb2z72f7mwwannqan3w388rcxvkaq0sbnp8inmpdfbd7ki9"
+
"commit": "644fc1de2f1934f2db1e448de1edae065e848b77",
+
"sha256": "1jr65afr7nk3qmc7qjb4xslaz3438j46vl4wavx8is3n41621sd3"
"stable": {
"version": [
···
"repo": "rexim/gruber-darker-theme",
"unstable": {
"version": [
-
20221122,
-
1143
+
20231026,
+
2031
-
"commit": "6de7a37d7b18cf3f0ec51db799f4f2aa6e3e89ff",
-
"sha256": "1bqjn67s0kcnf86qjxz0ayaash4rbwfwqsppqyy7p9qfc00cjix2"
+
"commit": "2e9f99c41fe8ef0557e9ea0f3b94ef50c68b5557",
+
"sha256": "07076fwxqi04ri8hmxjpf348lc4ms2lgjdzk8009sliixhh0mdzl"
"stable": {
"version": [
···
"repo": "idlip/haki",
"unstable": {
"version": [
-
20230918,
-
1541
+
20231028,
+
643
-
"commit": "3726a2884fa02fdb83c8a4f43acd11d4b0883c1d",
-
"sha256": "0fpzfgbi3kybz649x2mzfbx6sqqz1y6672244q0xd4iz28zqln4p"
+
"commit": "6badf26c40463155d15d196ebb1ee8d69e6b384b",
+
"sha256": "0bgbb8s26ll1qmvfvkaj1cxynpxljkbr4wm4hfnvmkbby7c0356j"
···
"repo": "haskell/haskell-mode",
"unstable": {
"version": [
-
20231010,
-
819
+
20231026,
+
1602
-
"commit": "167421abf1db7dd4d297392b58b89bd72e2a9a63",
-
"sha256": "14196d4jbfwa44z0xhfdgzpga5v6n3c1b366cf7vn1c3qcxk1wmp"
+
"commit": "ef3fe51f7c207db3c55b9a3a720b3af665d2e606",
+
"sha256": "15d4wkpv35bbzskiwia0jzl9m5pvs5pl70qs6np6yz7hwq4c524r"
"stable": {
"version": [
···
"repo": "emacs-helm/helm",
"unstable": {
"version": [
-
20231017,
-
449
+
20231027,
+
1921
"deps": [
"helm-core",
"popup",
"wfnames"
-
"commit": "372167f13f496242263c7014a555e40db12627fb",
-
"sha256": "1gi1bx64lskmk0b9n2qmcva9005cjxv21fvqs4p4h8scb51l3bj2"
+
"commit": "4ea8631540ceed540c6242309c5778b3b976d12a",
+
"sha256": "0w2ynkm256sw25m8yzj5zgqjhhfa1zaqj7a47c81isjdqxfbv7v6"
"stable": {
"version": [
···
"repo": "emacs-helm/helm",
"unstable": {
"version": [
-
20231017,
-
449
+
20231022,
+
1046
"deps": [
"async"
-
"commit": "372167f13f496242263c7014a555e40db12627fb",
-
"sha256": "1gi1bx64lskmk0b9n2qmcva9005cjxv21fvqs4p4h8scb51l3bj2"
+
"commit": "a4380caef3a9e4b1e8d11458852ab67ba9b4cf58",
+
"sha256": "1q6v5zf5wfvg6krj8xfc4g33ja68r8abw5ymy3cmbyvnmxj9dwyb"
"stable": {
"version": [
···
"repo": "yyoncho/helm-icons",
"unstable": {
"version": [
-
20230506,
-
432
+
20231027,
+
616
"deps": [
"dash",
"f",
"treemacs"
-
"commit": "dfefdb41c63217a1d6f57d4c8761b68f3def1a31",
-
"sha256": "0xd81q5xv05kgh85ah66409nr79ivkib7ff5ygj7h05g1b59lnvk"
+
"commit": "0d113719ee72cb7b6bb7db29f7200d667bd86607",
+
"sha256": "1rnw3vkxrsx8xvvi43anvmljw22av072wyda9jlxflk8agbhpdw6"
···
"repo": "emacs-helm/helm-org",
"unstable": {
"version": [
-
20210324,
-
1927
+
20231022,
+
620
"deps": [
"helm"
-
"commit": "d67186d3a64e610c03a5f3d583488f018fb032e4",
-
"sha256": "07wsz9hbv83m3k03cxvlr2hxd2lkxx9qpphn9j6axmysi9i5bc8q"
+
"commit": "c80e53315ce6b096e2d0e630702df924bf00bf6a",
+
"sha256": "1nlqlaxxs5zk2ara3k2986jjfsj1zbknwx40jliqq39dky0ksblh"
"stable": {
"version": [
···
"repo": "alphapapa/org-ql",
"unstable": {
"version": [
-
20230927,
-
521
+
20231023,
+
2352
"deps": [
"dash",
···
"org-ql",
"s"
-
"commit": "f9d4f6241546166f98b5b3b74db4f4532620235a",
-
"sha256": "1nxjhk0yd0njlscnxvsxnlf1wy6027spcaks64qgvnrzzq9vnzrj"
+
"commit": "28c4215704031e05190c17932b5e683bb462d9e5",
+
"sha256": "1jdkk837z8fw2dff5v8fh2dhx7rz348sf5jqpj2aja5ji48p0fs9"
"stable": {
"version": [
-
2
+
3
"deps": [
"dash",
···
"org-ql",
"s"
-
"commit": "f9d4f6241546166f98b5b3b74db4f4532620235a",
-
"sha256": "1nxjhk0yd0njlscnxvsxnlf1wy6027spcaks64qgvnrzzq9vnzrj"
+
"commit": "28c4215704031e05190c17932b5e683bb462d9e5",
+
"sha256": "1jdkk837z8fw2dff5v8fh2dhx7rz348sf5jqpj2aja5ji48p0fs9"
···
"repo": "bbatsov/helm-projectile",
"unstable": {
"version": [
-
20221215,
-
613
+
20231023,
+
1425
"deps": [
"cl-lib",
"helm",
"projectile"
-
"commit": "35a2111d00c0c0c9d8743280d3f1243bb217118a",
-
"sha256": "0gd170h3v5i1886f7pvb5h5licy797djhjrigwfj2wa7i5q1avxv"
+
"commit": "e2e38825c975269a4971df25e79b2ae98929624e",
+
"sha256": "1q1699qqalgd3pkdhl4bijn9zv2l2bsazjgaiyi2yzmk9ksjwiiq"
"stable": {
"version": [
···
"repo": "Wilfred/helpful",
"unstable": {
"version": [
-
20231007,
-
2141
+
20231028,
+
516
"deps": [
"dash",
···
"f",
"s"
-
"commit": "737ff828d763e156a6072a532f2c3d2d0c26178e",
-
"sha256": "1d46rscvjhpdn1nlydgcsxhk670dabwckdk9jljyblnzh4mn5g5k"
+
"commit": "a32a5b3d959a7fccf09a71d97b3d7c888ac31c69",
+
"sha256": "1shv5v0rls38znv64g8h80541qyjqk39fpr7wkq5vis8xpfvvpp5"
"stable": {
"version": [
···
"repo": "ushin/hyperdrive.el",
"unstable": {
"version": [
-
20231021,
-
15
+
20231027,
+
1458
"deps": [
"compat",
···
"plz",
"transient"
-
"commit": "dbf3d5063f7a6c95ac27dff23eb4456ce9a270b5",
-
"sha256": "0c65f8kvz08997mx5jz03hw7ggyvs368fb98x9ziandq61vhhhwc"
+
"commit": "f37b757087a882d1736af3f06374bf81da940f06",
+
"sha256": "0l7gbqa8q5vkw2ydqgl5indf806shhi37pd2ihcr15g3az7indw3"
"stable": {
"version": [
···
"repo": "abo-abo/swiper",
"unstable": {
"version": [
-
20230714,
-
751
+
20231025,
+
2311
-
"commit": "9d630d800e856a2c984c5a62a6f0ad313a9d2228",
-
"sha256": "0a2z9ca2m3f3wk4al60psdxnc3lyalh8h2vv6dr5l2xx5ahhb9ja"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
"stable": {
"version": [
14,
-
0
+
2
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
···
"repo": "abo-abo/swiper",
"unstable": {
"version": [
-
20230410,
-
1815
+
20231025,
+
2311
"deps": [
"avy",
"ivy"
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
"stable": {
"version": [
14,
-
0
+
2
"deps": [
"avy",
"ivy"
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
···
"repo": "abo-abo/swiper",
"unstable": {
"version": [
-
20230410,
-
1815
+
20231025,
+
2311
"deps": [
"hydra",
"ivy"
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
"stable": {
"version": [
14,
-
0
+
2
"deps": [
"hydra",
"ivy"
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
···
"repo": "nverno/jq-ts-mode",
"unstable": {
"version": [
-
20231018,
-
1047
+
20231025,
+
2319
-
"commit": "14a4df0ed089bc9d322b9846d1b87f603c241161",
-
"sha256": "19rvid30zc561v88d45q51q1xrgs28m6s0njiph0rkfw4ffkcg5l"
+
"commit": "b1abef71843dd99349133a75245804aee503c05d",
+
"sha256": "0xjmpk33rhqlw5f9qjhmyc057l8rbrrzhz460zsljx2wm11cvp6d"
···
"repo": "tpapp/julia-repl",
"unstable": {
"version": [
-
20230529,
-
943
+
20231026,
+
1005
"deps": [
"s"
-
"commit": "9503ef7110732e444e686e815c5b2ae8228d274d",
-
"sha256": "0kw7228qfk1gamrjh8sddpslrb74a37zxadk22v4x16lm6f1cz27"
+
"commit": "4947319bc948b3f80d61b0d65a719737275949b8",
+
"sha256": "0vfpc4glkbl4ccz34i6fx9ny6zl9h69lw0sbv2rr526y7rr1cr7a"
"stable": {
"version": [
···
"repo": "gcv/julia-snail",
"unstable": {
"version": [
-
20231019,
-
455
+
20231026,
+
2200
"deps": [
"dash",
···
"s",
"spinner"
-
"commit": "249dd96cd112f4a2f9a15555aeed5a315cee8cb5",
-
"sha256": "1k34gn05rqlnmrvw8x0z0lq3zjdd10w8s7hkgy11yzfsks9r8fr3"
+
"commit": "97ca00411e16a2c1815090ca5aa05b3a36776a75",
+
"sha256": "168x8g2m30ci2msjfk09bbczpa33h4ax57b23hcwy5czk9511w70"
"stable": {
"version": [
···
"repo": "tarsius/keycast",
"unstable": {
"version": [
-
20230901,
-
1234
+
20231027,
+
2204
"deps": [
"compat"
-
"commit": "481a1620cac3118aff4b2db027acde7d3834b153",
-
"sha256": "1gry1mzz5mxbi40xlnrl3ks8778lx963k68zwff0iry4xcbsss42"
+
"commit": "0a1cd94dfe047e60912791439e03caed0fdcaa0b",
+
"sha256": "13m07ik30li3jm9sa5js61i6kvjdhvqdy1yzj94i4qrr7mm67zk5"
"stable": {
"version": [
···
"repo": "bricka/emacs-kotlin-ts-mode",
"unstable": {
"version": [
-
20231018,
-
1342
+
20231026,
+
958
-
"commit": "6c2568693cd80b1cf57c7950d9458bca5af371ce",
-
"sha256": "1v51n5vb5gmx01vxqkwdwawcjp0g92316273v4qx3w3k7dr0k85h"
+
"commit": "0472c9346e30f8499c87938a323c733628a0dd26",
+
"sha256": "1gnlrbzj1z4028mm2c6bn7bf38vbs90z88i63f428hvjvimg0pw1"
···
"stable": {
"version": [
+
0,
"commit": "d45dedbc74887c59f15c5a3dcd7546d2c29c30a4",
···
"repo": "martianh/lem.el",
"unstable": {
"version": [
-
20231017,
-
1432
+
20231022,
+
1416
+
],
+
"deps": [
+
"fedi",
+
"markdown-mode"
+
],
+
"commit": "7f4184f51001c6df218d318b2f938cbb631541e9",
+
"sha256": "0ggm8y8a0gn5cj6m34fvkymfxc0agfr7cvr7wnysfzwdc0iwgwdz"
+
},
+
"stable": {
+
"version": [
+
0,
+
3
"deps": [
"fedi",
"markdown-mode"
-
"commit": "44b9535698384851f93257fd132319fb62c13c9e",
-
"sha256": "1ww05yqdrkgxnv37q2wa0al4k25cz1nwyygvycbcbawisqk3pmbk"
+
"commit": "7f4184f51001c6df218d318b2f938cbb631541e9",
+
"sha256": "0ggm8y8a0gn5cj6m34fvkymfxc0agfr7cvr7wnysfzwdc0iwgwdz"
···
-
"ename": "ligo-mode",
-
"commit": "c8a86d223f5e764419aaf964d69a30350f74f904",
-
"sha256": "1289n7xbpx6ppil6rixck81xw3x0acrpcnxchml5yrwqrbr8czli",
-
"fetcher": "gitlab",
-
"repo": "ligolang/ligo",
-
"unstable": {
-
"version": [
-
20230927,
-
1841
-
],
-
"commit": "a392154388b1abe974f424b71a66d618010f9e95",
-
"sha256": "0qd8ziv9j59s4q61bs1qdm5cvsd396pp3g2ymb1kxzpmbblaf0nc"
-
},
-
"stable": {
-
"version": [
-
1,
-
0,
-
0
-
],
-
"commit": "a392154388b1abe974f424b71a66d618010f9e95",
-
"sha256": "0qd8ziv9j59s4q61bs1qdm5cvsd396pp3g2ymb1kxzpmbblaf0nc"
-
}
-
},
-
{
"ename": "line-reminder",
"commit": "eb151125750b06c2cf6fcc5d762c980fdc89b0dc",
"sha256": "1l7bf0lvncn645v7c3rr5gxd9jkz5jfyaps864mzwvmasbx6d3p4",
···
"repo": "emacs-vs/line-reminder",
"unstable": {
"version": [
-
20230420,
-
142
+
20231028,
+
359
"deps": [
"fringe-helper",
"ht",
-
"indicators",
"ov"
-
"commit": "583bff387b361e1fe442f57e9ad1f6f8e87dedf4",
-
"sha256": "16shzyvvqwr83qdpwzwnyxabmgk4kz6jc4gk4yjs0mnakrgx6c0c"
+
"commit": "9e60c92b2495737d25407d79fb3a0e3d9909d5c9",
+
"sha256": "128icdyrfcj9p6yg98bpgmm72qi71hb51bv042549qwgdfbx7is6"
"stable": {
"version": [
-
1
+
2
"deps": [
"fringe-helper",
"ht",
-
"indicators"
+
"indicators",
+
"ov"
-
"commit": "8bf9e6d70347a99528bab56f90e0210f9a88dad8",
-
"sha256": "0f78dnz0qmmq2g4xsm3a9kqg4864lghv1nbz0hj2c8mz2c58laqs"
+
"commit": "8b63b6ad6733363b24a8f5472f71eab301044b43",
+
"sha256": "1m8mshggyyv7wqjydjnx0jzyxxqpq4r1v0hwyrmcv9a7rngh7dzr"
···
"repo": "okamsn/loopy",
"unstable": {
"version": [
-
20231015,
-
1458
+
20231023,
+
219
"deps": [
"compat",
"map",
"seq"
-
"commit": "0780e281e12742803f5aac8f2126156d4271d567",
-
"sha256": "1vv9gsswb03hmfxw7d517nx1qncax7mdgx1dfsqp9hcg3s3nwycs"
+
"commit": "3819e0f74dbde83822fb1d5d26444c3a5c63f408",
+
"sha256": "0w1gffzg2rjimwfwz6wrgskadjsd8cz7hnaqy6da022mskifzh1n"
"stable": {
"version": [
···
"repo": "abo-abo/lpy",
"unstable": {
"version": [
-
20221106,
-
1310
+
20231026,
+
1525
"deps": [
"lispy"
-
"commit": "fa95b11e1023704510cc7dd2897bf8bcc3027cbb",
-
"sha256": "18kx2mfmxy8s8csnp0iaiirl2z9baicq9f2w7rxlgkxww5511v7d"
+
"commit": "2c086ec162d4456b99a6095c3c335382a8304734",
+
"sha256": "0vrc7q7b872mm5shi6s7x5wx2d8znnmjd1adsjdxwnaqap4x98gd"
···
"repo": "emacs-lsp/lsp-mode",
"unstable": {
"version": [
-
20231021,
-
455
+
20231027,
+
613
"deps": [
"dash",
···
"markdown-mode",
"spinner"
-
"commit": "2134ca09245815487f395a4c53000da1082e8823",
-
"sha256": "0721z42hfh768b0cr57i7cr212962hx5k1fjsy9b6z19rvhr4ddy"
+
"commit": "0f5723f9ae5d7fe2a82ad45e4505710b6a13be41",
+
"sha256": "0zxsvz73whc44xgsvcfikdbb5d5f762r7ys6zpik07n7ry98qq85"
"stable": {
"version": [
···
"repo": "immerrr/lua-mode",
"unstable": {
"version": [
-
20230810,
-
931
+
20231023,
+
947
-
"commit": "7eb8eaa420c25477c830623b830fd18dc350cdfb",
-
"sha256": "12bv7rlhz8gncg142780ri4mhzrzd06xjrg8i0mwxb2rn8i0nidc"
+
"commit": "d074e4134b1beae9ed4c9b512af741ca0d852ba3",
+
"sha256": "1n1k55xy9zaknb9hfv7qlxi3ij1dvspldzzn6vc68c7yzskn88zv"
"stable": {
"version": [
···
"repo": "magit/magit",
"unstable": {
"version": [
-
20231014,
-
1408
+
20231027,
+
1202
"deps": [
"compat",
···
"transient",
"with-editor"
-
"commit": "c6a62accc5ed4bbdae4e1dc2060210ecfc4cdb8a",
-
"sha256": "1m1ip8ly0gjs3brmgkijb2vmyfrr489src9zgpn6whl1l10d7wa6"
+
"commit": "2ca552e3c4c0086f1097c2c7098888425ec6bdee",
+
"sha256": "0fpifvbnddx61y88ndr3sdx69knj50hvqd5bcapa8r1r3dic64dg"
"stable": {
"version": [
···
"repo": "alphapapa/magit-todos",
"unstable": {
"version": [
-
20230826,
-
1832
+
20231027,
+
1452
"deps": [
"async",
···
"s",
"transient"
-
"commit": "d85518d45d329cc0b465cc3b84910b7c66b3fc42",
-
"sha256": "1zjlf3bhz0a7r9sa5ic22vwr2w1zxbfk9z545pdd1fvp00c2kzd0"
+
"commit": "a197a04da1620ee7d41f3aa4f846a479760e2273",
+
"sha256": "16xdf60mw6lwklw2p2cv081c728d4qfrazrb36nq8pxxzz56bxas"
"stable": {
"version": [
···
"repo": "minad/marginalia",
"unstable": {
"version": [
-
20230925,
-
1627
+
20231028,
+
907
"deps": [
"compat"
-
"commit": "4e14bc0fa05ae8c35e019721d19acdec8b51248c",
-
"sha256": "0mv54hgb8cadwdhmn20d30fairhvvrvlvvp9awfi32dw91hma8gv"
+
"commit": "e4ff0838da33bf5102ee009ff28d541f0b51c9a3",
+
"sha256": "0q83ia4dh0jj17m8s66ps7nfzib8656w2ig6w2jnmv63qfzfyx3d"
"stable": {
"version": [
···
"repo": "jrblevin/markdown-mode",
"unstable": {
"version": [
-
20231021,
-
738
+
20231028,
+
853
-
"commit": "2a0556c5b7dbf29ce437eac6ee9b6636e1b95234",
-
"sha256": "1mkwqprh09328hqk1f40i8l09ksmphz7nyn3fzhghalgr40b1ij8"
+
"commit": "b1a862f0165b7bafe0f874738a55be1b1720dd7d",
+
"sha256": "0r9z4vlan1255118kdand9mr9rkdr8kmvrxr9q8bclyz8dk6fr54"
"stable": {
"version": [
···
"repo": "DCsunset/modaled",
"unstable": {
"version": [
-
20231014,
-
255
+
20231026,
+
247
-
"commit": "ace80c0bd5d37803fdd1cbcb3ddb8a5e3b0cce98",
-
"sha256": "0ksl9jz4620myzhr2bfnw30ljni3bxn1drcydqnbs3ii94ysjm3d"
+
"commit": "0a8471752f89d07b439680212dceda2e69b63457",
+
"sha256": "0sgxsknrq65hijrlvzd14j78vfd6wfah7qg57rcbjxw00hs9nxf3"
"stable": {
"version": [
-
7,
+
8,
-
"commit": "ace80c0bd5d37803fdd1cbcb3ddb8a5e3b0cce98",
-
"sha256": "0ksl9jz4620myzhr2bfnw30ljni3bxn1drcydqnbs3ii94ysjm3d"
+
"commit": "0a8471752f89d07b439680212dceda2e69b63457",
+
"sha256": "0sgxsknrq65hijrlvzd14j78vfd6wfah7qg57rcbjxw00hs9nxf3"
···
"repo": "mkcms/mu4e-overview",
"unstable": {
"version": [
-
20231021,
-
46
+
20231027,
+
1038
-
"commit": "18b74e26616f7fe4d2db13d9def4b5a0fa44ddcd",
-
"sha256": "0ly0fcffdb73923hr1m5s1zfl9c7m9wh0khsn1zxj6bw7azjqk6i"
+
"commit": "0e711f47f9bab8bea9fe4f8e857920b879e70dcd",
+
"sha256": "0zh4pi4d74cs9p8ll7fzq8chxk84safvb7svxcss692jjsqvj89y"
"stable": {
"version": [
-
2,
+
3,
-
"commit": "467a7dfda4e534783469a137545193ded8a66723",
-
"sha256": "08lwvgwfsxmvm5bnw0sl96dry57h4wcjsi2fr2mmfq190kdjrizy"
+
"commit": "0e711f47f9bab8bea9fe4f8e857920b879e70dcd",
+
"sha256": "0zh4pi4d74cs9p8ll7fzq8chxk84safvb7svxcss692jjsqvj89y"
···
"repo": "mihaiolteanu/mugur",
"unstable": {
"version": [
-
20210719,
-
722
+
20231024,
+
755
"deps": [
"anaphora",
···
"dash",
"s"
-
"commit": "63a0377ac1ad48171621c9f0c719b62ec9395d35",
-
"sha256": "180i7igzqv5l22vk6n96g196mnd50lgwcmjkmzwlwdxn4jsgvjbv"
+
"commit": "9d55e6eac893abfc0a2622d6ac2a791ce5b23fbb",
+
"sha256": "1571bxz6jjdpxdcmv3aisd87pwrr46z0pljql45n9lsvs01liyr3"
"stable": {
"version": [
···
"ename": "my-repo-pins",
-
"commit": "71668cffda630ca39d6f606ee61fc1dc47d70978",
-
"sha256": "10kapw38sq850599axqpmkvr4cn6pmqy2r1cw07ks6f423bxrlh9",
+
"commit": "761dcdc06682d1511e07142fbbb48749ef22a859",
+
"sha256": "0ppnxz6b0gyxp9462bkq70p4drs5qshxa3n059brx0bcd14g20z6",
"fetcher": "github",
-
"repo": "NinjaTrappeur/my-repo-pins",
+
"repo": "picnoir/my-repo-pins",
"unstable": {
"version": [
20230120,
···
"repo": "emacscollective/no-littering",
"unstable": {
"version": [
-
20230801,
-
1005
+
20231024,
+
854
"deps": [
"compat"
-
"commit": "fcfd51fbdf08469e6d1b59bc4bd2d75aa708c791",
-
"sha256": "190lhzqdn4681frk0ih519c3riwxc6mz16q3bisl3l7brsp1rgwj"
+
"commit": "1fb3271e991fb941e8cc480beff74000e3a08a3a",
+
"sha256": "0ahlri3hlkrlmm6bh094ays6qrw9yd02rghq0hgin006817r8pqz"
"stable": {
"version": [
···
"stable": {
"version": [
-
38
+
38,
+
1
-
"commit": "60b5ea319a45900b1e610715481faaa339ea3a4c",
-
"sha256": "1x0h5z2476qsfi1qfywlfdn68gydlyqfmvpjr92yw3pmp28ilrl3"
+
"commit": "356ad392716d2a775e58d766c1fec9047cc84163",
+
"sha256": "01h8handfqhps79gyx579b70sfigyxdlk3qgqv413ahvinw5h47b"
···
"repo": "alf/ob-restclient.el",
"unstable": {
"version": [
-
20231021,
-
1002
+
20231027,
+
518
"deps": [
"restclient"
-
"commit": "3fb2c99c37c9972ecda143c826725819357e0de9",
-
"sha256": "15dcl1js20d9csmsj7xn4y0nzr6b0q1p1vfa5kl103i4l2v6cj62"
+
"commit": "1a127eb0165f10bb9d33606aa8529051118805e7",
+
"sha256": "0fk0ly8hyhlq4vyndkmv22cx0p7cknf56j6djika1c9d4hl75ff2"
···
"repo": "oantolin/orderless",
"unstable": {
"version": [
-
20230920,
-
553
+
20231025,
+
2044
-
"commit": "d6b402a89e234d0e6166247ed6025f9acc8b4d9a",
-
"sha256": "00233wp3dlzxbnxbxq1ph9j93d25mnqn6iagr7rfp83b7d9s9gbb"
+
"commit": "89eb3775daa53cfb52ad03015410c23f28c72d30",
+
"sha256": "0gpnfxh8kps0szd5lmpy4zvqxgzmazspgg5wfdd0c1ywszz5lczh"
"stable": {
"version": [
···
"repo": "drghirlanda/org-change",
"unstable": {
"version": [
-
20230505,
-
150
+
20231026,
+
2216
"deps": [
"org"
-
"commit": "45898a67701ade93f310db8e5820b8bfc4a28846",
-
"sha256": "10ryk3p8nz8pqck310m1zrkam9p6wb3lf46wcgwhqsri9aa780vj"
+
"commit": "c74662112e8a857bd87c54128baba9307a393974",
+
"sha256": "0mpsghnzgyhxzjdsnj57sizv0dny75hm0kj61q13ckrc26bjlhg7"
···
"repo": "bastibe/org-journal",
"unstable": {
"version": [
-
20231013,
-
1147
+
20231022,
+
829
"deps": [
"org"
-
"commit": "ac0832f02a1259c10d3691b35496a01b54f0a3b9",
-
"sha256": "02ax78319p8iy8qqxrlcc32a3mkmawybb1qv37m34g1f49wlx0d7"
+
"commit": "a306f76ee2b0292946a20530bd9114aefc85a263",
+
"sha256": "0bym8v8hwwhshk65hpfg7dnyzyym0g0hz6h692jpiqrp0mcvnilc"
"stable": {
"version": [
···
"repo": "alphapapa/org-make-toc",
"unstable": {
"version": [
-
20230904,
-
911
+
20231025,
+
2326
"deps": [
"dash",
"org",
"s"
-
"commit": "e6da481729a103a081b1b6bbca7202a21cb7321a",
-
"sha256": "009sim07f0dyxdpcr5fqbqla5s5i1sc8z008h85v957wbhw6dmhi"
+
"commit": "df29826107ad12fd1d5f173a9a8e070b84f21a68",
+
"sha256": "1bsn8z7nc2qngjdkd7sq14f53i8pgjchka1s3l6cqxbjv9gvm0q5"
"stable": {
"version": [
···
"repo": "alphapapa/org-ql",
"unstable": {
"version": [
-
20231020,
-
244
+
20231025,
+
830
"deps": [
"dash",
···
"transient",
"ts"
-
"commit": "ac2d43588aa96f0b7fe88f518d6fca4fd65b5aa0",
-
"sha256": "098x2vv7w7s4i9kic7q8jcnixm517247i31a2ng06jkad7q7gx5d"
+
"commit": "bd2dd12a417df5403954576756d9c24273d94379",
+
"sha256": "1rmf5jg1jgfhyaarfmrmha7vhzc3v45zqccn44sihrhxpp1b8www"
"stable": {
"version": [
-
2
+
3
"deps": [
"dash",
···
"transient",
"ts"
-
"commit": "f9d4f6241546166f98b5b3b74db4f4532620235a",
-
"sha256": "1nxjhk0yd0njlscnxvsxnlf1wy6027spcaks64qgvnrzzq9vnzrj"
+
"commit": "28c4215704031e05190c17932b5e683bb462d9e5",
+
"sha256": "1jdkk837z8fw2dff5v8fh2dhx7rz348sf5jqpj2aja5ji48p0fs9"
···
"repo": "jkitchin/org-ref",
"unstable": {
"version": [
-
20231021,
-
1453
+
20231027,
+
1224
"deps": [
"avy",
···
"parsebib",
"s"
-
"commit": "b2eaf51c0082fab335475ef3e9761ec5a3858f79",
-
"sha256": "0w359ijj3qzp180wnialrjmgxfrygp9i3jjyhwyil6ka5gnbyycj"
+
"commit": "1773de623017e177e79b17ed6a5ee6f7162fd9e5",
+
"sha256": "0c2p68nhxf8abpnp28zskpqnnp13x5vb47pdzymad4zjc4zrdf3y"
"stable": {
"version": [
···
"repo": "ox-tufte/ox-tufte",
"unstable": {
"version": [
-
20230910,
-
2353
+
20231022,
+
2117
"deps": [
"org"
-
"commit": "88e0cd130c7db748855e7f083d7f623692ef8239",
-
"sha256": "18b5ch69db4kavz18pg2kyf8fy0yi28176bal5drxwdffsyw7p4f"
+
"commit": "58422fb109f2b2a997f9c773b5436e7b62182e12",
+
"sha256": "14i1pliifj5p0i1bgsdgph32ilj7snrh8gnhk59f1f4ngh3kw3zg"
"stable": {
"version": [
-
2
+
3
"deps": [
"org"
-
"commit": "88e0cd130c7db748855e7f083d7f623692ef8239",
-
"sha256": "18b5ch69db4kavz18pg2kyf8fy0yi28176bal5drxwdffsyw7p4f"
+
"commit": "58422fb109f2b2a997f9c773b5436e7b62182e12",
+
"sha256": "14i1pliifj5p0i1bgsdgph32ilj7snrh8gnhk59f1f4ngh3kw3zg"
···
"ename": "pcap-mode",
-
"commit": "44f4cb526556a4b58b7e67314002e73413a59a76",
-
"sha256": "1p6lnr7yr8i3yp63xc8r1hnx8a4v0mz1s7q89zxx7aprk7i9kpv6",
+
"commit": "ee84077d859aa8f941bc2749c2fc02ada6e608cd",
+
"sha256": "1k1vbvx3g9g5bn6vfijaffacn7lf2gl67b7f3kh3fq12jxp1swvp",
"fetcher": "github",
-
"repo": "orgcandman/pcap-mode",
+
"repo": "apconole/pcap-mode",
"unstable": {
"version": [
20161025,
···
"repo": "nverno/prisma-ts-mode",
"unstable": {
"version": [
-
20231007,
-
904
+
20231022,
+
1802
-
"commit": "b597a437a96c0f03cf2bc038794d6a98ba1bd48b",
-
"sha256": "1m4lv4isfd0szyy6dj75kpid6qs6zvj2jx80glndm0qqyznrkl94"
+
"commit": "a7029980140ae60612ef876efa17ab81bf4b3add",
+
"sha256": "0isym89c4432qrdzpbmg85pw97jw6lvbz9sdv1xy08c448dydg79"
···
"repo": "thierryvolpiatto/psession",
"unstable": {
"version": [
-
20231001,
-
432
+
20231023,
+
1749
"deps": [
"async",
"cl-lib"
-
"commit": "fc60f1253aeb9c38a08dc74f9c7dbfe0d535a19b",
-
"sha256": "15x1h104krici21ipsn6jr1y3yhyif5mkw38s3bwd5xhmsa3lazz"
+
"commit": "1f74eecb5375fa94eb8d809f8e27caa48ed2323d",
+
"sha256": "1aa5g9082s8dvd0hd1n4yjlcnpd64l1przmmvjr4vgyaix42rg9z"
"stable": {
"version": [
···
"repo": "ideasman42/emacs-py-autopep8",
"unstable": {
"version": [
-
20230115,
-
633
+
20231025,
+
2256
-
"commit": "d0486c22c0a92ad7911714026021fe4ad276b7c9",
-
"sha256": "1xa25sfdmc6srys0ymhdj07kss4ixnw3sqq5grjix7acifdmrbj9"
+
"commit": "3e3f6c182455bf85284cda7f4ffe639444b84940",
+
"sha256": "05xqdja61p3c3sx836z3c1jjbm0ih2mrw13qnkp2hhh3ahyz2qql"
"stable": {
"version": [
···
"repo": "alhassy/repl-driven-development",
"unstable": {
"version": [
-
20231020,
-
1039
+
20231023,
+
1120
"deps": [
"bind-key",
···
"pulsar",
-
"commit": "106712f43d4cb8d891837a670dabad08a7629528",
-
"sha256": "0xad9xksjgiw02rw1174adgaqjpvyqx0hp61qd4r44y40rzns5kp"
+
"commit": "8877f692112459095649735ac4d023248b3905ae",
+
"sha256": "19zj743ayv322cz13kilkkl4djpzs9q22z6qhk0ipasy1kdijh57"
···
"repo": "DogLooksGood/emacs-rime",
"unstable": {
"version": [
-
20230212,
-
1425
+
20231025,
+
1220
"deps": [
"cl-lib",
···
"popup",
"posframe"
-
"commit": "6438abacace7d94f05fabc45b82d619677fc5fca",
-
"sha256": "0fyv92lfz7c98l79valrh9wr78b4303bhnqjgycbz33p9m2hply0"
+
"commit": "0de3250fd1005878dd7a06a8fef7324a878f17b3",
+
"sha256": "0yfv3pw82953l77lz1jj5pscjra1ha157pzlhhykmn3sfvn0s45r"
"stable": {
"version": [
···
"repo": "jgkamat/rmsbolt",
"unstable": {
"version": [
-
20231011,
-
525
+
20231024,
+
221
-
"commit": "f693bb31605d6e8a0b98f74d35e2a728e33f0af7",
-
"sha256": "1pvmcxdv9lw6gzgx5wgpbvws6z9lwxh8vrf4vykqdym5g9wdk3hb"
+
"commit": "86c6e12a85db472e6660ef7fef12a4e719ef3c66",
+
"sha256": "1kvl8syz700vl2dbva4k1vdzxd67sjby4w4zsl62njvbvwzvcj0r"
···
"repo": "dgutov/robe",
"unstable": {
"version": [
-
20231021,
-
48
+
20231023,
+
2046
"deps": [
"inf-ruby"
-
"commit": "0095a48075f366e195d4861c3a91467bcf423c73",
-
"sha256": "1qa3w3g5ayrxh20l0948sr7yhz480qc8q1r34iv50jv8i6flsb5w"
+
"commit": "021a7bc34848ef77eaeaa41d7899c6cab873cb0e",
+
"sha256": "0s0cmj1vmfa9gwn388ll3fpsv25q3v6vvj6k4xlcn75kdfzsbx59"
"stable": {
"version": [
···
"repo": "meain/scopeline.el",
"unstable": {
"version": [
-
20230622,
-
829
+
20231027,
+
1524
-
"commit": "254d300aee0a22349b07fbe542fbec81547bae75",
-
"sha256": "1q4x5fmx95isiq47nk7r3q0n3q9dvbl855yph0p6wy7rr999v3jb"
+
"commit": "58d6ef20b6cf398c48571239311d812a2f926ecb",
+
"sha256": "0p10mpn9bbd6cccafw0h296xhavq8x46mn3292iks10v553b0li6"
···
"repo": "emacs-w3m/emacs-w3m",
"unstable": {
"version": [
-
20231020,
-
743
+
20231026,
+
455
-
"commit": "622038d8e24c542f29bccde2db84a6a6d6af19a2",
-
"sha256": "0yi9dmayyr8di6kczbya37zym32cxwzcwkkac2fw5jwsm63kyzan"
+
"commit": "e3b87d61dfef3a9d44872c50db360732ba949d57",
+
"sha256": "06rqxib501xn2xlc4pqdh06zw0wrkg70sxr2fqv7i2fpl9qxwriv"
···
"repo": "laishulu/emacs-smart-input-source",
"unstable": {
"version": [
-
20230305,
-
1006
+
20231024,
+
1738
"deps": [
"terminal-focus-reporting"
-
"commit": "e4142baa470e5f33dd508bce0264359dc5204b6f",
-
"sha256": "1yhlc8wpnay8fj9m5n9sy1mzdqs2sq7bkdabbc2cv5pczj88ndbv"
+
"commit": "80b2e7c3be365c7685cc4070294359341799cd47",
+
"sha256": "1qa0dzy8qjdyd1m0bxwx269lrvqxz7hmyl95c55rr9pj928a3v12"
···
"repo": "Fuco1/smartparens",
"unstable": {
"version": [
-
20231021,
-
1239
+
20231024,
+
1804
"deps": [
"cl-lib",
"dash"
-
"commit": "e3e563b20e405d87e3f1b3792174803bb8de2b7b",
-
"sha256": "1vkxskgh1qbr4l2k6ghvpyws3192gay0shsj5vds6432q7ckyr5v"
+
"commit": "0778a8a84064cf2bc3a9857bd0e7a4619cc1e5c3",
+
"sha256": "1svi5zfrg2ygsjb247y02c9i0cqmc5lqa7sq999niriblj5plr60"
"stable": {
"version": [
···
"repo": "SpringHan/sniem",
"unstable": {
"version": [
-
20231020,
-
614
+
20231028,
+
558
"deps": [
"dash",
-
"commit": "cf1e6ae475c053ec18c3722b4591b863a788adce",
-
"sha256": "043p574fqfjbh1yqgxnihrjf2mmqra4s4wabb64y6acc9jpbpavw"
+
"commit": "dd092660aa7204060223377ba07e5d6c8b766d41",
+
"sha256": "0ssbwygc5c9jmd4vmj4y2pn9fpk2zd0m7qpkq2c6wnsl7z9g07rg"
···
"repo": "daanturo/starhugger.el",
"unstable": {
"version": [
-
20230901,
-
1922
+
20231023,
+
1523
"deps": [
"compat",
···
"s",
"spinner"
-
"commit": "32c362a31fab1deedd37d787812e399fbee0d870",
-
"sha256": "1a08a7nxldxyprpq3ywydfvhaglcap7a1rh0x057zy8qaka86x05"
+
"commit": "8e1bc1167a64cc421ce3d1368a9c0e5da89bf687",
+
"sha256": "0wpxicq7yh99qx6vwvjgbwwghx1bqyx972zymzhq3m89wnliqlx3"
"stable": {
"version": [
-
0
+
1
"deps": [
"compat",
···
"s",
"spinner"
-
"commit": "aa8ac995e48b2e810ca11ddd04f68178a819fb5a",
-
"sha256": "1lw7djgz10n7mg5k32jfvrkabdmhddf2bfvdjp9wgfw65mpy1xly"
+
"commit": "8e1bc1167a64cc421ce3d1368a9c0e5da89bf687",
+
"sha256": "0wpxicq7yh99qx6vwvjgbwwghx1bqyx972zymzhq3m89wnliqlx3"
···
"repo": "abo-abo/swiper",
"unstable": {
"version": [
-
20230410,
-
1815
+
20231025,
+
2311
"deps": [
"ivy"
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
"stable": {
"version": [
-
0
+
2
"deps": [
"ivy"
-
"commit": "d28225e86f8dfb3825809ad287f759f95ee9e479",
-
"sha256": "16j5k96wllfjgcb1bn0rfm7x67yhr3kh5601b8rydlk768zjpq5v"
+
"commit": "8c30f4cab5948aa8d942a3b2bbf5fb6a94d9441d",
+
"sha256": "1iqj27pc2iivmwfh329v0d9g0z1y0whlnamrl7g2bi374h41m368"
···
"repo": "mclear-tools/tabspaces",
"unstable": {
"version": [
-
20231018,
-
1932
+
20231026,
+
1454
"deps": [
"project"
-
"commit": "a971a63ae4bca93f2faa963d6a71eed413f0e37b",
-
"sha256": "00r7v97ndvs7szcv7yfym3qzi859kryjj2sr2yfkrzygp336v88l"
+
"commit": "3ff927ffc427d2debca56bc6ec2cbad37d85dd61",
+
"sha256": "1a11bbsckfn341xd0yw1jaalqn7w178fwxc2l8ag766bk878fmwr"
···
"repo": "johannes-mueller/test-cockpit.el",
"unstable": {
"version": [
-
20231021,
-
2149
+
20231027,
+
1842
"deps": [
"projectile",
"toml"
-
"commit": "98a15ab65d45e2053c587b2f2fde37d16fd45a21",
-
"sha256": "16296dhqbprsbvq7ld2c806qw6ivj7p14y5djpxj0li7m8wr7v5s"
+
"commit": "911e42d1b71e844b9821a4561154734adaa0f1e0",
+
"sha256": "1y1qdsm0rdjmxa4pgf1fhkim3ahkn70601l8d8snq5gdcfkx30s1"
···
+
"ename": "third-time",
+
"commit": "f73607e0ca3d2533a5c46daae76d1b4c49d2134e",
+
"sha256": "0fsfyfcmhr9m9nmc82lxbxiji3d80m9q4b6bp6nkyhavwqqznbm3",
+
"fetcher": "sourcehut",
+
"repo": "swflint/third-time",
+
"unstable": {
+
"version": [
+
20231023,
+
316
+
],
+
"commit": "05bed0c25ce5def3db6b885ffcee74a705dc0dfb",
+
"sha256": "1jcbkbc31cshayvgq835sv89jhsbd9w0820872wccs09jkkzfrzf"
+
},
+
"stable": {
+
"version": [
+
1,
+
3,
+
0
+
],
+
"commit": "d1e0e146c298de0114035b19c9c4f990db7f1ae5",
+
"sha256": "0l0d35rwrm2l8smywdy20fy7vvw50pxs08w0mfjqzsfxh5piy1wh"
+
}
+
},
+
{
"ename": "thread-dump",
"commit": "091dcc3775ec2137cb61d66df4e72aca4900897a",
"sha256": "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2",
···
"repo": "facebook/fbthrift",
"unstable": {
"version": [
-
20231014,
-
28
+
20231021,
+
1233
-
"commit": "aed0ba17906360dd1ec566a6184ef02f96c919cd",
-
"sha256": "1ckp7alxng8r505zggqp82v3w4mlfpgixsl1v36gzgqlcb6hqzs9"
+
"commit": "72cc23eeb9d696a22c6054d4de0a75a9c18fe46b",
+
"sha256": "05a64c2wmvky5m1vb9072scix2a6q7na448hf96aj40q3qbkh0ga"
"stable": {
"version": [
2023,
-
16,
+
23,
-
"commit": "aed0ba17906360dd1ec566a6184ef02f96c919cd",
-
"sha256": "1ckp7alxng8r505zggqp82v3w4mlfpgixsl1v36gzgqlcb6hqzs9"
+
"commit": "72cc23eeb9d696a22c6054d4de0a75a9c18fe46b",
+
"sha256": "05a64c2wmvky5m1vb9072scix2a6q7na448hf96aj40q3qbkh0ga"
···
"repo": "aimebertrand/timu-caribbean-theme",
"unstable": {
"version": [
-
20230911,
-
2112
+
20231022,
+
1816
-
"commit": "ab1c4d0df4f4a8fcb4eaa78dbf9d6f6f3e834462",
-
"sha256": "0kyqnsdgj4wdfc3qnkjnncs6jnbjza398krbmcsqlvqg1c23ilgd"
+
"commit": "5fc2cad6c91748afa98d1df2b65b3b5329d21b03",
+
"sha256": "0hsn3q36pdgg4w2nxmszsr7d3n0wkc291i1v04nakknhw8fx6b0m"
"stable": {
"version": [
···
"repo": "aimebertrand/timu-macos-theme",
"unstable": {
"version": [
-
20230911,
-
2059
+
20231022,
+
1832
-
"commit": "bbd88a1460f184cc8701a361e0eeea34f71accaa",
-
"sha256": "0s25b24mbrbkfvybjzx4015z2sw159va8hyd530f7q5wny532yd9"
+
"commit": "f1ecdf8415e4cb3d35019af5b2ad0d6bea96e610",
+
"sha256": "0w1xh0i8q2d84f9d5gw61nn7a8xqyllm427qnnjsa5wjlhgvilfl"
"stable": {
"version": [
···
"repo": "aimebertrand/timu-spacegrey-theme",
"unstable": {
"version": [
-
20231002,
-
1522
+
20231010,
+
2137
-
"commit": "145ee85b9d65bbef32687681d65f72e227e52225",
-
"sha256": "1li13z0202qrjzipw9azy9yp028rrzyjkb9538cnf297caqdmqcl"
+
"commit": "fbe0aacc0d1010631ba8b2848b78e26514ce60c6",
+
"sha256": "0h8kkzgfz5hkynlynml0pgkq9j6fzzq33hl9ww8mq1gzzq6n62db"
"stable": {
"version": [
···
+
"ename": "tmux-mode",
+
"commit": "382cb915901971ff5e9b32156cbeb5639c3bf20f",
+
"sha256": "0k6hdhyc5w2axmik49dp5hfk1c5hprdyam02v4cm4nhdwbv1ma01",
+
"fetcher": "github",
+
"repo": "nverno/tmux-mode",
+
"unstable": {
+
"version": [
+
20231026,
+
2118
+
],
+
"commit": "632fc7981ceaea19ab2af0e47acae926354ab453",
+
"sha256": "1j4gr3wmh6wrr6lj9bjx7gg34qqywb54309vq28x6y4k9ng966zb"
+
}
+
},
+
{
"ename": "tmux-pane",
"commit": "8bc165e115a2c457e44ac2762cf6a9f07f1b99c4",
"sha256": "0mv5y367i1wmk5kp8ms09xhrwvb4cwa08p39qy6mkakdhiby5m9q",
···
"repo": "magit/transient",
"unstable": {
"version": [
-
20231019,
-
1421
+
20231027,
+
2121
"deps": [
-
"compat"
+
"compat",
+
"seq"
-
"commit": "a81eff942bb2cd5bb5b6450dcf7db78c876abd1f",
-
"sha256": "05y7qppq0ldmsmy61vc9zfnqgsijjsjv9q3gi2dsx37rm3jy9r7g"
+
"commit": "a8829875b25c0dc8cbd7163b6617c436365897b5",
+
"sha256": "0adk7fmz2ina9wkq8qbjc5jd677khy4f0mbzj4qfa7wsrwnxh69s"
"stable": {
"version": [
···
"repo": "Alexander-Miller/treemacs",
"unstable": {
"version": [
-
20231016,
-
2107
+
20231024,
+
1919
"deps": [
"ace-window",
···
"pfuture",
-
"commit": "474febd6c3f2d5059ed26c13277b9a3a8a5a8a82",
-
"sha256": "0kzaf06aszv1gcmaszv31kxj1sz20x0ilkzgpi3sxqavcb03mad9"
+
"commit": "95c07470b281a1eaa3ce88290748bcb2045a163a",
+
"sha256": "01d3kw4hl0vkqfw08nb9ldbhsd6s7shrmaxgjiahwxfkr63gvdjn"
"stable": {
"version": [
···
"repo": "ehawkvu/tsort.el",
"unstable": {
"version": [
-
20231015,
-
2136
+
20231027,
+
334
+
],
+
"deps": [
+
"compat"
-
"commit": "844a983841798a5e9de4a442674d691fea6d09ff",
-
"sha256": "06kz39dflgzpx4afb3qwgx2gyahahhwqsdabxip99wfllhsqwa32"
+
"commit": "3f9cffdbd4ac83a6a69dd4ccbb135e95950494ad",
+
"sha256": "0zssgrkzsn3q2g8ayhs31c408yhsggmyrzfscklvvdhmgg5qcabj"
···
"repo": "swflint/emacs-universal-sidecar",
"unstable": {
"version": [
-
20230923,
-
31
+
20231023,
+
219
"deps": [
"magit-section"
-
"commit": "0cec1fa196df55cfb13c1e2ee226b55ff740e7f2",
-
"sha256": "04fvzla00lbbz94ihi9vn5cwxpj4ivfcxifjr19h8nycm7h2xs8n"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
"stable": {
"version": [
-
0
+
1
"deps": [
"magit-section"
-
"commit": "0cec1fa196df55cfb13c1e2ee226b55ff740e7f2",
-
"sha256": "04fvzla00lbbz94ihi9vn5cwxpj4ivfcxifjr19h8nycm7h2xs8n"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
···
"repo": "swflint/emacs-universal-sidecar",
"unstable": {
"version": [
-
20231002,
-
22
+
20231023,
+
219
"deps": [
"bibtex-completion",
"elfeed",
"universal-sidecar"
-
"commit": "8e9b4ce2faf304aedc485e7bedb6f0e460d9ea09",
-
"sha256": "1f2km4v4pvjmlr4fp5q51x0ycq0na8b6yd3las50slrf01wd3f48"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
"stable": {
"version": [
-
0
+
1
"deps": [
"bibtex-completion",
"elfeed",
"universal-sidecar"
-
"commit": "0cec1fa196df55cfb13c1e2ee226b55ff740e7f2",
-
"sha256": "04fvzla00lbbz94ihi9vn5cwxpj4ivfcxifjr19h8nycm7h2xs8n"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
···
"repo": "swflint/emacs-universal-sidecar",
"unstable": {
"version": [
-
20230925,
-
9
+
20231023,
+
219
"deps": [
"elfeed",
"elfeed-score",
"universal-sidecar"
-
"commit": "dfcd0cd9d8f1e7fc3d8d4d1ed1da32d657acb088",
-
"sha256": "1mjkdzczkzpplfa23kwyk8iy57khzpxbclfbgyijf9i8i1cpnc53"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
"stable": {
"version": [
-
0
+
1
"deps": [
-
"bibtex-completion",
"elfeed",
"elfeed-score",
"universal-sidecar"
-
"commit": "0cec1fa196df55cfb13c1e2ee226b55ff740e7f2",
-
"sha256": "04fvzla00lbbz94ihi9vn5cwxpj4ivfcxifjr19h8nycm7h2xs8n"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
···
"repo": "swflint/emacs-universal-sidecar",
"unstable": {
"version": [
-
20231008,
-
1742
+
20231023,
+
219
"deps": [
"org-roam",
"universal-sidecar"
-
"commit": "d8311910fae3ea65fb4153e3872ec24b64d5d8aa",
-
"sha256": "0ckm8a0ihj4ds3w6ls8yzq5z6qy24ck3gdyd3ii3zz5rh01galf8"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
"stable": {
"version": [
-
0
+
1
"deps": [
"org-roam",
"universal-sidecar"
-
"commit": "0cec1fa196df55cfb13c1e2ee226b55ff740e7f2",
-
"sha256": "04fvzla00lbbz94ihi9vn5cwxpj4ivfcxifjr19h8nycm7h2xs8n"
+
"commit": "85dd85d1f5167d9aca17e4a537dd699ea52d3864",
+
"sha256": "039g112wj3aj5fldlxs6wbni8gfxb1qp0qai8ix305afjkkz9022"
···
"repo": "nverno/vimscript-ts-mode",
"unstable": {
"version": [
-
20231020,
-
1008
+
20231022,
+
1758
-
"commit": "84c061f4f80f0768fbe2a8e4b7fb337da83bd150",
-
"sha256": "1w648mk17ysvcx70nawdp83df15q52qwq9nk5hyamn00ldw6wl0s"
+
"commit": "20aea980ef94d643100638f2528aafc4b136e20c",
+
"sha256": "141mhzqv0fchcp6r6r3w8nismxa6a455d4z0ap6hcla2mxvszrwh"
···
"repo": "emacs-vs/vs-dark-theme",
"unstable": {
"version": [
-
20231020,
-
542
+
20231028,
+
356
-
"commit": "2ec99feff875e0e8a850cb423c798da0315f1bd1",
-
"sha256": "0a03xg4dg07wxmdxsq2173zn27zs63h5gvfqx9f4cysxxkzc4277"
+
"commit": "1f6f0afecc4576cc1cee573f82efe465042507f3",
+
"sha256": "0yv1gs6prj4qkwav6yjfxrck8y29pbsnidfhnap2vx2rfb94q1k8"
"stable": {
"version": [
···
"repo": "emacs-vs/vs-light-theme",
"unstable": {
"version": [
-
20231020,
-
542
+
20231028,
+
356
-
"commit": "6d64f04575d9629ecf240f73fd8e051cae7f0127",
-
"sha256": "1knkajh1zlhvc1q3ljcjp5ib1p6dx9f7crvvdx75yi2gii6q09ah"
+
"commit": "174e1dffc26998d8bc074f1f78068a8e612d4be3",
+
"sha256": "01h55rw65wk630l868lm3s1zkggksmvf1c0ywhnz0l4a570f859h"
"stable": {
"version": [
···
"repo": "emacs-w3m/emacs-w3m",
"unstable": {
"version": [
-
20231003,
-
113
+
20231023,
+
653
-
"commit": "3aa5d009f57a4d416127080938c846f4234d3619",
-
"sha256": "1c4i7ghap5qrgh1qc1szg374vwjqpla7zhi5dyrjn4yqz68vfv3m"
+
"commit": "55baf2bcb1a583d3baae1d37ad0e17b0480ffd02",
+
"sha256": "1vqr7bmairp70lrx9gm80w7qr2jxiijg5w1na36k7if4wikfg4kl"
···
"repo": "fxbois/web-mode",
"unstable": {
"version": [
-
20230911,
-
1817
+
20231025,
+
1927
-
"commit": "44c6bfa3626f476750ed3c1c0d253607c1606716",
-
"sha256": "14gmmsrqdhhvn7m9467phm4dr4c0jr7lfqpdmxj0rs85p2fsspmd"
+
"commit": "848fce94de202541cd3fcd35e9c9d22783e9e828",
+
"sha256": "1yypnb36hr04sgwn486j18a2z5i3i5fbwnjdw6yn2v59mbgqfdfz"
"stable": {
"version": [
···
"repo": "habamax/wildcharm-theme",
"unstable": {
"version": [
-
20231015,
-
30
+
20231024,
+
2323
-
"commit": "14f29cfa8d185b544a481012e3bc33cbe5338dd4",
-
"sha256": "1z4rj4bryfs8x0wyg0bk27pxykaszkrlhjs7cgg99s9ihs963zqf"
+
"commit": "83e902cfd9526cdefc973ce9b3f3d7415beb59f5",
+
"sha256": "1yjfywf8spi23zdcdj412msgyannwinvfgdarwbmiwpj9h8ll6qh"
"stable": {
"version": [
···
"repo": "habamax/wildcharm-theme",
"unstable": {
"version": [
-
20231015,
-
30
+
20231024,
+
2311
-
"commit": "14f29cfa8d185b544a481012e3bc33cbe5338dd4",
-
"sha256": "1z4rj4bryfs8x0wyg0bk27pxykaszkrlhjs7cgg99s9ihs963zqf"
+
"commit": "cd887cf61f73a4cf044bd01cec60be7324660f9b",
+
"sha256": "15ngcigdx6yayg93kiiraqq2rng0zx54kbni5cgh0gnf673yqzwy"
"stable": {
"version": [
···
"repo": "joaotavora/yasnippet",
"unstable": {
"version": [
-
20200604,
-
246
+
20230914,
+
1400
"deps": [
"cl-lib"
-
"commit": "5cbdbf0d2015540c59ed8ee0fcf4788effdf75b6",
-
"sha256": "1cp1sgmfc8pgcy24l77aam833710mjp2y3m8l8c90677wxqr44vl"
+
"commit": "52a1c5031912243c791c55e0fe345d04f219b507",
+
"sha256": "0gmkhv8slzshgn9bcamp49szf24nflqcfn8c1f9iff36vviyibgf"
"stable": {
"version": [
···
"repo": "elken/yasnippet-capf",
"unstable": {
"version": [
-
20230813,
-
1906
+
20231024,
+
1604
"deps": [
"yasnippet"
-
"commit": "40654214db7a44db3a99321447632b43a10fae57",
-
"sha256": "1kywl7jblrmixr0vwycpil5hyk4p5qlc3gxg9w25xga4jj91r663"
+
"commit": "a0a6b1c2bb6decdad5cf9b74202f0042f494a6ab",
+
"sha256": "0fzkdl32cblv8rc25d76hq90m40kbkkswz6m8f4fx2m8rw2ysfr8"
pkgs/applications/editors/emacs/generic.nix pkgs/applications/editors/emacs/make-emacs.nix
+4 -4
pkgs/applications/editors/emacs/sources.nix
···
};
in
{
-
emacs28 = import ./generic.nix (mkArgs {
+
emacs28 = import ./make-emacs.nix (mkArgs {
pname = "emacs";
version = "28.2";
variant = "mainline";
···
hash = "sha256-4oSLcUDR0MOEt53QOiZSVU8kPJ67GwugmBxdX3F15Ag=";
});
-
emacs29 = import ./generic.nix (mkArgs {
+
emacs29 = import ./make-emacs.nix (mkArgs {
pname = "emacs";
version = "29.1";
variant = "mainline";
···
hash = "sha256-3HDCwtOKvkXwSULf3W7YgTz4GV8zvYnh2RrL28qzGKg=";
});
-
emacs28-macport = import ./generic.nix (mkArgs {
+
emacs28-macport = import ./make-emacs.nix (mkArgs {
pname = "emacs-mac";
version = "28.2";
variant = "macport";
···
hash = "sha256-Ne2jQ2nVLNiQmnkkOXVc5AkLVkTpm8pFC7VNY2gQjPE=";
});
-
emacs29-macport = import ./generic.nix (mkArgs {
+
emacs29-macport = import ./make-emacs.nix (mkArgs {
pname = "emacs-mac";
version = "29.1";
variant = "macport";
+3 -3
pkgs/applications/file-managers/walk/default.nix
···
buildGoModule rec {
pname = "walk";
-
version = "1.6.2";
+
version = "1.7.0";
src = fetchFromGitHub {
owner = "antonmedv";
repo = "walk";
rev = "v${version}";
-
hash = "sha256-Wo8i0nPAuzADLXlsEho9TSSbNh3d13iNsXXx5onPnIs=";
+
hash = "sha256-hif62WAyJyFHpJoP3ph7gJk1QkEL7qkcv/BJuoXkwFU=";
};
-
vendorHash = "sha256-AmgCyq+N+EMdpIUCe6Lzd8bDXHsbOzclsHPp+H5ROMc=";
+
vendorHash = "sha256-e292ke0JiFEopLSozb+FkpwzSuhpIs/PdWOYuNI2M2o=";
meta = with lib; {
description = "Terminal file manager";
+1
pkgs/applications/misc/gimoji/default.nix
···
description = "Easily add emojis to your git commit messages";
homepage = "https://github.com/zeenix/gimoji";
license = licenses.mit;
+
mainProgram = "gimoji";
maintainers = with maintainers; [ a-kenji ];
};
}
+4 -4
pkgs/applications/networking/browsers/chromium/update.py
···
"""Maps a channel name to the corresponding main Nixpkgs attribute name."""
if channel_name == 'stable':
return 'chromium'
-
if channel_name == 'beta':
-
return 'chromiumBeta'
-
if channel_name == 'dev':
-
return 'chromiumDev'
if channel_name == 'ungoogled-chromium':
return 'ungoogled-chromium'
print(f'Error: Unexpected channel: {channel_name}', file=sys.stderr)
···
# If we've already found a newer release for this channel, we're
# no longer interested in it.
if channel_name in channels:
+
continue
+
+
# We only look for channels that are listed in our version pin file.
+
if channel_name not in last_channels:
continue
# If we're back at the last release we used, we don't need to
-26
pkgs/applications/networking/browsers/chromium/upstream-info.nix
···
{
-
beta = {
-
deps = {
-
gn = {
-
rev = "811d332bd90551342c5cbd39e133aa276022d7f8";
-
hash = "sha256-WCq+PNkWxWpssUOQyQbAZ5l6k+hg+qGMsoaMG0Ybj0o=";
-
url = "https://gn.googlesource.com/gn";
-
version = "2023-08-01";
-
};
-
};
-
hash = "sha256-spzY2u5Wk52BrKCk9aQOEp/gbppaGVLCQxXa+3JuajA=";
-
hash_deb_amd64 = "sha256-eTeEeNa4JuCW81+SUAyrKi3S0/TJNTAoTktWQ0JsgYc=";
-
version = "117.0.5938.22";
-
};
-
dev = {
-
deps = {
-
gn = {
-
rev = "cc56a0f98bb34accd5323316e0292575ff17a5d4";
-
hash = "sha256-SwlET5h5xtDlQvlt8wbG73ZfUWJr4hlWc+uQsBH5x9M=";
-
url = "https://gn.googlesource.com/gn";
-
version = "2023-08-10";
-
};
-
};
-
hash = "sha256-W0fZuvv9jz03ibQqB6MG45aw2zPklfxoFzZzr+kRuJk=";
-
hash_deb_amd64 = "sha256-XWxRFLFxBqnvKcoB5HErwVbtHCGYRteLeTv44zVMwIc=";
-
version = "118.0.5966.0";
-
};
stable = {
chromedriver = {
hash_darwin = "sha256-ugsxRhIPtDD7Y4/PsIc8Apqrtyo4uiVKoLmtRvQaJ3k=";
+2 -2
pkgs/applications/networking/cluster/bosh-cli/default.nix
···
buildGoModule rec {
pname = "bosh-cli";
-
version = "7.4.0";
+
version = "7.4.1";
src = fetchFromGitHub {
owner = "cloudfoundry";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-Hxak76S3+i5G81Xv4wdFvR/+vg5Eh86YjeqRzNUmfh4=";
+
sha256 = "sha256-T8fPD0i15U/PzDOAVP0sifLYFHr76jD1o7q+nn+N0cY=";
};
vendorHash = null;
+31 -10
pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/default.nix
···
{ lib
, fetchFromGitHub
+
, fetchurl
, fetchpatch
+
, fetchpatch2
, callPackage
, pkg-config
, cmake
···
, libopus
, alsa-lib
, libpulseaudio
+
, perlPackages
, pipewire
, range-v3
, tl-expected
···
, libpsl
, brotli
, microsoft-gsl
+
, mm-common
, rlottie
, stdenv
, nix-update-script
···
cxxStandard = "20";
};
};
+
glibmm = glibmm_2_68.overrideAttrs (attrs: {
+
version = "2.78.0";
+
src = fetchurl {
+
url = "mirror://gnome/sources/glibmm/2.78/glibmm-2.78.0.tar.xz";
+
hash = "sha256-XS6HJWSZbwKgbYu6w2d+fDlK+LAN0VJq69R6+EKj71A=";
+
};
+
patches = [
+
# Revert "Glib, Gio: Add new API from glib 2.77.0"
+
(fetchpatch2 {
+
url = "https://github.com/GNOME/glibmm/commit/5b9032c0298cbb49c3ed90d5f71f2636751fa638.patch";
+
revert = true;
+
hash = "sha256-UzrzIOnXh9pxuTDQsp6mnunDNNtc86hE9tCe1NgKsyo=";
+
})
+
];
+
mesonFlags = [
+
"-Dmaintainer-mode=true"
+
"-Dbuild-documentation=false"
+
];
+
nativeBuildInputs = attrs.nativeBuildInputs ++ [
+
mm-common
+
perlPackages.perl
+
perlPackages.XMLParser
+
];
+
});
in
stdenv.mkDerivation rec {
pname = "telegram-desktop";
-
version = "4.8.4";
+
version = "4.11.1";
src = fetchFromGitHub {
owner = "telegramdesktop";
repo = "tdesktop";
rev = "v${version}";
fetchSubmodules = true;
-
hash = "sha256-DRVFngQ4geJx2/7pT1VJzkcBZnVGgDvcGGUr9r38gSU=";
+
hash = "sha256-tWUdSFr93plCuQkA8SE+GZeAyZcYPUoFd0sIOyEuobs=";
};
patches = [
···
(fetchpatch {
url = "https://salsa.debian.org/debian/telegram-desktop/-/raw/09b363ed5a4fcd8ecc3282b9bfede5fbb83f97ef/debian/patches/Disable-register-custom-scheme.patch";
hash = "sha256-B8X5lnSpwwdp1HlvyXJWQPybEN+plOwimdV5gW6aY2Y=";
-
})
-
# lib_base: Add missing include for Qt 6.6
-
(fetchpatch {
-
url = "https://github.com/desktop-app/lib_base/commit/5ca91dbb811c84591780236abc31431e313faf39.patch";
-
stripLen = 1;
-
extraPrefix = "Telegram/lib_base/";
-
hash = "sha256-eZkyMnPaAmUFYXiCmPhLRTw2Xdx0lylY+UVOckCsiaA=";
})
];
···
range-v3
tl-expected
hunspell
-
glibmm_2_68
+
glibmm
webkitgtk_6_0
jemalloc
rnnoise
+3 -3
pkgs/applications/networking/instant-messengers/telegram/telegram-desktop/tg_owt.nix
···
stdenv.mkDerivation {
pname = "tg_owt";
-
version = "unstable-2023-08-15";
+
version = "unstable-2023-10-17";
src = fetchFromGitHub {
owner = "desktop-app";
repo = "tg_owt";
-
rev = "0532942ac6176a66ef184fb728a4cbb02958fc0b";
-
sha256 = "sha256-FcRXxu0Nc8qHQl8PoA92MeuhpV+vgl658uILEpmDy3A=";
+
rev = "be153adaa363b2b13242466ad5b7b87f61301639";
+
sha256 = "sha256-/hZNMV+IG00YzxH66Gh/BW9JdGFfsfnM93eD6oB3tlI=";
fetchSubmodules = true;
};
+5198
pkgs/by-name/sv/svix-server/Cargo.lock
···
+
# This file is automatically @generated by Cargo.
+
# It is not intended for manual editing.
+
version = 3
+
+
[[package]]
+
name = "addr2line"
+
version = "0.20.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
+
dependencies = [
+
"gimli",
+
]
+
+
[[package]]
+
name = "adler"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
+
+
[[package]]
+
name = "aead"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
+
dependencies = [
+
"generic-array",
+
]
+
+
[[package]]
+
name = "ahash"
+
version = "0.8.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
+
dependencies = [
+
"cfg-if",
+
"getrandom",
+
"once_cell",
+
"serde",
+
"version_check",
+
]
+
+
[[package]]
+
name = "aho-corasick"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "aide"
+
version = "0.10.0"
+
source = "git+https://github.com/svix/aide?rev=e6e9af3#e6e9af320757130074ca9cd537d342b5496d527d"
+
dependencies = [
+
"aide-macros",
+
"axum",
+
"bytes",
+
"cfg-if",
+
"http",
+
"indexmap 1.9.3",
+
"schemars",
+
"serde",
+
"serde_json",
+
"serde_qs",
+
"thiserror",
+
"tower-layer",
+
"tower-service",
+
"tracing",
+
]
+
+
[[package]]
+
name = "aide-macros"
+
version = "0.6.0"
+
source = "git+https://github.com/svix/aide?rev=e6e9af3#e6e9af320757130074ca9cd537d342b5496d527d"
+
dependencies = [
+
"darling",
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "aliasable"
+
version = "0.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
+
+
[[package]]
+
name = "allocator-api2"
+
version = "0.2.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
+
+
[[package]]
+
name = "amq-protocol"
+
version = "7.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1d40d8b2465c7959dd40cee32ba6ac334b5de57e9fca0cc756759894a4152a5d"
+
dependencies = [
+
"amq-protocol-tcp",
+
"amq-protocol-types",
+
"amq-protocol-uri",
+
"cookie-factory",
+
"nom",
+
"serde",
+
]
+
+
[[package]]
+
name = "amq-protocol-tcp"
+
version = "7.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9cb2100adae7da61953a2c3a01935d86caae13329fadce3333f524d6d6ce12e2"
+
dependencies = [
+
"amq-protocol-uri",
+
"tcp-stream",
+
"tracing",
+
]
+
+
[[package]]
+
name = "amq-protocol-types"
+
version = "7.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "156ff13c8a3ced600b4e54ed826a2ae6242b6069d00dd98466827cef07d3daff"
+
dependencies = [
+
"cookie-factory",
+
"nom",
+
"serde",
+
"serde_json",
+
]
+
+
[[package]]
+
name = "amq-protocol-uri"
+
version = "7.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "751bbd7d440576066233e740576f1b31fdc6ab86cfabfbd48c548de77eca73e4"
+
dependencies = [
+
"amq-protocol-types",
+
"percent-encoding",
+
"url",
+
]
+
+
[[package]]
+
name = "android-tzdata"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
+
+
[[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 = "anstream"
+
version = "0.3.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0ca84f3628370c59db74ee214b3263d58f9aadd9b4fe7e711fd87dc452b7f163"
+
dependencies = [
+
"anstyle",
+
"anstyle-parse",
+
"anstyle-query",
+
"anstyle-wincon",
+
"colorchoice",
+
"is-terminal",
+
"utf8parse",
+
]
+
+
[[package]]
+
name = "anstyle"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3a30da5c5f2d5e72842e00bcb57657162cdabef0931f40e2deb9b4140440cecd"
+
+
[[package]]
+
name = "anstyle-parse"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "938874ff5980b03a87c5524b3ae5b59cf99b1d6bc836848df7bc5ada9643c333"
+
dependencies = [
+
"utf8parse",
+
]
+
+
[[package]]
+
name = "anstyle-query"
+
version = "1.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
+
dependencies = [
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "anstyle-wincon"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "180abfa45703aebe0093f79badacc01b8fd4ea2e35118747e5811127f926e188"
+
dependencies = [
+
"anstyle",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "anyhow"
+
version = "1.0.72"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3b13c32d80ecc7ab747b80c3784bce54ee8a7a0cc4fbda9bf4cda2cf6fe90854"
+
+
[[package]]
+
name = "async-channel"
+
version = "1.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
+
dependencies = [
+
"concurrent-queue",
+
"event-listener",
+
"futures-core",
+
]
+
+
[[package]]
+
name = "async-executor"
+
version = "1.5.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb"
+
dependencies = [
+
"async-lock",
+
"async-task",
+
"concurrent-queue",
+
"fastrand 1.9.0",
+
"futures-lite",
+
"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-global-executor-trait"
+
version = "2.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "33dd14c5a15affd2abcff50d84efd4009ada28a860f01c14f9d654f3e81b3f75"
+
dependencies = [
+
"async-global-executor",
+
"async-trait",
+
"executor-trait",
+
]
+
+
[[package]]
+
name = "async-io"
+
version = "1.13.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
+
dependencies = [
+
"async-lock",
+
"autocfg",
+
"cfg-if",
+
"concurrent-queue",
+
"futures-lite",
+
"log",
+
"parking",
+
"polling",
+
"rustix 0.37.23",
+
"slab",
+
"socket2 0.4.9",
+
"waker-fn",
+
]
+
+
[[package]]
+
name = "async-lock"
+
version = "2.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7"
+
dependencies = [
+
"event-listener",
+
]
+
+
[[package]]
+
name = "async-reactor-trait"
+
version = "1.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7a6012d170ad00de56c9ee354aef2e358359deb1ec504254e0e5a3774771de0e"
+
dependencies = [
+
"async-io",
+
"async-trait",
+
"futures-core",
+
"reactor-trait",
+
]
+
+
[[package]]
+
name = "async-stream"
+
version = "0.3.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
+
dependencies = [
+
"async-stream-impl",
+
"futures-core",
+
"pin-project-lite",
+
]
+
+
[[package]]
+
name = "async-stream-impl"
+
version = "0.3.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "async-task"
+
version = "4.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae"
+
+
[[package]]
+
name = "async-trait"
+
version = "0.1.72"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cc6dde6e4ed435a4c1ee4e73592f5ba9da2151af10076cc04858746af9352d09"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "atoi"
+
version = "2.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
+
dependencies = [
+
"num-traits",
+
]
+
+
[[package]]
+
name = "atomic"
+
version = "0.5.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c59bdb34bc650a32731b31bd8f0829cc15d24a708ee31559e0bb34f2bc320cba"
+
+
[[package]]
+
name = "atomic-waker"
+
version = "1.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3"
+
+
[[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.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2fb79c228270dcf2426e74864cabc94babb5dbab01a4314e702d2f16540e1591"
+
dependencies = [
+
"async-trait",
+
"axum-core",
+
"bitflags 1.3.2",
+
"bytes",
+
"futures-util",
+
"headers",
+
"http",
+
"http-body",
+
"hyper",
+
"itoa",
+
"matchit",
+
"memchr",
+
"mime",
+
"percent-encoding",
+
"pin-project-lite",
+
"rustversion",
+
"serde",
+
"serde_json",
+
"serde_path_to_error",
+
"serde_urlencoded",
+
"sync_wrapper",
+
"tokio",
+
"tower",
+
"tower-http 0.3.5",
+
"tower-layer",
+
"tower-service",
+
]
+
+
[[package]]
+
name = "axum-core"
+
version = "0.3.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "759fa577a247914fd3f7f76d62972792636412fbfd634cd452f6a385a74d2d2c"
+
dependencies = [
+
"async-trait",
+
"bytes",
+
"futures-util",
+
"http",
+
"http-body",
+
"mime",
+
"rustversion",
+
"tower-layer",
+
"tower-service",
+
]
+
+
[[package]]
+
name = "axum-server"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "197b070de3ae5fc503d531d4dc7680e016438c2ffc848a1fefebc5c53f35cc17"
+
dependencies = [
+
"bytes",
+
"futures-util",
+
"http",
+
"http-body",
+
"hyper",
+
"openssl",
+
"pin-project-lite",
+
"tokio",
+
"tokio-openssl",
+
"tower-service",
+
]
+
+
[[package]]
+
name = "backtrace"
+
version = "0.3.68"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
+
dependencies = [
+
"addr2line",
+
"cc",
+
"cfg-if",
+
"libc",
+
"miniz_oxide",
+
"object",
+
"rustc-demangle",
+
]
+
+
[[package]]
+
name = "base-encode"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a17bd29f7c70f32e9387f4d4acfa5ea7b7749ef784fb78cf382df97069337b8c"
+
+
[[package]]
+
name = "base16ct"
+
version = "0.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
+
+
[[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.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
+
+
[[package]]
+
name = "base64ct"
+
version = "1.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
+
+
[[package]]
+
name = "bb8"
+
version = "0.8.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "98b4b0f25f18bcdc3ac72bdb486ed0acf7e185221fd4dc985bc15db5800b0ba2"
+
dependencies = [
+
"async-trait",
+
"futures-channel",
+
"futures-util",
+
"parking_lot",
+
"tokio",
+
]
+
+
[[package]]
+
name = "bb8-redis"
+
version = "0.13.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cd456361ba8e4e7f5fe58e1697ce078a149c85ebce13bf9c6b483d3f566fc9c3"
+
dependencies = [
+
"async-trait",
+
"bb8",
+
"redis",
+
]
+
+
[[package]]
+
name = "binstring"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7e0d60973d9320722cb1206f412740e162a33b8547ea8d6be75d7cff237c7a85"
+
+
[[package]]
+
name = "bit-set"
+
version = "0.5.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
+
dependencies = [
+
"bit-vec",
+
]
+
+
[[package]]
+
name = "bit-vec"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
+
+
[[package]]
+
name = "bitflags"
+
version = "1.3.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
+
+
[[package]]
+
name = "bitflags"
+
version = "2.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "blake2"
+
version = "0.10.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
+
dependencies = [
+
"digest",
+
]
+
+
[[package]]
+
name = "block-buffer"
+
version = "0.10.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
+
dependencies = [
+
"generic-array",
+
]
+
+
[[package]]
+
name = "block-padding"
+
version = "0.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
+
dependencies = [
+
"generic-array",
+
]
+
+
[[package]]
+
name = "blocking"
+
version = "1.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65"
+
dependencies = [
+
"async-channel",
+
"async-lock",
+
"async-task",
+
"atomic-waker",
+
"fastrand 1.9.0",
+
"futures-lite",
+
"log",
+
]
+
+
[[package]]
+
name = "bumpalo"
+
version = "3.13.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
+
+
[[package]]
+
name = "bytecount"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2c676a478f63e9fa2dd5368a42f28bba0d6c560b775f38583c8bbaa7fcd67c9c"
+
+
[[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 = "cbc"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
+
dependencies = [
+
"cipher 0.4.4",
+
]
+
+
[[package]]
+
name = "cc"
+
version = "1.0.79"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
+
+
[[package]]
+
name = "cfg-if"
+
version = "1.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
+
+
[[package]]
+
name = "chacha20"
+
version = "0.8.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5c80e5460aa66fe3b91d40bcbdab953a597b60053e34d684ac6903f863b680a6"
+
dependencies = [
+
"cfg-if",
+
"cipher 0.3.0",
+
"cpufeatures",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "chacha20poly1305"
+
version = "0.9.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a18446b09be63d457bbec447509e85f662f32952b035ce892290396bc0b0cff5"
+
dependencies = [
+
"aead",
+
"chacha20",
+
"cipher 0.3.0",
+
"poly1305",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "chrono"
+
version = "0.4.26"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
+
dependencies = [
+
"android-tzdata",
+
"iana-time-zone",
+
"js-sys",
+
"num-traits",
+
"serde",
+
"time 0.1.45",
+
"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 = "cipher"
+
version = "0.4.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
+
dependencies = [
+
"crypto-common",
+
"inout",
+
]
+
+
[[package]]
+
name = "clap"
+
version = "4.3.19"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d"
+
dependencies = [
+
"clap_builder",
+
"clap_derive",
+
"once_cell",
+
]
+
+
[[package]]
+
name = "clap_builder"
+
version = "4.3.19"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1"
+
dependencies = [
+
"anstream",
+
"anstyle",
+
"clap_lex",
+
"strsim",
+
]
+
+
[[package]]
+
name = "clap_derive"
+
version = "4.3.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "54a9bb5758fc5dfe728d1019941681eccaf0cf8a4189b692a0ee2f2ecf90a050"
+
dependencies = [
+
"heck 0.4.1",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "clap_lex"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b"
+
+
[[package]]
+
name = "coarsetime"
+
version = "0.1.23"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a90d114103adbc625300f346d4d09dfb4ab1c4a8df6868435dd903392ecf4354"
+
dependencies = [
+
"libc",
+
"once_cell",
+
"wasi 0.11.0+wasi-snapshot-preview1",
+
"wasm-bindgen",
+
]
+
+
[[package]]
+
name = "colorchoice"
+
version = "1.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
+
+
[[package]]
+
name = "combine"
+
version = "4.6.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
+
dependencies = [
+
"bytes",
+
"futures-core",
+
"memchr",
+
"pin-project-lite",
+
"tokio",
+
"tokio-util 0.7.8",
+
]
+
+
[[package]]
+
name = "concurrent-queue"
+
version = "2.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c"
+
dependencies = [
+
"crossbeam-utils",
+
]
+
+
[[package]]
+
name = "const-oid"
+
version = "0.9.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
+
+
[[package]]
+
name = "cookie-factory"
+
version = "0.3.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "396de984970346b0d9e93d1415082923c679e5ae5c3ee3dcbd104f5610af126b"
+
+
[[package]]
+
name = "core-foundation"
+
version = "0.9.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
+
dependencies = [
+
"core-foundation-sys",
+
"libc",
+
]
+
+
[[package]]
+
name = "core-foundation-sys"
+
version = "0.8.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
+
+
[[package]]
+
name = "cpufeatures"
+
version = "0.2.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
+
dependencies = [
+
"libc",
+
]
+
+
[[package]]
+
name = "crc"
+
version = "3.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
+
dependencies = [
+
"crc-catalog",
+
]
+
+
[[package]]
+
name = "crc-catalog"
+
version = "2.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
+
+
[[package]]
+
name = "crc16"
+
version = "0.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "338089f42c427b86394a5ee60ff321da23a5c89c9d89514c829687b26359fcff"
+
+
[[package]]
+
name = "crossbeam-channel"
+
version = "0.5.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
+
dependencies = [
+
"cfg-if",
+
"crossbeam-utils",
+
]
+
+
[[package]]
+
name = "crossbeam-queue"
+
version = "0.3.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
+
dependencies = [
+
"cfg-if",
+
"crossbeam-utils",
+
]
+
+
[[package]]
+
name = "crossbeam-utils"
+
version = "0.8.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
+
dependencies = [
+
"cfg-if",
+
]
+
+
[[package]]
+
name = "crypto-bigint"
+
version = "0.5.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cf4c2f4e1afd912bc40bfd6fed5d9dc1f288e0ba01bfcc835cc5bc3eb13efe15"
+
dependencies = [
+
"generic-array",
+
"rand_core",
+
"subtle",
+
"zeroize",
+
]
+
+
[[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 = "ct-codecs"
+
version = "1.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f3b7eb4404b8195a9abb6356f4ac07d8ba267045c8d6d220ac4dc992e6cc75df"
+
+
[[package]]
+
name = "darling"
+
version = "0.14.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
+
dependencies = [
+
"darling_core",
+
"darling_macro",
+
]
+
+
[[package]]
+
name = "darling_core"
+
version = "0.14.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
+
dependencies = [
+
"fnv",
+
"ident_case",
+
"proc-macro2",
+
"quote",
+
"strsim",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "darling_macro"
+
version = "0.14.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
+
dependencies = [
+
"darling_core",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "data-encoding"
+
version = "2.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
+
+
[[package]]
+
name = "debugid"
+
version = "0.8.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
+
dependencies = [
+
"serde",
+
"uuid",
+
]
+
+
[[package]]
+
name = "der"
+
version = "0.6.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
+
dependencies = [
+
"const-oid",
+
"pem-rfc7468 0.6.0",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "der"
+
version = "0.7.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
+
dependencies = [
+
"const-oid",
+
"pem-rfc7468 0.7.0",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "derivative"
+
version = "2.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "des"
+
version = "0.8.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ffdd80ce8ce993de27e9f063a444a4d53ce8e8db4c1f00cc03af5ad5a9867a1e"
+
dependencies = [
+
"cipher 0.4.4",
+
]
+
+
[[package]]
+
name = "digest"
+
version = "0.10.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
+
dependencies = [
+
"block-buffer",
+
"const-oid",
+
"crypto-common",
+
"subtle",
+
]
+
+
[[package]]
+
name = "doc-comment"
+
version = "0.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
+
+
[[package]]
+
name = "dotenv"
+
version = "0.15.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
+
+
[[package]]
+
name = "dotenvy"
+
version = "0.15.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
+
+
[[package]]
+
name = "dyn-clone"
+
version = "1.0.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "304e6508efa593091e97a9abbc10f90aa7ca635b6d2784feff3c89d41dd12272"
+
+
[[package]]
+
name = "ecdsa"
+
version = "0.16.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a4b1e0c257a9e9f25f90ff76d7a68360ed497ee519c8e428d1825ef0000799d4"
+
dependencies = [
+
"der 0.7.8",
+
"digest",
+
"elliptic-curve",
+
"rfc6979",
+
"signature 2.1.0",
+
"spki 0.7.2",
+
]
+
+
[[package]]
+
name = "ed25519-compact"
+
version = "1.0.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e18997d4604542d0736fae2c5ad6de987f0a50530cbcc14a7ce5a685328a252d"
+
dependencies = [
+
"ct-codecs",
+
"getrandom",
+
]
+
+
[[package]]
+
name = "ed25519-compact"
+
version = "2.0.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6a3d382e8464107391c8706b4c14b087808ecb909f6c15c34114bc42e53a9e4c"
+
dependencies = [
+
"ct-codecs",
+
"getrandom",
+
]
+
+
[[package]]
+
name = "either"
+
version = "1.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "elliptic-curve"
+
version = "0.13.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "968405c8fdc9b3bf4df0a6638858cc0b52462836ab6b1c87377785dd09cf1c0b"
+
dependencies = [
+
"base16ct",
+
"crypto-bigint",
+
"digest",
+
"ff",
+
"generic-array",
+
"group",
+
"hkdf",
+
"pem-rfc7468 0.7.0",
+
"pkcs8 0.10.2",
+
"rand_core",
+
"sec1",
+
"subtle",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "encoding_rs"
+
version = "0.8.32"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394"
+
dependencies = [
+
"cfg-if",
+
]
+
+
[[package]]
+
name = "enum-as-inner"
+
version = "0.5.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
+
dependencies = [
+
"heck 0.4.1",
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "enum_dispatch"
+
version = "0.3.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8f33313078bb8d4d05a2733a94ac4c2d8a0df9a2b84424ebf4f33bfc224a890e"
+
dependencies = [
+
"once_cell",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "equivalent"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
+
+
[[package]]
+
name = "errno"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
+
dependencies = [
+
"errno-dragonfly",
+
"libc",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "errno-dragonfly"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
+
dependencies = [
+
"cc",
+
"libc",
+
]
+
+
[[package]]
+
name = "etcetera"
+
version = "0.8.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
+
dependencies = [
+
"cfg-if",
+
"home",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "event-listener"
+
version = "2.5.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
+
+
[[package]]
+
name = "executor-trait"
+
version = "2.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1a1052dd43212a7777ec6a69b117da52f5e52f07aec47d00c1a2b33b85d06b08"
+
dependencies = [
+
"async-trait",
+
]
+
+
[[package]]
+
name = "fancy-regex"
+
version = "0.10.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0678ab2d46fa5195aaf59ad034c083d351377d4af57f3e073c074d0da3e3c766"
+
dependencies = [
+
"bit-set",
+
"regex",
+
]
+
+
[[package]]
+
name = "fastrand"
+
version = "1.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
+
dependencies = [
+
"instant",
+
]
+
+
[[package]]
+
name = "fastrand"
+
version = "2.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
+
+
[[package]]
+
name = "ff"
+
version = "0.13.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ded41244b729663b1e574f1b4fb731469f69f79c17667b5d776b16cda0479449"
+
dependencies = [
+
"rand_core",
+
"subtle",
+
]
+
+
[[package]]
+
name = "figment"
+
version = "0.10.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4547e226f4c9ab860571e070a9034192b3175580ecea38da34fcdb53a018c9a5"
+
dependencies = [
+
"atomic",
+
"parking_lot",
+
"pear",
+
"serde",
+
"tempfile",
+
"toml",
+
"uncased",
+
"version_check",
+
]
+
+
[[package]]
+
name = "findshlibs"
+
version = "0.10.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
+
dependencies = [
+
"cc",
+
"lazy_static",
+
"libc",
+
"winapi",
+
]
+
+
[[package]]
+
name = "fixedbitset"
+
version = "0.4.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
+
+
[[package]]
+
name = "flume"
+
version = "0.10.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
+
dependencies = [
+
"futures-core",
+
"futures-sink",
+
"pin-project",
+
"spin 0.9.8",
+
]
+
+
[[package]]
+
name = "fnv"
+
version = "1.0.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
+
+
[[package]]
+
name = "foreign-types"
+
version = "0.3.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
+
dependencies = [
+
"foreign-types-shared",
+
]
+
+
[[package]]
+
name = "foreign-types-shared"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
+
+
[[package]]
+
name = "form_urlencoded"
+
version = "1.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
+
dependencies = [
+
"percent-encoding",
+
]
+
+
[[package]]
+
name = "fraction"
+
version = "0.12.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7aa5de57a62c2440ece64342ea59efb7171aa7d016faf8dfcb8795066a17146b"
+
dependencies = [
+
"lazy_static",
+
"num",
+
]
+
+
[[package]]
+
name = "futures"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40"
+
dependencies = [
+
"futures-channel",
+
"futures-core",
+
"futures-executor",
+
"futures-io",
+
"futures-sink",
+
"futures-task",
+
"futures-util",
+
]
+
+
[[package]]
+
name = "futures-channel"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
+
dependencies = [
+
"futures-core",
+
"futures-sink",
+
]
+
+
[[package]]
+
name = "futures-core"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
+
+
[[package]]
+
name = "futures-executor"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
+
dependencies = [
+
"futures-core",
+
"futures-task",
+
"futures-util",
+
]
+
+
[[package]]
+
name = "futures-intrusive"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
+
dependencies = [
+
"futures-core",
+
"lock_api",
+
"parking_lot",
+
]
+
+
[[package]]
+
name = "futures-io"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
+
+
[[package]]
+
name = "futures-lite"
+
version = "1.13.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
+
dependencies = [
+
"fastrand 1.9.0",
+
"futures-core",
+
"futures-io",
+
"memchr",
+
"parking",
+
"pin-project-lite",
+
"waker-fn",
+
]
+
+
[[package]]
+
name = "futures-macro"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "futures-sink"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
+
+
[[package]]
+
name = "futures-task"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
+
+
[[package]]
+
name = "futures-util"
+
version = "0.3.28"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
+
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.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
+
dependencies = [
+
"typenum",
+
"version_check",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "getrandom"
+
version = "0.2.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
+
dependencies = [
+
"cfg-if",
+
"libc",
+
"wasi 0.11.0+wasi-snapshot-preview1",
+
]
+
+
[[package]]
+
name = "gimli"
+
version = "0.27.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
+
+
[[package]]
+
name = "group"
+
version = "0.13.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
+
dependencies = [
+
"ff",
+
"rand_core",
+
"subtle",
+
]
+
+
[[package]]
+
name = "h2"
+
version = "0.3.20"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049"
+
dependencies = [
+
"bytes",
+
"fnv",
+
"futures-core",
+
"futures-sink",
+
"futures-util",
+
"http",
+
"indexmap 1.9.3",
+
"slab",
+
"tokio",
+
"tokio-util 0.7.8",
+
"tracing",
+
]
+
+
[[package]]
+
name = "hashbrown"
+
version = "0.12.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
+
+
[[package]]
+
name = "hashbrown"
+
version = "0.14.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
+
dependencies = [
+
"ahash",
+
"allocator-api2",
+
]
+
+
[[package]]
+
name = "hashlink"
+
version = "0.8.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "312f66718a2d7789ffef4f4b7b213138ed9f1eb3aa1d0d82fc99f88fb3ffd26f"
+
dependencies = [
+
"hashbrown 0.14.0",
+
]
+
+
[[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 1.3.2",
+
"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.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
+
dependencies = [
+
"unicode-segmentation",
+
]
+
+
[[package]]
+
name = "heck"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
+
dependencies = [
+
"unicode-segmentation",
+
]
+
+
[[package]]
+
name = "hermit-abi"
+
version = "0.3.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
+
+
[[package]]
+
name = "hex"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
+
+
[[package]]
+
name = "hkdf"
+
version = "0.12.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
+
dependencies = [
+
"hmac",
+
]
+
+
[[package]]
+
name = "hmac"
+
version = "0.12.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
+
dependencies = [
+
"digest",
+
]
+
+
[[package]]
+
name = "hmac-sha1-compact"
+
version = "1.1.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dff9d405ec732fa3fcde87264e54a32a84956a377b3e3107de96e59b798c84a7"
+
+
[[package]]
+
name = "hmac-sha256"
+
version = "1.1.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3688e69b38018fec1557254f64c8dc2cc8ec502890182f395dbb0aa997aa5735"
+
dependencies = [
+
"digest",
+
]
+
+
[[package]]
+
name = "hmac-sha512"
+
version = "1.1.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e4ce1f4656bae589a3fab938f9f09bf58645b7ed01a2c5f8a3c238e01a4ef78a"
+
dependencies = [
+
"digest",
+
]
+
+
[[package]]
+
name = "home"
+
version = "0.5.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
+
dependencies = [
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "hostname"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
+
dependencies = [
+
"libc",
+
"match_cfg",
+
"winapi",
+
]
+
+
[[package]]
+
name = "http"
+
version = "0.2.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
+
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.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
+
+
[[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 = "hyper"
+
version = "0.14.23"
+
source = "git+https://github.com/svix/hyper/?rev=b901ca7c#b901ca7c7772c427d63d150e1bf1c2ce7ce0d733"
+
dependencies = [
+
"bytes",
+
"futures-channel",
+
"futures-core",
+
"futures-util",
+
"h2",
+
"http",
+
"http-body",
+
"httparse",
+
"httpdate",
+
"itoa",
+
"pin-project-lite",
+
"socket2 0.4.9",
+
"tokio",
+
"tower-service",
+
"tracing",
+
"want",
+
]
+
+
[[package]]
+
name = "hyper-openssl"
+
version = "0.9.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d6ee5d7a8f718585d1c3c61dfde28ef5b0bb14734b4db13f5ada856cdc6c612b"
+
dependencies = [
+
"http",
+
"hyper",
+
"linked_hash_set",
+
"once_cell",
+
"openssl",
+
"openssl-sys",
+
"parking_lot",
+
"tokio",
+
"tokio-openssl",
+
"tower-layer",
+
]
+
+
[[package]]
+
name = "hyper-rustls"
+
version = "0.24.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8d78e1e73ec14cf7375674f74d7dde185c8206fd9dea6fb6295e8a98098aaa97"
+
dependencies = [
+
"futures-util",
+
"http",
+
"hyper",
+
"rustls",
+
"tokio",
+
"tokio-rustls",
+
]
+
+
[[package]]
+
name = "hyper-timeout"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
+
dependencies = [
+
"hyper",
+
"pin-project-lite",
+
"tokio",
+
"tokio-io-timeout",
+
]
+
+
[[package]]
+
name = "hyper-tls"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
+
dependencies = [
+
"bytes",
+
"hyper",
+
"native-tls",
+
"tokio",
+
"tokio-native-tls",
+
]
+
+
[[package]]
+
name = "iana-time-zone"
+
version = "0.1.57"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
+
dependencies = [
+
"android_system_properties",
+
"core-foundation-sys",
+
"iana-time-zone-haiku",
+
"js-sys",
+
"wasm-bindgen",
+
"windows",
+
]
+
+
[[package]]
+
name = "iana-time-zone-haiku"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
+
dependencies = [
+
"cc",
+
]
+
+
[[package]]
+
name = "ident_case"
+
version = "1.0.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
+
+
[[package]]
+
name = "idna"
+
version = "0.2.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
+
dependencies = [
+
"matches",
+
"unicode-bidi",
+
"unicode-normalization",
+
]
+
+
[[package]]
+
name = "idna"
+
version = "0.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
+
dependencies = [
+
"unicode-bidi",
+
"unicode-normalization",
+
]
+
+
[[package]]
+
name = "if_chain"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
+
+
[[package]]
+
name = "indexmap"
+
version = "1.9.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
+
dependencies = [
+
"autocfg",
+
"hashbrown 0.12.3",
+
"serde",
+
]
+
+
[[package]]
+
name = "indexmap"
+
version = "2.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
+
dependencies = [
+
"equivalent",
+
"hashbrown 0.14.0",
+
]
+
+
[[package]]
+
name = "inherent"
+
version = "1.0.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ce243b1bfa62ffc028f1cc3b6034ec63d649f3031bc8a4fbbb004e1ac17d1f68"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "inlinable_string"
+
version = "0.1.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c8fae54786f62fb2918dcfae3d568594e50eb9b5c25bf04371af6fe7516452fb"
+
+
[[package]]
+
name = "inout"
+
version = "0.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
+
dependencies = [
+
"block-padding",
+
"generic-array",
+
]
+
+
[[package]]
+
name = "instant"
+
version = "0.1.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
+
dependencies = [
+
"cfg-if",
+
]
+
+
[[package]]
+
name = "io-lifetimes"
+
version = "1.0.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
+
dependencies = [
+
"hermit-abi",
+
"libc",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "ipconfig"
+
version = "0.3.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
+
dependencies = [
+
"socket2 0.5.3",
+
"widestring",
+
"windows-sys",
+
"winreg 0.50.0",
+
]
+
+
[[package]]
+
name = "ipnet"
+
version = "2.8.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "is-terminal"
+
version = "0.4.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cb0889898416213fab133e1d33a0e5858a48177452750691bde3666d0fdbaf8b"
+
dependencies = [
+
"hermit-abi",
+
"rustix 0.38.4",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "iso8601"
+
version = "0.5.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "296af15e112ec6dc38c9fd3ae027b5337a75466e8eed757bd7d5cf742ea85eb6"
+
dependencies = [
+
"nom",
+
]
+
+
[[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.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
+
+
[[package]]
+
name = "js-sys"
+
version = "0.3.64"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
+
dependencies = [
+
"wasm-bindgen",
+
]
+
+
[[package]]
+
name = "jsonschema"
+
version = "0.16.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6ca9e2b45609132ae2214d50482c03aeee78826cd6fd53a8940915b81acedf16"
+
dependencies = [
+
"ahash",
+
"anyhow",
+
"base64 0.13.1",
+
"bytecount",
+
"clap",
+
"fancy-regex",
+
"fraction",
+
"iso8601",
+
"itoa",
+
"lazy_static",
+
"memchr",
+
"num-cmp",
+
"parking_lot",
+
"percent-encoding",
+
"regex",
+
"reqwest",
+
"serde",
+
"serde_json",
+
"time 0.3.23",
+
"url",
+
"uuid",
+
]
+
+
[[package]]
+
name = "jwt-simple"
+
version = "0.11.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "733741e7bcd1532b56c9ba6c698c069f274f3782ad956f0d2c7f31650cedaa1b"
+
dependencies = [
+
"anyhow",
+
"binstring",
+
"coarsetime",
+
"ct-codecs",
+
"ed25519-compact 2.0.4",
+
"hmac-sha1-compact",
+
"hmac-sha256",
+
"hmac-sha512",
+
"k256",
+
"p256",
+
"p384",
+
"rand",
+
"rsa 0.7.2",
+
"serde",
+
"serde_json",
+
"spki 0.6.0",
+
"thiserror",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "k256"
+
version = "0.13.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cadb76004ed8e97623117f3df85b17aaa6626ab0b0831e6573f104df16cd1bcc"
+
dependencies = [
+
"cfg-if",
+
"ecdsa",
+
"elliptic-curve",
+
"once_cell",
+
"sha2",
+
"signature 2.1.0",
+
]
+
+
[[package]]
+
name = "lapin"
+
version = "2.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5f3067a1fcfbc3fc46455809c023e69b8f6602463201010f4ae5a3b572adb9dc"
+
dependencies = [
+
"amq-protocol",
+
"async-global-executor-trait",
+
"async-reactor-trait",
+
"async-trait",
+
"executor-trait",
+
"flume",
+
"futures-core",
+
"futures-io",
+
"parking_lot",
+
"pinky-swear",
+
"reactor-trait",
+
"serde",
+
"tracing",
+
"waker-fn",
+
]
+
+
[[package]]
+
name = "lazy_static"
+
version = "1.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
+
dependencies = [
+
"spin 0.5.2",
+
]
+
+
[[package]]
+
name = "libc"
+
version = "0.2.147"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
+
+
[[package]]
+
name = "libm"
+
version = "0.2.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
+
+
[[package]]
+
name = "libsqlite3-sys"
+
version = "0.26.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
+
dependencies = [
+
"cc",
+
"pkg-config",
+
"vcpkg",
+
]
+
+
[[package]]
+
name = "linked-hash-map"
+
version = "0.5.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
+
+
[[package]]
+
name = "linked_hash_set"
+
version = "0.1.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "47186c6da4d81ca383c7c47c1bfc80f4b95f4720514d860a5407aaf4233f9588"
+
dependencies = [
+
"linked-hash-map",
+
]
+
+
[[package]]
+
name = "linux-raw-sys"
+
version = "0.3.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
+
+
[[package]]
+
name = "linux-raw-sys"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "09fc20d2ca12cb9f044c93e3bd6d32d523e6e2ec3db4f7b2939cd99026ecd3f0"
+
+
[[package]]
+
name = "lock_api"
+
version = "0.4.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
+
dependencies = [
+
"autocfg",
+
"scopeguard",
+
]
+
+
[[package]]
+
name = "log"
+
version = "0.4.19"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
+
+
[[package]]
+
name = "lru-cache"
+
version = "0.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
+
dependencies = [
+
"linked-hash-map",
+
]
+
+
[[package]]
+
name = "match_cfg"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
+
+
[[package]]
+
name = "matchers"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
+
dependencies = [
+
"regex-automata 0.1.10",
+
]
+
+
[[package]]
+
name = "matches"
+
version = "0.1.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
+
+
[[package]]
+
name = "matchit"
+
version = "0.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b87248edafb776e59e6ee64a79086f65890d3510f2c656c000bf2a7e8a0aea40"
+
+
[[package]]
+
name = "md-5"
+
version = "0.10.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
+
dependencies = [
+
"digest",
+
]
+
+
[[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.17"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
+
+
[[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.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
+
dependencies = [
+
"adler",
+
]
+
+
[[package]]
+
name = "mio"
+
version = "0.8.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
+
dependencies = [
+
"libc",
+
"wasi 0.11.0+wasi-snapshot-preview1",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "multimap"
+
version = "0.8.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e5ce46fe64a9d73be07dcbe690a38ce1b293be448fd8ce1e6c1b8062c9f72c6a"
+
+
[[package]]
+
name = "native-tls"
+
version = "0.2.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
+
dependencies = [
+
"lazy_static",
+
"libc",
+
"log",
+
"openssl",
+
"openssl-probe",
+
"openssl-sys",
+
"schannel",
+
"security-framework",
+
"security-framework-sys",
+
"tempfile",
+
]
+
+
[[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 = "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"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
+
dependencies = [
+
"num-bigint",
+
"num-complex",
+
"num-integer",
+
"num-iter",
+
"num-rational",
+
"num-traits",
+
]
+
+
[[package]]
+
name = "num-bigint"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
+
dependencies = [
+
"autocfg",
+
"num-integer",
+
"num-traits",
+
]
+
+
[[package]]
+
name = "num-bigint-dig"
+
version = "0.8.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
+
dependencies = [
+
"byteorder",
+
"lazy_static",
+
"libm",
+
"num-integer",
+
"num-iter",
+
"num-traits",
+
"rand",
+
"smallvec",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "num-cmp"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "63335b2e2c34fae2fb0aa2cecfd9f0832a1e24b3b32ecec612c3426d46dc8aaa"
+
+
[[package]]
+
name = "num-complex"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "02e0d21255c828d6f128a1e41534206671e8c3ea0c62f32291e808dc82cff17d"
+
dependencies = [
+
"num-traits",
+
]
+
+
[[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-iter"
+
version = "0.1.43"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
+
dependencies = [
+
"autocfg",
+
"num-integer",
+
"num-traits",
+
]
+
+
[[package]]
+
name = "num-rational"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
+
dependencies = [
+
"autocfg",
+
"num-bigint",
+
"num-integer",
+
"num-traits",
+
]
+
+
[[package]]
+
name = "num-traits"
+
version = "0.2.16"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
+
dependencies = [
+
"autocfg",
+
"libm",
+
]
+
+
[[package]]
+
name = "num_cpus"
+
version = "1.16.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
+
dependencies = [
+
"hermit-abi",
+
"libc",
+
]
+
+
[[package]]
+
name = "num_enum"
+
version = "0.5.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
+
dependencies = [
+
"num_enum_derive",
+
]
+
+
[[package]]
+
name = "num_enum_derive"
+
version = "0.5.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
+
dependencies = [
+
"proc-macro-crate",
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "object"
+
version = "0.31.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "once_cell"
+
version = "1.18.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
+
+
[[package]]
+
name = "opaque-debug"
+
version = "0.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
+
+
[[package]]
+
name = "openssl"
+
version = "0.10.55"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "345df152bc43501c5eb9e4654ff05f794effb78d4efe3d53abc158baddc0703d"
+
dependencies = [
+
"bitflags 1.3.2",
+
"cfg-if",
+
"foreign-types",
+
"libc",
+
"once_cell",
+
"openssl-macros",
+
"openssl-sys",
+
]
+
+
[[package]]
+
name = "openssl-macros"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "openssl-probe"
+
version = "0.1.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
+
+
[[package]]
+
name = "openssl-sys"
+
version = "0.9.90"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "374533b0e45f3a7ced10fcaeccca020e66656bc03dac384f852e4e5a7a8104a6"
+
dependencies = [
+
"cc",
+
"libc",
+
"pkg-config",
+
"vcpkg",
+
]
+
+
[[package]]
+
name = "opentelemetry"
+
version = "0.17.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6105e89802af13fdf48c49d7646d3b533a70e536d818aae7e78ba0433d01acb8"
+
dependencies = [
+
"async-trait",
+
"crossbeam-channel",
+
"futures-channel",
+
"futures-executor",
+
"futures-util",
+
"js-sys",
+
"lazy_static",
+
"percent-encoding",
+
"pin-project",
+
"rand",
+
"thiserror",
+
"tokio",
+
"tokio-stream",
+
]
+
+
[[package]]
+
name = "opentelemetry-http"
+
version = "0.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "449048140ee61e28f57abe6e9975eedc1f3a29855c7407bd6c12b18578863379"
+
dependencies = [
+
"async-trait",
+
"bytes",
+
"http",
+
"opentelemetry",
+
]
+
+
[[package]]
+
name = "opentelemetry-otlp"
+
version = "0.10.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9d1a6ca9de4c8b00aa7f1a153bd76cb263287155cec642680d79d98706f3d28a"
+
dependencies = [
+
"async-trait",
+
"futures",
+
"futures-util",
+
"http",
+
"opentelemetry",
+
"prost",
+
"thiserror",
+
"tokio",
+
"tonic",
+
"tonic-build",
+
]
+
+
[[package]]
+
name = "ordered-float"
+
version = "3.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2fc2dbde8f8a79f2102cc474ceb0ad68e3b80b85289ea62389b60e66777e4213"
+
dependencies = [
+
"num-traits",
+
]
+
+
[[package]]
+
name = "os_info"
+
version = "3.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e"
+
dependencies = [
+
"log",
+
"serde",
+
"winapi",
+
]
+
+
[[package]]
+
name = "ouroboros"
+
version = "0.17.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e2ba07320d39dfea882faa70554b4bd342a5f273ed59ba7c1c6b4c840492c954"
+
dependencies = [
+
"aliasable",
+
"ouroboros_macro",
+
"static_assertions",
+
]
+
+
[[package]]
+
name = "ouroboros_macro"
+
version = "0.17.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ec4c6225c69b4ca778c0aea097321a64c421cf4577b331c61b229267edabb6f8"
+
dependencies = [
+
"heck 0.4.1",
+
"proc-macro-error",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "overload"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
+
+
[[package]]
+
name = "p12"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d4873306de53fe82e7e484df31e1e947d61514b6ea2ed6cd7b45d63006fd9224"
+
dependencies = [
+
"cbc",
+
"cipher 0.4.4",
+
"des",
+
"getrandom",
+
"hmac",
+
"lazy_static",
+
"rc2",
+
"sha1",
+
"yasna",
+
]
+
+
[[package]]
+
name = "p256"
+
version = "0.13.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
+
dependencies = [
+
"ecdsa",
+
"elliptic-curve",
+
"primeorder",
+
"sha2",
+
]
+
+
[[package]]
+
name = "p384"
+
version = "0.13.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "70786f51bcc69f6a4c0360e063a4cac5419ef7c5cd5b3c99ad70f3be5ba79209"
+
dependencies = [
+
"ecdsa",
+
"elliptic-curve",
+
"primeorder",
+
"sha2",
+
]
+
+
[[package]]
+
name = "parking"
+
version = "2.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e"
+
+
[[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.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
+
dependencies = [
+
"cfg-if",
+
"libc",
+
"redox_syscall",
+
"smallvec",
+
"windows-targets",
+
]
+
+
[[package]]
+
name = "paste"
+
version = "1.0.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
+
+
[[package]]
+
name = "pear"
+
version = "0.2.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "61a386cd715229d399604b50d1361683fe687066f42d56f54be995bc6868f71c"
+
dependencies = [
+
"inlinable_string",
+
"pear_codegen",
+
"yansi",
+
]
+
+
[[package]]
+
name = "pear_codegen"
+
version = "0.2.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "da9f0f13dac8069c139e8300a6510e3f4143ecf5259c60b116a9b271b4ca0d54"
+
dependencies = [
+
"proc-macro2",
+
"proc-macro2-diagnostics",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "pem-rfc7468"
+
version = "0.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "24d159833a9105500e0398934e205e0773f0b27529557134ecfc51c27646adac"
+
dependencies = [
+
"base64ct",
+
]
+
+
[[package]]
+
name = "pem-rfc7468"
+
version = "0.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
+
dependencies = [
+
"base64ct",
+
]
+
+
[[package]]
+
name = "percent-encoding"
+
version = "2.3.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
+
+
[[package]]
+
name = "petgraph"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4dd7d28ee937e54fe3080c91faa1c3a46c06de6252988a7f4592ba2310ef22a4"
+
dependencies = [
+
"fixedbitset",
+
"indexmap 1.9.3",
+
]
+
+
[[package]]
+
name = "pin-project"
+
version = "1.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "030ad2bc4db10a8944cb0d837f158bdfec4d4a4873ab701a95046770d11f8842"
+
dependencies = [
+
"pin-project-internal",
+
]
+
+
[[package]]
+
name = "pin-project-internal"
+
version = "1.1.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ec2e072ecce94ec471b13398d5402c188e76ac03cf74dd1a975161b23a3f6d9c"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "pin-project-lite"
+
version = "0.2.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
+
+
[[package]]
+
name = "pin-utils"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
+
+
[[package]]
+
name = "pinky-swear"
+
version = "6.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d894b67aa7a4bf295db5e85349078c604edaa6fa5c8721e8eca3c7729a27f2ac"
+
dependencies = [
+
"doc-comment",
+
"flume",
+
"parking_lot",
+
"tracing",
+
]
+
+
[[package]]
+
name = "pkcs1"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "eff33bdbdfc54cc98a2eca766ebdec3e1b8fb7387523d5c9c9a2891da856f719"
+
dependencies = [
+
"der 0.6.1",
+
"pkcs8 0.9.0",
+
"spki 0.6.0",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "pkcs1"
+
version = "0.7.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
+
dependencies = [
+
"der 0.7.8",
+
"pkcs8 0.10.2",
+
"spki 0.7.2",
+
]
+
+
[[package]]
+
name = "pkcs8"
+
version = "0.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
+
dependencies = [
+
"der 0.6.1",
+
"spki 0.6.0",
+
]
+
+
[[package]]
+
name = "pkcs8"
+
version = "0.10.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
+
dependencies = [
+
"der 0.7.8",
+
"spki 0.7.2",
+
]
+
+
[[package]]
+
name = "pkg-config"
+
version = "0.3.27"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
+
+
[[package]]
+
name = "polling"
+
version = "2.8.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
+
dependencies = [
+
"autocfg",
+
"bitflags 1.3.2",
+
"cfg-if",
+
"concurrent-queue",
+
"libc",
+
"log",
+
"pin-project-lite",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "poly1305"
+
version = "0.7.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
+
dependencies = [
+
"cpufeatures",
+
"opaque-debug",
+
"universal-hash",
+
]
+
+
[[package]]
+
name = "ppv-lite86"
+
version = "0.2.17"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
+
+
[[package]]
+
name = "primeorder"
+
version = "0.13.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3c2fcef82c0ec6eefcc179b978446c399b3cdf73c392c35604e399eee6df1ee3"
+
dependencies = [
+
"elliptic-curve",
+
]
+
+
[[package]]
+
name = "proc-macro-crate"
+
version = "1.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
+
dependencies = [
+
"once_cell",
+
"toml_edit",
+
]
+
+
[[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 1.0.109",
+
"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-macro2"
+
version = "1.0.66"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
+
dependencies = [
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "proc-macro2-diagnostics"
+
version = "0.10.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
"version_check",
+
"yansi",
+
]
+
+
[[package]]
+
name = "prost"
+
version = "0.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "444879275cb4fd84958b1a1d5420d15e6fcf7c235fe47f053c9c2a80aceb6001"
+
dependencies = [
+
"bytes",
+
"prost-derive",
+
]
+
+
[[package]]
+
name = "prost-build"
+
version = "0.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "62941722fb675d463659e49c4f3fe1fe792ff24fe5bbaa9c08cd3b98a1c354f5"
+
dependencies = [
+
"bytes",
+
"heck 0.3.3",
+
"itertools",
+
"lazy_static",
+
"log",
+
"multimap",
+
"petgraph",
+
"prost",
+
"prost-types",
+
"regex",
+
"tempfile",
+
"which",
+
]
+
+
[[package]]
+
name = "prost-derive"
+
version = "0.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f9cc1a3263e07e0bf68e96268f37665207b49560d98739662cdfaae215c720fe"
+
dependencies = [
+
"anyhow",
+
"itertools",
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "prost-types"
+
version = "0.9.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "534b7a0e836e3c482d2693070f982e39e7611da9695d4d1f5a4b186b51faef0a"
+
dependencies = [
+
"bytes",
+
"prost",
+
]
+
+
[[package]]
+
name = "quick-error"
+
version = "1.2.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
+
+
[[package]]
+
name = "quote"
+
version = "1.0.32"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965"
+
dependencies = [
+
"proc-macro2",
+
]
+
+
[[package]]
+
name = "rand"
+
version = "0.8.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
+
dependencies = [
+
"libc",
+
"rand_chacha",
+
"rand_core",
+
]
+
+
[[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",
+
]
+
+
[[package]]
+
name = "rand_core"
+
version = "0.6.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
+
dependencies = [
+
"getrandom",
+
]
+
+
[[package]]
+
name = "rc2"
+
version = "0.8.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "62c64daa8e9438b84aaae55010a93f396f8e60e3911590fcba770d04643fc1dd"
+
dependencies = [
+
"cipher 0.4.4",
+
]
+
+
[[package]]
+
name = "reactor-trait"
+
version = "1.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "438a4293e4d097556730f4711998189416232f009c137389e0f961d2bc0ddc58"
+
dependencies = [
+
"async-trait",
+
"futures-core",
+
"futures-io",
+
]
+
+
[[package]]
+
name = "redis"
+
version = "0.23.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3ea8c51b5dc1d8e5fd3350ec8167f464ec0995e79f2e90a075b63371500d557f"
+
dependencies = [
+
"async-trait",
+
"bytes",
+
"combine",
+
"crc16",
+
"futures",
+
"futures-util",
+
"itoa",
+
"log",
+
"native-tls",
+
"percent-encoding",
+
"pin-project-lite",
+
"rand",
+
"ryu",
+
"sha1_smol",
+
"tokio",
+
"tokio-native-tls",
+
"tokio-util 0.7.8",
+
"url",
+
]
+
+
[[package]]
+
name = "redox_syscall"
+
version = "0.3.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
+
dependencies = [
+
"bitflags 1.3.2",
+
]
+
+
[[package]]
+
name = "regex"
+
version = "1.9.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
+
dependencies = [
+
"aho-corasick",
+
"memchr",
+
"regex-automata 0.3.3",
+
"regex-syntax 0.7.4",
+
]
+
+
[[package]]
+
name = "regex-automata"
+
version = "0.1.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
+
dependencies = [
+
"regex-syntax 0.6.29",
+
]
+
+
[[package]]
+
name = "regex-automata"
+
version = "0.3.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
+
dependencies = [
+
"aho-corasick",
+
"memchr",
+
"regex-syntax 0.7.4",
+
]
+
+
[[package]]
+
name = "regex-syntax"
+
version = "0.6.29"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
+
+
[[package]]
+
name = "regex-syntax"
+
version = "0.7.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
+
+
[[package]]
+
name = "reqwest"
+
version = "0.11.18"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
+
dependencies = [
+
"base64 0.21.2",
+
"bytes",
+
"encoding_rs",
+
"futures-core",
+
"futures-util",
+
"h2",
+
"http",
+
"http-body",
+
"hyper",
+
"hyper-rustls",
+
"hyper-tls",
+
"ipnet",
+
"js-sys",
+
"log",
+
"mime",
+
"mime_guess",
+
"native-tls",
+
"once_cell",
+
"percent-encoding",
+
"pin-project-lite",
+
"rustls",
+
"rustls-pemfile",
+
"serde",
+
"serde_json",
+
"serde_urlencoded",
+
"tokio",
+
"tokio-native-tls",
+
"tokio-rustls",
+
"tower-service",
+
"trust-dns-resolver",
+
"url",
+
"wasm-bindgen",
+
"wasm-bindgen-futures",
+
"web-sys",
+
"webpki-roots 0.22.6",
+
"winreg 0.10.1",
+
]
+
+
[[package]]
+
name = "resolv-conf"
+
version = "0.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
+
dependencies = [
+
"hostname",
+
"quick-error",
+
]
+
+
[[package]]
+
name = "rfc6979"
+
version = "0.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
+
dependencies = [
+
"hmac",
+
"subtle",
+
]
+
+
[[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 = "rsa"
+
version = "0.7.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "094052d5470cbcef561cb848a7209968c9f12dfa6d668f4bca048ac5de51099c"
+
dependencies = [
+
"byteorder",
+
"digest",
+
"num-bigint-dig",
+
"num-integer",
+
"num-iter",
+
"num-traits",
+
"pkcs1 0.4.1",
+
"pkcs8 0.9.0",
+
"rand_core",
+
"signature 1.6.4",
+
"smallvec",
+
"subtle",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "rsa"
+
version = "0.9.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8"
+
dependencies = [
+
"byteorder",
+
"const-oid",
+
"digest",
+
"num-bigint-dig",
+
"num-integer",
+
"num-iter",
+
"num-traits",
+
"pkcs1 0.7.5",
+
"pkcs8 0.10.2",
+
"rand_core",
+
"signature 2.1.0",
+
"spki 0.7.2",
+
"subtle",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "rustc-demangle"
+
version = "0.1.23"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
+
+
[[package]]
+
name = "rustc_version"
+
version = "0.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
+
dependencies = [
+
"semver",
+
]
+
+
[[package]]
+
name = "rustix"
+
version = "0.37.23"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4d69718bf81c6127a49dc64e44a742e8bb9213c0ff8869a22c308f84c1d4ab06"
+
dependencies = [
+
"bitflags 1.3.2",
+
"errno",
+
"io-lifetimes",
+
"libc",
+
"linux-raw-sys 0.3.8",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "rustix"
+
version = "0.38.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0a962918ea88d644592894bc6dc55acc6c0956488adcebbfb6e273506b7fd6e5"
+
dependencies = [
+
"bitflags 2.3.3",
+
"errno",
+
"libc",
+
"linux-raw-sys 0.4.3",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "rustls"
+
version = "0.21.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "79ea77c539259495ce8ca47f53e66ae0330a8819f67e23ac96ca02f50e7b7d36"
+
dependencies = [
+
"log",
+
"ring",
+
"rustls-webpki",
+
"sct",
+
]
+
+
[[package]]
+
name = "rustls-connector"
+
version = "0.18.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "060bcc1795b840d0e56d78f3293be5f652aa1611d249b0e63ffe19f4a8c9ae23"
+
dependencies = [
+
"log",
+
"rustls",
+
"rustls-native-certs",
+
"rustls-webpki",
+
]
+
+
[[package]]
+
name = "rustls-native-certs"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
+
dependencies = [
+
"openssl-probe",
+
"rustls-pemfile",
+
"schannel",
+
"security-framework",
+
]
+
+
[[package]]
+
name = "rustls-pemfile"
+
version = "1.0.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
+
dependencies = [
+
"base64 0.21.2",
+
]
+
+
[[package]]
+
name = "rustls-webpki"
+
version = "0.101.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d"
+
dependencies = [
+
"ring",
+
"untrusted",
+
]
+
+
[[package]]
+
name = "rustversion"
+
version = "1.0.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
+
+
[[package]]
+
name = "ryu"
+
version = "1.0.15"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
+
+
[[package]]
+
name = "schannel"
+
version = "0.1.22"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
+
dependencies = [
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "schemars"
+
version = "0.8.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "02c613288622e5f0c3fdc5dbd4db1c5fbe752746b1d1a56a0630b78fd00de44f"
+
dependencies = [
+
"chrono",
+
"dyn-clone",
+
"indexmap 1.9.3",
+
"schemars_derive",
+
"serde",
+
"serde_json",
+
"url",
+
]
+
+
[[package]]
+
name = "schemars_derive"
+
version = "0.8.12"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "109da1e6b197438deb6db99952990c7f959572794b80ff93707d55a232545e7c"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"serde_derive_internals",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "scopeguard"
+
version = "1.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
+
+
[[package]]
+
name = "sct"
+
version = "0.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
+
dependencies = [
+
"ring",
+
"untrusted",
+
]
+
+
[[package]]
+
name = "sea-bae"
+
version = "0.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3bd3534a9978d0aa7edd2808dc1f8f31c4d0ecd31ddf71d997b3c98e9f3c9114"
+
dependencies = [
+
"heck 0.4.1",
+
"proc-macro-error",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "sea-orm"
+
version = "0.12.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "61f6c7daef05dde3476d97001e11fca7a52b655aa3bf4fd610ab2da1176a2ed5"
+
dependencies = [
+
"async-stream",
+
"async-trait",
+
"chrono",
+
"futures",
+
"log",
+
"ouroboros",
+
"sea-orm-macros",
+
"sea-query",
+
"sea-query-binder",
+
"serde",
+
"serde_json",
+
"sqlx",
+
"strum 0.25.0",
+
"thiserror",
+
"time 0.3.23",
+
"tracing",
+
"url",
+
"uuid",
+
]
+
+
[[package]]
+
name = "sea-orm-macros"
+
version = "0.12.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "cd90e73d5f5b184bad525767da29fbfec132b4e62ebd6f60d2f2737ec6468f62"
+
dependencies = [
+
"heck 0.4.1",
+
"proc-macro2",
+
"quote",
+
"sea-bae",
+
"syn 2.0.29",
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "sea-query"
+
version = "0.30.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6aeb899964df7038e7274306b742951b82a04f835bca8a4683a4c254a6bf35fa"
+
dependencies = [
+
"chrono",
+
"derivative",
+
"inherent",
+
"ordered-float",
+
"serde_json",
+
]
+
+
[[package]]
+
name = "sea-query-binder"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "36bbb68df92e820e4d5aeb17b4acd5cc8b5d18b2c36a4dd6f4626aabfa7ab1b9"
+
dependencies = [
+
"chrono",
+
"sea-query",
+
"serde_json",
+
"sqlx",
+
]
+
+
[[package]]
+
name = "sec1"
+
version = "0.7.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
+
dependencies = [
+
"base16ct",
+
"der 0.7.8",
+
"generic-array",
+
"pkcs8 0.10.2",
+
"subtle",
+
"zeroize",
+
]
+
+
[[package]]
+
name = "security-framework"
+
version = "2.9.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
+
dependencies = [
+
"bitflags 1.3.2",
+
"core-foundation",
+
"core-foundation-sys",
+
"libc",
+
"security-framework-sys",
+
]
+
+
[[package]]
+
name = "security-framework-sys"
+
version = "2.9.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
+
dependencies = [
+
"core-foundation-sys",
+
"libc",
+
]
+
+
[[package]]
+
name = "semver"
+
version = "1.0.18"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
+
+
[[package]]
+
name = "sentry"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "01b0ad16faa5d12372f914ed40d00bda21a6d1bdcc99264c5e5e1c9495cf3654"
+
dependencies = [
+
"httpdate",
+
"native-tls",
+
"reqwest",
+
"sentry-backtrace",
+
"sentry-contexts",
+
"sentry-core",
+
"sentry-debug-images",
+
"sentry-panic",
+
"sentry-tracing",
+
"tokio",
+
"ureq",
+
]
+
+
[[package]]
+
name = "sentry-backtrace"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "11f2ee8f147bb5f22ac59b5c35754a759b9a6f6722402e2a14750b2a63fc59bd"
+
dependencies = [
+
"backtrace",
+
"once_cell",
+
"regex",
+
"sentry-core",
+
]
+
+
[[package]]
+
name = "sentry-contexts"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dcd133362c745151eeba0ac61e3ba8350f034e9fe7509877d08059fe1d7720c6"
+
dependencies = [
+
"hostname",
+
"libc",
+
"os_info",
+
"rustc_version",
+
"sentry-core",
+
"uname",
+
]
+
+
[[package]]
+
name = "sentry-core"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7163491708804a74446642ff2c80b3acd668d4b9e9f497f85621f3d250fd012b"
+
dependencies = [
+
"once_cell",
+
"rand",
+
"sentry-types",
+
"serde",
+
"serde_json",
+
]
+
+
[[package]]
+
name = "sentry-debug-images"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6a5003d7ff08aa3b2b76994080b183e8cfa06c083e280737c9cee02ca1c70f5e"
+
dependencies = [
+
"findshlibs",
+
"once_cell",
+
"sentry-core",
+
]
+
+
[[package]]
+
name = "sentry-panic"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c4dfe8371c9b2e126a8b64f6fefa54cef716ff2a50e63b5558a48b899265bccd"
+
dependencies = [
+
"sentry-backtrace",
+
"sentry-core",
+
]
+
+
[[package]]
+
name = "sentry-tracing"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5aca8b88978677a27ee1a91beafe4052306c474c06f582321fde72d2e2cc2f7f"
+
dependencies = [
+
"sentry-backtrace",
+
"sentry-core",
+
"tracing-core",
+
"tracing-subscriber",
+
]
+
+
[[package]]
+
name = "sentry-types"
+
version = "0.31.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9e7a88e0c1922d19b3efee12a8215f6a8a806e442e665ada71cc222cab72985f"
+
dependencies = [
+
"debugid",
+
"getrandom",
+
"hex",
+
"serde",
+
"serde_json",
+
"thiserror",
+
"time 0.3.23",
+
"url",
+
"uuid",
+
]
+
+
[[package]]
+
name = "serde"
+
version = "1.0.185"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "be9b6f69f1dfd54c3b568ffa45c310d6973a5e5148fd40cf515acaf38cf5bc31"
+
dependencies = [
+
"serde_derive",
+
]
+
+
[[package]]
+
name = "serde_derive"
+
version = "1.0.185"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dc59dfdcbad1437773485e0367fea4b090a2e0a16d9ffc46af47764536a298ec"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "serde_derive_internals"
+
version = "0.26.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "85bf8229e7920a9f636479437026331ce11aa132b4dde37d121944a44d6e5f3c"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "serde_json"
+
version = "1.0.103"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b"
+
dependencies = [
+
"itoa",
+
"ryu",
+
"serde",
+
]
+
+
[[package]]
+
name = "serde_path_to_error"
+
version = "0.1.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4beec8bce849d58d06238cb50db2e1c417cfeafa4c63f692b15c82b7c80f8335"
+
dependencies = [
+
"itoa",
+
"serde",
+
]
+
+
[[package]]
+
name = "serde_qs"
+
version = "0.11.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c679fa27b429f2bb57fd4710257e643e86c966e716037259f8baa33de594a1b6"
+
dependencies = [
+
"axum",
+
"futures",
+
"percent-encoding",
+
"serde",
+
"thiserror",
+
]
+
+
[[package]]
+
name = "serde_spanned"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
+
dependencies = [
+
"serde",
+
]
+
+
[[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 = "sha1_smol"
+
version = "1.0.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
+
+
[[package]]
+
name = "sha2"
+
version = "0.10.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
+
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.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
+
dependencies = [
+
"libc",
+
]
+
+
[[package]]
+
name = "signature"
+
version = "1.6.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
+
dependencies = [
+
"digest",
+
"rand_core",
+
]
+
+
[[package]]
+
name = "signature"
+
version = "2.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500"
+
dependencies = [
+
"digest",
+
"rand_core",
+
]
+
+
[[package]]
+
name = "slab"
+
version = "0.4.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
+
dependencies = [
+
"autocfg",
+
]
+
+
[[package]]
+
name = "smallvec"
+
version = "1.11.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
+
+
[[package]]
+
name = "socket2"
+
version = "0.4.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
+
dependencies = [
+
"libc",
+
"winapi",
+
]
+
+
[[package]]
+
name = "socket2"
+
version = "0.5.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
+
dependencies = [
+
"libc",
+
"windows-sys",
+
]
+
+
[[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.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
+
dependencies = [
+
"lock_api",
+
]
+
+
[[package]]
+
name = "spki"
+
version = "0.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
+
dependencies = [
+
"base64ct",
+
"der 0.6.1",
+
]
+
+
[[package]]
+
name = "spki"
+
version = "0.7.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
+
dependencies = [
+
"base64ct",
+
"der 0.7.8",
+
]
+
+
[[package]]
+
name = "sqlformat"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
+
dependencies = [
+
"itertools",
+
"nom",
+
"unicode_categories",
+
]
+
+
[[package]]
+
name = "sqlx"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8e58421b6bc416714d5115a2ca953718f6c621a51b68e4f4922aea5a4391a721"
+
dependencies = [
+
"sqlx-core",
+
"sqlx-macros",
+
"sqlx-mysql",
+
"sqlx-postgres",
+
"sqlx-sqlite",
+
]
+
+
[[package]]
+
name = "sqlx-core"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dd4cef4251aabbae751a3710927945901ee1d97ee96d757f6880ebb9a79bfd53"
+
dependencies = [
+
"ahash",
+
"atoi",
+
"byteorder",
+
"bytes",
+
"chrono",
+
"crc",
+
"crossbeam-queue",
+
"dotenvy",
+
"either",
+
"event-listener",
+
"futures-channel",
+
"futures-core",
+
"futures-intrusive",
+
"futures-io",
+
"futures-util",
+
"hashlink",
+
"hex",
+
"indexmap 2.0.0",
+
"log",
+
"memchr",
+
"once_cell",
+
"paste",
+
"percent-encoding",
+
"rustls",
+
"rustls-pemfile",
+
"serde",
+
"serde_json",
+
"sha2",
+
"smallvec",
+
"sqlformat",
+
"thiserror",
+
"tokio",
+
"tokio-stream",
+
"tracing",
+
"url",
+
"webpki-roots 0.24.0",
+
]
+
+
[[package]]
+
name = "sqlx-macros"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "208e3165167afd7f3881b16c1ef3f2af69fa75980897aac8874a0696516d12c2"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"sqlx-core",
+
"sqlx-macros-core",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "sqlx-macros-core"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8a4a8336d278c62231d87f24e8a7a74898156e34c1c18942857be2acb29c7dfc"
+
dependencies = [
+
"dotenvy",
+
"either",
+
"heck 0.4.1",
+
"hex",
+
"once_cell",
+
"proc-macro2",
+
"quote",
+
"serde",
+
"serde_json",
+
"sha2",
+
"sqlx-core",
+
"sqlx-mysql",
+
"sqlx-postgres",
+
"sqlx-sqlite",
+
"syn 1.0.109",
+
"tempfile",
+
"tokio",
+
"url",
+
]
+
+
[[package]]
+
name = "sqlx-mysql"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8ca69bf415b93b60b80dc8fda3cb4ef52b2336614d8da2de5456cc942a110482"
+
dependencies = [
+
"atoi",
+
"base64 0.21.2",
+
"bitflags 2.3.3",
+
"byteorder",
+
"bytes",
+
"chrono",
+
"crc",
+
"digest",
+
"dotenvy",
+
"either",
+
"futures-channel",
+
"futures-core",
+
"futures-io",
+
"futures-util",
+
"generic-array",
+
"hex",
+
"hkdf",
+
"hmac",
+
"itoa",
+
"log",
+
"md-5",
+
"memchr",
+
"once_cell",
+
"percent-encoding",
+
"rand",
+
"rsa 0.9.2",
+
"serde",
+
"sha1",
+
"sha2",
+
"smallvec",
+
"sqlx-core",
+
"stringprep",
+
"thiserror",
+
"tracing",
+
"whoami",
+
]
+
+
[[package]]
+
name = "sqlx-postgres"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a0db2df1b8731c3651e204629dd55e52adbae0462fa1bdcbed56a2302c18181e"
+
dependencies = [
+
"atoi",
+
"base64 0.21.2",
+
"bitflags 2.3.3",
+
"byteorder",
+
"chrono",
+
"crc",
+
"dotenvy",
+
"etcetera",
+
"futures-channel",
+
"futures-core",
+
"futures-io",
+
"futures-util",
+
"hex",
+
"hkdf",
+
"hmac",
+
"home",
+
"itoa",
+
"log",
+
"md-5",
+
"memchr",
+
"once_cell",
+
"rand",
+
"serde",
+
"serde_json",
+
"sha1",
+
"sha2",
+
"smallvec",
+
"sqlx-core",
+
"stringprep",
+
"thiserror",
+
"tracing",
+
"whoami",
+
]
+
+
[[package]]
+
name = "sqlx-sqlite"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "be4c21bf34c7cae5b283efb3ac1bcc7670df7561124dc2f8bdc0b59be40f79a2"
+
dependencies = [
+
"atoi",
+
"chrono",
+
"flume",
+
"futures-channel",
+
"futures-core",
+
"futures-executor",
+
"futures-intrusive",
+
"futures-util",
+
"libsqlite3-sys",
+
"log",
+
"percent-encoding",
+
"serde",
+
"sqlx-core",
+
"tracing",
+
"url",
+
]
+
+
[[package]]
+
name = "static_assertions"
+
version = "1.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
+
+
[[package]]
+
name = "stringprep"
+
version = "0.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "db3737bde7edce97102e0e2b15365bf7a20bfdb5f60f4f9e8d7004258a51a8da"
+
dependencies = [
+
"unicode-bidi",
+
"unicode-normalization",
+
]
+
+
[[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"
+
version = "0.25.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
+
+
[[package]]
+
name = "strum_macros"
+
version = "0.24.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e385be0d24f186b4ce2f9982191e7101bb737312ad61c1f2f984f34bcf85d59"
+
dependencies = [
+
"heck 0.4.1",
+
"proc-macro2",
+
"quote",
+
"rustversion",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "subtle"
+
version = "2.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
+
+
[[package]]
+
name = "svix"
+
version = "0.60.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1e4a0071892c06482d6585e7b15146b088f777d4da18aa924d9f960d59b7e4f4"
+
dependencies = [
+
"base64 0.13.1",
+
"hmac-sha256",
+
"http",
+
"reqwest",
+
"serde",
+
"serde_derive",
+
"serde_json",
+
"thiserror",
+
"time 0.3.23",
+
"url",
+
]
+
+
[[package]]
+
name = "svix-ksuid"
+
version = "0.5.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "8c0c2b19ae442a1842ba35f7eeff46e684bb24cb4a9571f41b48e5181e5eadd5"
+
dependencies = [
+
"base-encode",
+
"byteorder",
+
"chrono",
+
"getrandom",
+
]
+
+
[[package]]
+
name = "svix-server"
+
version = "1.13.0"
+
dependencies = [
+
"aide",
+
"anyhow",
+
"axum",
+
"axum-server",
+
"base64 0.13.1",
+
"bb8",
+
"bb8-redis",
+
"blake2",
+
"bytes",
+
"chacha20poly1305",
+
"chrono",
+
"clap",
+
"dotenv",
+
"ed25519-compact 1.0.16",
+
"enum_dispatch",
+
"figment",
+
"form_urlencoded",
+
"futures",
+
"hmac-sha256",
+
"http",
+
"hyper",
+
"hyper-openssl",
+
"indexmap 1.9.3",
+
"ipnet",
+
"jsonschema",
+
"jwt-simple",
+
"lapin",
+
"num_enum",
+
"once_cell",
+
"openssl",
+
"opentelemetry",
+
"opentelemetry-http",
+
"opentelemetry-otlp",
+
"rand",
+
"redis",
+
"regex",
+
"reqwest",
+
"schemars",
+
"sea-orm",
+
"sentry",
+
"serde",
+
"serde_json",
+
"serde_path_to_error",
+
"serde_urlencoded",
+
"sha2",
+
"sqlx",
+
"strum 0.24.1",
+
"strum_macros",
+
"svix",
+
"svix-ksuid",
+
"svix-server_derive",
+
"thiserror",
+
"tikv-jemallocator",
+
"time 0.3.23",
+
"tokio",
+
"tower",
+
"tower-http 0.4.3",
+
"tracing",
+
"tracing-opentelemetry",
+
"tracing-subscriber",
+
"trust-dns-resolver",
+
"url",
+
"urlencoding",
+
"validator",
+
]
+
+
[[package]]
+
name = "svix-server_derive"
+
version = "0.1.0"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "syn"
+
version = "1.0.109"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"unicode-ident",
+
]
+
+
[[package]]
+
name = "syn"
+
version = "2.0.29"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
+
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 = "tcp-stream"
+
version = "0.26.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4da30af7998f51ee1aa48ab24276fe303a697b004e31ff542b192c088d5630a5"
+
dependencies = [
+
"cfg-if",
+
"p12",
+
"rustls-connector",
+
"rustls-pemfile",
+
]
+
+
[[package]]
+
name = "tempfile"
+
version = "3.7.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5486094ee78b2e5038a6382ed7645bc084dc2ec433426ca4c3cb61e2007b8998"
+
dependencies = [
+
"cfg-if",
+
"fastrand 2.0.0",
+
"redox_syscall",
+
"rustix 0.38.4",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "thiserror"
+
version = "1.0.44"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "611040a08a0439f8248d1990b111c95baa9c704c805fa1f62104b39655fd7f90"
+
dependencies = [
+
"thiserror-impl",
+
]
+
+
[[package]]
+
name = "thiserror-impl"
+
version = "1.0.44"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "thread_local"
+
version = "1.1.7"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
+
dependencies = [
+
"cfg-if",
+
"once_cell",
+
]
+
+
[[package]]
+
name = "tikv-jemalloc-sys"
+
version = "0.5.4+5.3.0-patched"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9402443cb8fd499b6f327e40565234ff34dbda27460c5b47db0db77443dd85d1"
+
dependencies = [
+
"cc",
+
"libc",
+
]
+
+
[[package]]
+
name = "tikv-jemallocator"
+
version = "0.5.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "965fe0c26be5c56c94e38ba547249074803efd52adfb66de62107d95aab3eaca"
+
dependencies = [
+
"libc",
+
"tikv-jemalloc-sys",
+
]
+
+
[[package]]
+
name = "time"
+
version = "0.1.45"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
+
dependencies = [
+
"libc",
+
"wasi 0.10.0+wasi-snapshot-preview1",
+
"winapi",
+
]
+
+
[[package]]
+
name = "time"
+
version = "0.3.23"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "59e399c068f43a5d116fedaf73b203fa4f9c519f17e2b34f63221d3792f81446"
+
dependencies = [
+
"itoa",
+
"serde",
+
"time-core",
+
"time-macros",
+
]
+
+
[[package]]
+
name = "time-core"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
+
+
[[package]]
+
name = "time-macros"
+
version = "0.2.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "96ba15a897f3c86766b757e5ac7221554c6750054d74d5b28844fce5fb36a6c4"
+
dependencies = [
+
"time-core",
+
]
+
+
[[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.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
+
+
[[package]]
+
name = "tokio"
+
version = "1.29.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "532826ff75199d5833b9d2c5fe410f29235e25704ee5f0ef599fb51c21f4a4da"
+
dependencies = [
+
"autocfg",
+
"backtrace",
+
"bytes",
+
"libc",
+
"mio",
+
"num_cpus",
+
"parking_lot",
+
"pin-project-lite",
+
"signal-hook-registry",
+
"socket2 0.4.9",
+
"tokio-macros",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "tokio-io-timeout"
+
version = "1.2.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
+
dependencies = [
+
"pin-project-lite",
+
"tokio",
+
]
+
+
[[package]]
+
name = "tokio-macros"
+
version = "2.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "tokio-native-tls"
+
version = "0.3.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
+
dependencies = [
+
"native-tls",
+
"tokio",
+
]
+
+
[[package]]
+
name = "tokio-openssl"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c08f9ffb7809f1b20c1b398d92acf4cc719874b3b2b2d9ea2f09b4a80350878a"
+
dependencies = [
+
"futures-util",
+
"openssl",
+
"openssl-sys",
+
"tokio",
+
]
+
+
[[package]]
+
name = "tokio-rustls"
+
version = "0.24.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
+
dependencies = [
+
"rustls",
+
"tokio",
+
]
+
+
[[package]]
+
name = "tokio-stream"
+
version = "0.1.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
+
dependencies = [
+
"futures-core",
+
"pin-project-lite",
+
"tokio",
+
]
+
+
[[package]]
+
name = "tokio-util"
+
version = "0.6.10"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
+
dependencies = [
+
"bytes",
+
"futures-core",
+
"futures-sink",
+
"log",
+
"pin-project-lite",
+
"tokio",
+
]
+
+
[[package]]
+
name = "tokio-util"
+
version = "0.7.8"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
+
dependencies = [
+
"bytes",
+
"futures-core",
+
"futures-sink",
+
"pin-project-lite",
+
"tokio",
+
"tracing",
+
]
+
+
[[package]]
+
name = "toml"
+
version = "0.7.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
+
dependencies = [
+
"serde",
+
"serde_spanned",
+
"toml_datetime",
+
"toml_edit",
+
]
+
+
[[package]]
+
name = "toml_datetime"
+
version = "0.6.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
+
dependencies = [
+
"serde",
+
]
+
+
[[package]]
+
name = "toml_edit"
+
version = "0.19.14"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
+
dependencies = [
+
"indexmap 2.0.0",
+
"serde",
+
"serde_spanned",
+
"toml_datetime",
+
"winnow",
+
]
+
+
[[package]]
+
name = "tonic"
+
version = "0.6.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ff08f4649d10a70ffa3522ca559031285d8e421d727ac85c60825761818f5d0a"
+
dependencies = [
+
"async-stream",
+
"async-trait",
+
"base64 0.13.1",
+
"bytes",
+
"futures-core",
+
"futures-util",
+
"h2",
+
"http",
+
"http-body",
+
"hyper",
+
"hyper-timeout",
+
"percent-encoding",
+
"pin-project",
+
"prost",
+
"prost-derive",
+
"tokio",
+
"tokio-stream",
+
"tokio-util 0.6.10",
+
"tower",
+
"tower-layer",
+
"tower-service",
+
"tracing",
+
"tracing-futures",
+
]
+
+
[[package]]
+
name = "tonic-build"
+
version = "0.6.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9403f1bafde247186684b230dc6f38b5cd514584e8bec1dd32514be4745fa757"
+
dependencies = [
+
"proc-macro2",
+
"prost-build",
+
"quote",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "tower"
+
version = "0.4.13"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
+
dependencies = [
+
"futures-core",
+
"futures-util",
+
"indexmap 1.9.3",
+
"pin-project",
+
"pin-project-lite",
+
"rand",
+
"slab",
+
"tokio",
+
"tokio-util 0.7.8",
+
"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 1.3.2",
+
"bytes",
+
"futures-core",
+
"futures-util",
+
"http",
+
"http-body",
+
"http-range-header",
+
"pin-project-lite",
+
"tower",
+
"tower-layer",
+
"tower-service",
+
]
+
+
[[package]]
+
name = "tower-http"
+
version = "0.4.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "55ae70283aba8d2a8b411c695c437fe25b8b5e44e23e780662002fc72fb47a82"
+
dependencies = [
+
"bitflags 2.3.3",
+
"bytes",
+
"futures-core",
+
"futures-util",
+
"http",
+
"http-body",
+
"http-range-header",
+
"pin-project-lite",
+
"tower-layer",
+
"tower-service",
+
"tracing",
+
"uuid",
+
]
+
+
[[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-attributes"
+
version = "0.1.26"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
]
+
+
[[package]]
+
name = "tracing-core"
+
version = "0.1.31"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
+
dependencies = [
+
"once_cell",
+
"valuable",
+
]
+
+
[[package]]
+
name = "tracing-futures"
+
version = "0.2.5"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
+
dependencies = [
+
"pin-project",
+
"tracing",
+
]
+
+
[[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-opentelemetry"
+
version = "0.17.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "fbbe89715c1dbbb790059e2565353978564924ee85017b5fff365c872ff6721f"
+
dependencies = [
+
"once_cell",
+
"opentelemetry",
+
"tracing",
+
"tracing-core",
+
"tracing-log",
+
"tracing-subscriber",
+
]
+
+
[[package]]
+
name = "tracing-serde"
+
version = "0.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bc6b213177105856957181934e4920de57730fc69bf42c37ee5bb664d406d9e1"
+
dependencies = [
+
"serde",
+
"tracing-core",
+
]
+
+
[[package]]
+
name = "tracing-subscriber"
+
version = "0.3.17"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
+
dependencies = [
+
"matchers",
+
"nu-ansi-term",
+
"once_cell",
+
"regex",
+
"serde",
+
"serde_json",
+
"sharded-slab",
+
"smallvec",
+
"thread_local",
+
"tracing",
+
"tracing-core",
+
"tracing-log",
+
"tracing-serde",
+
]
+
+
[[package]]
+
name = "trust-dns-proto"
+
version = "0.22.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26"
+
dependencies = [
+
"async-trait",
+
"cfg-if",
+
"data-encoding",
+
"enum-as-inner",
+
"futures-channel",
+
"futures-io",
+
"futures-util",
+
"idna 0.2.3",
+
"ipnet",
+
"lazy_static",
+
"rand",
+
"smallvec",
+
"thiserror",
+
"tinyvec",
+
"tokio",
+
"tracing",
+
"url",
+
]
+
+
[[package]]
+
name = "trust-dns-resolver"
+
version = "0.22.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe"
+
dependencies = [
+
"cfg-if",
+
"futures-util",
+
"ipconfig",
+
"lazy_static",
+
"lru-cache",
+
"parking_lot",
+
"resolv-conf",
+
"smallvec",
+
"thiserror",
+
"tokio",
+
"tracing",
+
"trust-dns-proto",
+
]
+
+
[[package]]
+
name = "try-lock"
+
version = "0.2.4"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
+
+
[[package]]
+
name = "typenum"
+
version = "1.16.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
+
+
[[package]]
+
name = "uname"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8"
+
dependencies = [
+
"libc",
+
]
+
+
[[package]]
+
name = "uncased"
+
version = "0.9.9"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9b9bc53168a4be7402ab86c3aad243a84dd7381d09be0eddc81280c1da95ca68"
+
dependencies = [
+
"version_check",
+
]
+
+
[[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.13"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
+
+
[[package]]
+
name = "unicode-ident"
+
version = "1.0.11"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
+
+
[[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.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
+
+
[[package]]
+
name = "unicode_categories"
+
version = "0.1.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
+
+
[[package]]
+
name = "universal-hash"
+
version = "0.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
+
dependencies = [
+
"generic-array",
+
"subtle",
+
]
+
+
[[package]]
+
name = "untrusted"
+
version = "0.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
+
+
[[package]]
+
name = "ureq"
+
version = "2.7.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "0b11c96ac7ee530603dcdf68ed1557050f374ce55a5a07193ebf8cbc9f8927e9"
+
dependencies = [
+
"base64 0.21.2",
+
"log",
+
"native-tls",
+
"once_cell",
+
"url",
+
]
+
+
[[package]]
+
name = "url"
+
version = "2.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
+
dependencies = [
+
"form_urlencoded",
+
"idna 0.4.0",
+
"percent-encoding",
+
"serde",
+
]
+
+
[[package]]
+
name = "urlencoding"
+
version = "2.1.3"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
+
+
[[package]]
+
name = "utf8parse"
+
version = "0.2.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
+
+
[[package]]
+
name = "uuid"
+
version = "1.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "79daa5ed5740825c40b389c5e50312b9c86df53fccd33f281df655642b43869d"
+
dependencies = [
+
"getrandom",
+
"serde",
+
]
+
+
[[package]]
+
name = "validator"
+
version = "0.14.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "6d0f08911ab0fee2c5009580f04615fa868898ee57de10692a45da0c3bcc3e5e"
+
dependencies = [
+
"idna 0.2.3",
+
"lazy_static",
+
"regex",
+
"serde",
+
"serde_derive",
+
"serde_json",
+
"url",
+
"validator_derive",
+
"validator_types",
+
]
+
+
[[package]]
+
name = "validator_derive"
+
version = "0.14.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "d85135714dba11a1bd0b3eb1744169266f1a38977bf4e3ff5e2e1acb8c2b7eee"
+
dependencies = [
+
"if_chain",
+
"lazy_static",
+
"proc-macro-error",
+
"proc-macro2",
+
"quote",
+
"regex",
+
"syn 1.0.109",
+
"validator_types",
+
]
+
+
[[package]]
+
name = "validator_types"
+
version = "0.14.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ded9d97e1d42327632f5f3bae6403c04886e2de3036261ef42deebd931a6a291"
+
dependencies = [
+
"proc-macro2",
+
"syn 1.0.109",
+
]
+
+
[[package]]
+
name = "valuable"
+
version = "0.1.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
+
+
[[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.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
+
dependencies = [
+
"try-lock",
+
]
+
+
[[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.87"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
+
dependencies = [
+
"cfg-if",
+
"wasm-bindgen-macro",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-backend"
+
version = "0.2.87"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
+
dependencies = [
+
"bumpalo",
+
"log",
+
"once_cell",
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
"wasm-bindgen-shared",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-futures"
+
version = "0.4.37"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
+
dependencies = [
+
"cfg-if",
+
"js-sys",
+
"wasm-bindgen",
+
"web-sys",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-macro"
+
version = "0.2.87"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
+
dependencies = [
+
"quote",
+
"wasm-bindgen-macro-support",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-macro-support"
+
version = "0.2.87"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
+
dependencies = [
+
"proc-macro2",
+
"quote",
+
"syn 2.0.29",
+
"wasm-bindgen-backend",
+
"wasm-bindgen-shared",
+
]
+
+
[[package]]
+
name = "wasm-bindgen-shared"
+
version = "0.2.87"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
+
+
[[package]]
+
name = "web-sys"
+
version = "0.3.64"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
+
dependencies = [
+
"js-sys",
+
"wasm-bindgen",
+
]
+
+
[[package]]
+
name = "webpki"
+
version = "0.22.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "f0e74f82d49d545ad128049b7e88f6576df2da6b02e9ce565c6f533be576957e"
+
dependencies = [
+
"ring",
+
"untrusted",
+
]
+
+
[[package]]
+
name = "webpki-roots"
+
version = "0.22.6"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b6c71e40d7d2c34a5106301fb632274ca37242cd0c9d3e64dbece371a40a2d87"
+
dependencies = [
+
"webpki",
+
]
+
+
[[package]]
+
name = "webpki-roots"
+
version = "0.24.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b291546d5d9d1eab74f069c77749f2cb8504a12caa20f0f2de93ddbf6f411888"
+
dependencies = [
+
"rustls-webpki",
+
]
+
+
[[package]]
+
name = "which"
+
version = "4.4.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
+
dependencies = [
+
"either",
+
"libc",
+
"once_cell",
+
]
+
+
[[package]]
+
name = "whoami"
+
version = "1.4.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
+
+
[[package]]
+
name = "widestring"
+
version = "1.0.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"
+
+
[[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-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.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
+
dependencies = [
+
"windows-targets",
+
]
+
+
[[package]]
+
name = "windows-sys"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
+
dependencies = [
+
"windows-targets",
+
]
+
+
[[package]]
+
name = "windows-targets"
+
version = "0.48.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
+
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.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
+
+
[[package]]
+
name = "windows_aarch64_msvc"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
+
+
[[package]]
+
name = "windows_i686_gnu"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
+
+
[[package]]
+
name = "windows_i686_msvc"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
+
+
[[package]]
+
name = "windows_x86_64_gnu"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
+
+
[[package]]
+
name = "windows_x86_64_gnullvm"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
+
+
[[package]]
+
name = "windows_x86_64_msvc"
+
version = "0.48.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
+
+
[[package]]
+
name = "winnow"
+
version = "0.5.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "81fac9742fd1ad1bd9643b991319f72dd031016d44b77039a26977eb667141e7"
+
dependencies = [
+
"memchr",
+
]
+
+
[[package]]
+
name = "winreg"
+
version = "0.10.1"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
+
dependencies = [
+
"winapi",
+
]
+
+
[[package]]
+
name = "winreg"
+
version = "0.50.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
+
dependencies = [
+
"cfg-if",
+
"windows-sys",
+
]
+
+
[[package]]
+
name = "yansi"
+
version = "1.0.0-rc"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "9ee746ad3851dd3bc40e4a028ab3b00b99278d929e48957bcb2d111874a7e43e"
+
+
[[package]]
+
name = "yasna"
+
version = "0.5.2"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
+
+
[[package]]
+
name = "zeroize"
+
version = "1.6.0"
+
source = "registry+https://github.com/rust-lang/crates.io-index"
+
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
+54
pkgs/by-name/sv/svix-server/package.nix
···
+
{ lib, rustPlatform, fetchFromGitHub, pkg-config, openssl, protobuf, stdenv
+
, darwin }:
+
+
rustPlatform.buildRustPackage rec {
+
pname = "svix-server";
+
version = "1.13.0";
+
+
src = fetchFromGitHub {
+
owner = "svix";
+
repo = "svix-webhooks";
+
rev = "v${version}";
+
hash = "sha256-6758ej7bTvwZPWifl239rQMazM8uw+Y4+3EbjE8XsTg=";
+
};
+
+
sourceRoot = "source/server";
+
+
cargoLock = {
+
lockFile = ./Cargo.lock;
+
outputHashes = {
+
"aide-0.10.0" = "sha256-hUUer5D6OA4F0Co3JgygY3g89cKIChFest67ABIX+4M=";
+
"hyper-0.14.23" = "sha256-7MBCAjKYCdDbqCmYg3eYE74h7K7yTjfVoo0sjxr4g/s=";
+
};
+
};
+
+
nativeBuildInputs = [ pkg-config ];
+
+
buildInputs = [
+
openssl
+
protobuf
+
] ++ lib.optionals stdenv.isDarwin [
+
darwin.apple_sdk.frameworks.CoreServices
+
darwin.apple_sdk.frameworks.Security
+
darwin.apple_sdk.frameworks.SystemConfiguration
+
];
+
+
# needed for internal protobuf c wrapper library
+
PROTOC = "${protobuf}/bin/protoc";
+
PROTOC_INCLUDE = "${protobuf}/include";
+
+
OPENSSL_NO_VENDOR = 1;
+
+
# disable tests because they require postgres and redis to be running
+
doCheck = false;
+
+
meta = with lib; {
+
mainProgram = "svix-server";
+
description = "The enterprise-ready webhooks service";
+
homepage = "https://github.com/svix/svix-webhooks";
+
changelog =
+
"https://github.com/svix/svix-webhooks/releases/tag/v${version}";
+
license = licenses.mit;
+
maintainers = with maintainers; [ techknowlogick ];
+
};
+
}
+17 -1
pkgs/desktops/xfce/core/xfconf/default.nix
···
-
{ lib, mkXfceDerivation, libxfce4util, gobject-introspection, vala }:
+
{ lib
+
, mkXfceDerivation
+
, fetchpatch
+
, libxfce4util
+
, gobject-introspection
+
, vala
+
}:
mkXfceDerivation {
category = "xfce";
···
version = "4.18.2";
sha256 = "sha256-FVNkcwOS4feMocx3vYhuWNs1EkXDrM1FaKkMhIOuPHI=";
+
+
patches = [
+
# fixes a segfault, can likely be removed with 4.18.3,
+
# see https://gitlab.xfce.org/xfce/xfconf/-/issues/35#note_81151
+
(fetchpatch {
+
name = "cache-fix-uncached-value.patch";
+
url = "https://gitlab.xfce.org/xfce/xfconf/-/commit/03f7ff961fd46c9141aba624a278e19de0bf3211.diff";
+
hash = "sha256-n9Wvt7NfKMxs2AcjUWgs4vZgzLUG9jyEVTZxINko4h8=";
+
})
+
];
nativeBuildInputs = [ gobject-introspection vala ];
+2 -2
pkgs/development/libraries/enchant/2.x.nix
···
stdenv.mkDerivation rec {
pname = "enchant";
-
version = "2.6.1";
+
version = "2.6.2";
outputs = [ "out" "dev" ];
src = fetchurl {
url = "https://github.com/AbiWord/${pname}/releases/download/v${version}/${pname}-${version}.tar.gz";
-
hash = "sha256-8k4SRpE3rh0DFAu5AypHpZR8NvTR4vErkpBhAF6xUnk=";
+
hash = "sha256-ZoanKOVudg+N7gmiLw+1O0bunb59ZM+eW7NaZYv/fh0=";
};
nativeBuildInputs = [
+5 -1
pkgs/development/libraries/libhugetlbfs/default.nix
···
installTargets = [ "install" "install-docs" ];
meta = with lib; {
-
broken = (stdenv.isLinux && stdenv.isAarch64);
description = "library and utilities for Linux hugepages";
maintainers = with maintainers; [ qyliss ];
license = licenses.lgpl21Plus;
platforms = platforms.linux;
+
badPlatforms = flatten [
+
systems.inspect.platformPatterns.isStatic
+
systems.inspect.patterns.isMusl
+
systems.inspect.patterns.isAarch64
+
];
};
}
+11 -1
pkgs/development/libraries/mm-common/default.nix
···
-
{ lib, stdenv
+
{ lib
+
, stdenv
, fetchurl
+
, bash
, gnome
, meson
, python3
···
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "cFxtKfQRaim95ONs/BsEbJK274xtrk6uyFAYdH5tpao=";
};
+
+
strictDeps = true;
nativeBuildInputs = [
meson
python3
ninja
+
];
+
+
# for shebangs
+
buildInputs = [
+
python3
+
bash
];
passthru = {
+2 -2
pkgs/development/libraries/physics/clhep/default.nix
···
stdenv.mkDerivation rec {
pname = "clhep";
-
version = "2.4.6.4";
+
version = "2.4.7.1";
src = fetchurl {
url = "https://proj-clhep.web.cern.ch/proj-clhep/dist1/clhep-${version}.tgz";
-
hash = "sha256-SciTMPGQPvcH08XXnBanxabyyQ/CkOIDTuODSAlInlc=";
+
hash = "sha256-HIMEp3cqxrmRlfEwA3jG4930rQfIXWSgRQVlKruKVfk=";
};
prePatch = ''
+49
pkgs/development/lua-modules/updater/default.nix
···
+
{ buildPythonApplication
+
, nix
+
, makeWrapper
+
, python3Packages
+
, lib
+
# , nix-prefetch-git
+
, nix-prefetch-scripts
+
, luarocks-nix
+
}:
+
let
+
+
path = lib.makeBinPath [ nix nix-prefetch-scripts luarocks-nix ];
+
in
+
buildPythonApplication {
+
pname = "luarocks-packages-updater";
+
version = "0.1";
+
+
format = "other";
+
+
nativeBuildInputs = [
+
makeWrapper
+
python3Packages.wrapPython
+
];
+
propagatedBuildInputs = [
+
python3Packages.gitpython
+
];
+
+
dontUnpack = true;
+
+
installPhase =
+
''
+
mkdir -p $out/bin $out/lib
+
cp ${./updater.py} $out/bin/luarocks-packages-updater
+
cp ${../../../../maintainers/scripts/pluginupdate.py} $out/lib/pluginupdate.py
+
+
# wrap python scripts
+
makeWrapperArgs+=( --prefix PATH : "${path}" --prefix PYTHONPATH : "$out/lib" )
+
wrapPythonProgramsIn "$out"
+
'';
+
+
shellHook = ''
+
export PYTHONPATH="maintainers/scripts:$PYTHONPATH"
+
export PATH="${path}:$PATH"
+
'';
+
+
meta.mainProgram = "luarocks-packages-updater";
+
}
+
+
+217
pkgs/development/lua-modules/updater/updater.py
···
+
#!/usr/bin/env python
+
# format:
+
# $ nix run nixpkgs#python3Packages.black -- update.py
+
# type-check:
+
# $ nix run nixpkgs#python3Packages.mypy -- update.py
+
# linted:
+
# $ nix run nixpkgs#python3Packages.flake8 -- --ignore E501,E265,E402 update.py
+
+
import inspect
+
import os
+
import tempfile
+
import shutil
+
from dataclasses import dataclass
+
import subprocess
+
import csv
+
import logging
+
import textwrap
+
from multiprocessing.dummy import Pool
+
+
from typing import List, Tuple, Optional
+
from pathlib import Path
+
+
log = logging.getLogger()
+
log.addHandler(logging.StreamHandler())
+
+
ROOT = Path(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))).parent.parent # type: ignore
+
import pluginupdate
+
from pluginupdate import update_plugins, FetchConfig, CleanEnvironment
+
+
PKG_LIST = "maintainers/scripts/luarocks-packages.csv"
+
TMP_FILE = "$(mktemp)"
+
GENERATED_NIXFILE = "pkgs/development/lua-modules/generated-packages.nix"
+
+
HEADER = """/* {GENERATED_NIXFILE} is an auto-generated file -- DO NOT EDIT!
+
Regenerate it with: nix run nixpkgs#update-luarocks-packages
+
You can customize the generated packages in pkgs/development/lua-modules/overrides.nix
+
*/
+
""".format(
+
GENERATED_NIXFILE=GENERATED_NIXFILE
+
)
+
+
FOOTER = """
+
}
+
/* GENERATED - do not edit this file */
+
"""
+
+
+
@dataclass
+
class LuaPlugin:
+
name: str
+
"""Name of the plugin, as seen on luarocks.org"""
+
src: str
+
"""address to the git repository"""
+
ref: Optional[str]
+
"""git reference (branch name/tag)"""
+
version: Optional[str]
+
"""Set it to pin a package """
+
server: Optional[str]
+
"""luarocks.org registers packages under different manifests.
+
Its value can be 'http://luarocks.org/dev'
+
"""
+
luaversion: Optional[str]
+
"""Attribue of the lua interpreter if a package is available only for a specific lua version"""
+
maintainers: Optional[str]
+
""" Optional string listing maintainers separated by spaces"""
+
+
@property
+
def normalized_name(self) -> str:
+
return self.name.replace(".", "-")
+
+
+
# rename Editor to LangUpdate/ EcosystemUpdater
+
class LuaEditor(pluginupdate.Editor):
+
+
def create_parser(self):
+
parser = super().create_parser()
+
parser.set_defaults(proc=1)
+
return parser
+
+
def get_current_plugins(self):
+
return []
+
+
def load_plugin_spec(self, input_file) -> List[LuaPlugin]:
+
luaPackages = []
+
csvfilename = input_file
+
log.info("Loading package descriptions from %s", csvfilename)
+
+
with open(csvfilename, newline="") as csvfile:
+
reader = csv.DictReader(
+
csvfile,
+
)
+
for row in reader:
+
# name,server,version,luaversion,maintainers
+
plugin = LuaPlugin(**row)
+
luaPackages.append(plugin)
+
return luaPackages
+
+
def update(self, args):
+
update_plugins(self, args)
+
+
def generate_nix(self, results: List[Tuple[LuaPlugin, str]], outfilename: str):
+
with tempfile.NamedTemporaryFile("w+") as f:
+
f.write(HEADER)
+
header2 = textwrap.dedent(
+
"""
+
{ stdenv, lib, fetchurl, fetchgit, callPackage, ... } @ args:
+
final: prev:
+
{
+
"""
+
)
+
f.write(header2)
+
for plugin, nix_expr in results:
+
f.write(f"{plugin.normalized_name} = {nix_expr}")
+
f.write(FOOTER)
+
f.flush()
+
+
# if everything went fine, move the generated file to its destination
+
# using copy since move doesn't work across disks
+
shutil.copy(f.name, outfilename)
+
+
print(f"updated {outfilename}")
+
+
@property
+
def attr_path(self):
+
return "luaPackages"
+
+
def get_update(self, input_file: str, outfile: str, config: FetchConfig):
+
_prefetch = generate_pkg_nix
+
+
def update() -> dict:
+
plugin_specs = self.load_plugin_spec(input_file)
+
sorted_plugin_specs = sorted(plugin_specs, key=lambda v: v.name.lower())
+
+
try:
+
pool = Pool(processes=config.proc)
+
results = pool.map(_prefetch, sorted_plugin_specs)
+
finally:
+
pass
+
+
self.generate_nix(results, outfile)
+
+
redirects = {}
+
return redirects
+
+
return update
+
+
def rewrite_input(self, input_file: str, *args, **kwargs):
+
# vim plugin reads the file before update but that shouldn't be our case
+
# not implemented yet
+
# fieldnames = ['name', 'server', 'version', 'luaversion', 'maintainers']
+
# input_file = "toto.csv"
+
# with open(input_file, newline='') as csvfile:
+
# writer = csv.DictWriter(csvfile, fieldnames=fieldnames)
+
# writer.writeheader()
+
# for row in reader:
+
# # name,server,version,luaversion,maintainers
+
# plugin = LuaPlugin(**row)
+
# luaPackages.append(plugin)
+
pass
+
+
+
def generate_pkg_nix(plug: LuaPlugin):
+
"""
+
Generate nix expression for a luarocks package
+
Our cache key associates "p.name-p.version" to its rockspec
+
"""
+
log.debug("Generating nix expression for %s", plug.name)
+
+
cmd = ["luarocks", "nix"]
+
+
if plug.maintainers:
+
cmd.append(f"--maintainers={plug.maintainers}")
+
+
# if plug.server == "src":
+
if plug.src != "":
+
if plug.src is None:
+
msg = (
+
"src must be set when 'version' is set to \"src\" for package %s"
+
% plug.name
+
)
+
log.error(msg)
+
raise RuntimeError(msg)
+
log.debug("Updating from source %s", plug.src)
+
cmd.append(plug.src)
+
# update the plugin from luarocks
+
else:
+
cmd.append(plug.name)
+
if plug.version and plug.version != "src":
+
cmd.append(plug.version)
+
+
if plug.server != "src" and plug.server:
+
cmd.append(f"--only-server={plug.server}")
+
+
if plug.luaversion:
+
cmd.append(f"--lua-version={plug.luaversion}")
+
+
log.debug("running %s", " ".join(cmd))
+
+
output = subprocess.check_output(cmd, text=True)
+
output = "callPackage(" + output.strip() + ") {};\n\n"
+
return (plug, output)
+
+
+
def main():
+
editor = LuaEditor(
+
"lua",
+
ROOT,
+
"",
+
default_in=PKG_LIST,
+
default_out=GENERATED_NIXFILE,
+
)
+
+
editor.run()
+
+
+
if __name__ == "__main__":
+
main()
+2 -2
pkgs/development/python-modules/rotary-embedding-torch/default.nix
···
buildPythonPackage rec {
pname = "rotary-embedding-torch";
-
version = "0.3.3";
+
version = "0.3.5";
pyproject = true;
src = fetchFromGitHub {
owner = "lucidrains";
repo = "rotary-embedding-torch";
rev = version;
-
hash = "sha256-uTOKdxqbSLRJl0gnz3TvpVwhrfqflAp0wfn6d13+YrM=";
+
hash = "sha256-dST3eJnOcG2s9tiD/Fb9BvLS6nIpE8RXly92PK/gCC8=";
};
nativeBuildInputs = [
+2 -2
pkgs/development/tools/language-servers/kotlin-language-server/default.nix
···
stdenv.mkDerivation rec {
pname = "kotlin-language-server";
-
version = "1.3.5";
+
version = "1.3.7";
src = fetchzip {
url = "https://github.com/fwcd/kotlin-language-server/releases/download/${version}/server.zip";
-
hash = "sha256-hoZDbhedauW1TK78rX37Gwn/6OWLXZzy8wKsUrbTmKI=";
+
hash = "sha256-BEQywg3ZU4LtF9trntGbDp64SIWH4y93o/VVMSRP+cc=";
};
dontBuild = true;
+3 -3
pkgs/development/tools/rust/cargo-insta/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "cargo-insta";
-
version = "1.32.0";
+
version = "1.33.0";
src = fetchFromGitHub {
owner = "mitsuhiko";
repo = "insta";
rev = "refs/tags/${version}";
-
hash = "sha256-s6d0q4K2UTG+BWzvH5KOAllzYAkEapEuDoiI9KQW31I=";
+
hash = "sha256-w/dxIQ7KRrn86PwiE/g5L9Gn8KszPF9u/zlwE/FYDu4=";
};
sourceRoot = "${src.name}/cargo-insta";
-
cargoHash = "sha256-ZQUzoKE3OGaY22VYiku7GqjGN9jUNx09a0EcgCRzzcM=";
+
cargoHash = "sha256-mEtmZ+wFo1WI1IMNYsVqSVScFDLdiXBbghH7c0l/3NQ=";
meta = with lib; {
description = "A Cargo subcommand for snapshot testing";
+3 -3
pkgs/development/tools/rust/cargo-make/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "cargo-make";
-
version = "0.37.2";
+
version = "0.37.3";
src = fetchFromGitHub {
owner = "sagiegurari";
repo = "cargo-make";
rev = version;
-
hash = "sha256-uYMPRbh2stIkNxehPnJPryIo+bGxDG7g+l4bTkEQWoY=";
+
hash = "sha256-7xWxIvMaoKZ1TVgfdBUDvK8VJzW6alrO8xFvSlMusOY=";
};
-
cargoHash = "sha256-CXGar3Xp6iBldBGOxjXRBGBwjNh4Kv6SwIkaNKEnkQs=";
+
cargoHash = "sha256-2I+VZD4KLTtoTIb2NNpfLcFH/lmD6Z/TTPJrr3FcZzI=";
nativeBuildInputs = [ pkg-config ];
+3 -3
pkgs/development/tools/rust/cargo-modules/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "cargo-modules";
-
version = "0.9.4";
+
version = "0.10.2";
src = fetchFromGitHub {
owner = "regexident";
repo = pname;
rev = version;
-
hash = "sha256-BFASEf9WUVJHsakujjeBBxfxPYlsuzonqFuDLXmLgwc=";
+
hash = "sha256-71NRaIDWPbhDn6cfYhyZZzO2huQlj1vkKdBV6WJqI9s=";
};
-
cargoHash = "sha256-FojpC4RMrW0hZ0jvXxznxR6rKDDxrNMPoLoHEscOPEo=";
+
cargoHash = "sha256-lgqe9pXg/PE9WrXVpSJWYE6FUMGBgUDpEyJ31RSEj5A=";
buildInputs = lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.CoreServices
+1 -1
pkgs/os-specific/linux/nvme-cli/default.nix
···
libnvme
json_c
zlib
-
] ++ lib.optionals (!(stdenv.hostPlatform.isStatic || stdenv.hostPlatform.isMusl)) [
+
] ++ lib.optionals (lib.meta.availableOn stdenv.hostPlatform libhugetlbfs) [
libhugetlbfs
];
+1
pkgs/servers/matrix-hebbot/default.nix
···
homepage = "https://github.com/haecker-felix/hebbot";
changelog = "https://github.com/haecker-felix/hebbot/releases/tag/v${version}";
license = with licenses; [ agpl3 ];
+
mainProgram = "hebbot";
maintainers = with maintainers; [ a-kenji ];
};
}
+12 -4
pkgs/servers/sslh/default.nix
···
-
{ lib, stdenv, fetchFromGitHub, libcap, libconfig, perl, tcp_wrappers, pcre2, nixosTests }:
+
{ lib, stdenv, fetchFromGitHub, fetchpatch, libcap, libev, libconfig, perl, tcp_wrappers, pcre2, nixosTests }:
stdenv.mkDerivation rec {
pname = "sslh";
-
version = "1.22c";
+
version = "2.0.0";
src = fetchFromGitHub {
owner = "yrutschle";
repo = pname;
rev = "v${version}";
-
sha256 = "sha256-A+nUWiOPoz/T5afZUzt5In01e049TgHisTF8P5Vj180=";
+
hash = "sha256-KfNQWSmAf86AFoInKlNZoiSuSwVLaJVnfo7SjZVY/VU=";
};
postPatch = "patchShebangs *.sh";
-
buildInputs = [ libcap libconfig perl tcp_wrappers pcre2 ];
+
buildInputs = [ libcap libev libconfig perl tcp_wrappers pcre2 ];
makeFlags = [ "USELIBCAP=1" "USELIBWRAP=1" ];
+
+
postInstall = ''
+
# install all flavours
+
install -p sslh-fork "$out/sbin/sslh-fork"
+
install -p sslh-select "$out/sbin/sslh-select"
+
install -p sslh-ev "$out/sbin/sslh-ev"
+
ln -sf sslh-fork "$out/sbin/sslh"
+
'';
installFlags = [ "PREFIX=$(out)" ];
+3 -3
pkgs/tools/networking/hurl/default.nix
···
rustPlatform.buildRustPackage rec {
pname = "hurl";
-
version = "4.0.0";
+
version = "4.1.0";
src = fetchFromGitHub {
owner = "Orange-OpenSource";
repo = pname;
rev = version;
-
hash = "sha256-ubzcCY3ccjt2VSZNx9+l3M/z4o7wWcE7USAlA9BnQY0=";
+
hash = "sha256-JsgAdLjDQQkLyLFoZCVG2jZ8vQDaGUPtPmHYAcwADQg";
};
-
cargoHash = "sha256-C8WeYFaqF748QZkp/CppqJjF3QW1k7OWXycxSoxKPOI=";
+
cargoHash = "sha256-IE9c57rj8EANyj4KmbyagafJyMovzHOhp0PFCQBzqdA=";
nativeBuildInputs = [
pkg-config
+4
pkgs/tools/system/netdata/default.nix
···
];
postFixup = ''
+
# remove once https://github.com/netdata/netdata/pull/16300 merged
+
substituteInPlace $out/bin/netdata-claim.sh \
+
--replace /bin/echo echo
+
wrapProgram $out/bin/netdata-claim.sh --prefix PATH : ${lib.makeBinPath [ openssl ]}
wrapProgram $out/libexec/netdata/plugins.d/cgroup-network-helper.sh --prefix PATH : ${lib.makeBinPath [ bash ]}
wrapProgram $out/bin/netdatacli --set NETDATA_PIPENAME /run/netdata/ipc
+4
pkgs/top-level/aliases.nix
···
chefdk = throw "chefdk has been removed due to being deprecated upstream by Chef Workstation"; # Added 2023-03-22
chocolateDoom = chocolate-doom; # Added 2023-05-01
chrome-gnome-shell = gnome-browser-connector; # Added 2022-07-27
+
chromiumBeta = throw "'chromiumBeta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18
+
chromiumDev = throw "'chromiumDev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'chromium' instead."; # Added 2023-10-18
citra = citra-nightly; # added 2022-05-17
clang-ocl = throw "'clang-ocl' has been replaced with 'rocmPackages.clang-ocl'"; # Added 2023-10-08
inherit (libsForQt5.mauiPackages) clip; # added 2022-05-17
···
godot-headless = throw "godot-headless has been renamed to godot3-headless to distinguish from version 4"; # Added 2023-07-16
godot-server = throw "godot-server has been renamed to godot3-server to distinguish from version 4"; # Added 2023-07-16
+
google-chrome-beta = throw "'google-chrome-beta' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18
+
google-chrome-dev = throw "'google-chrome-dev' has been removed due to the lack of maintenance in nixpkgs. Consider using 'google-chrome' instead."; # Added 2023-10-18
google-gflags = throw "'google-gflags' has been renamed to/replaced by 'gflags'"; # Converted to throw 2023-09-10
go-thumbnailer = thud; # Added 2023-09-21
gometer = throw "gometer has been removed from nixpkgs because goLance stopped offering Linux support"; # Added 2023-02-10
+5 -8
pkgs/top-level/all-packages.nix
···
luarocks = luaPackages.luarocks;
luarocks-nix = luaPackages.luarocks-nix;
+
luarocks-packages-updater = callPackage ../development/lua-modules/updater {
+
inherit (python3Packages) buildPythonApplication ;
+
};
+
+
luau = callPackage ../development/interpreters/luau { };
lune = callPackage ../development/interpreters/lune { };
···
chromium = callPackage ../applications/networking/browsers/chromium (config.chromium or {});
-
chromiumBeta = lowPrio (chromium.override { channel = "beta"; });
-
-
chromiumDev = lowPrio (chromium.override { channel = "dev"; });
-
chuck = callPackage ../applications/audio/chuck {
inherit (darwin) DarwinTools;
inherit (darwin.apple_sdk.frameworks) AppKit Carbon CoreAudio CoreMIDI CoreServices Kernel MultitouchSupport;
···
googleearth-pro = libsForQt5.callPackage ../applications/misc/googleearth-pro { };
google-chrome = callPackage ../applications/networking/browsers/google-chrome { };
-
-
google-chrome-beta = google-chrome.override { chromium = chromiumBeta; channel = "beta"; };
-
-
google-chrome-dev = google-chrome.override { chromium = chromiumDev; channel = "dev"; };
go-graft = callPackage ../applications/networking/go-graft { };
store.png

This is a binary file and will not be displayed.