tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge remote-tracking branch 'origin/master' into staging-next
K900
1 year ago
a7e86ba1
6d0b733a
+3846
-4211
96 changed files
expand all
collapse all
unified
split
maintainers
maintainer-list.nix
nixos
lib
make-ext4-fs.nix
modules
installer
sd-card
sd-image-aarch64.nix
services
audio
navidrome.nix
databases
couchdb.nix
misc
anki-sync-server.nix
pkgs
applications
networking
browsers
firefox-bin
update.nix
mailreaders
thunderbird
packages.nix
thunderbird-bin
release_sources.nix
office
qownnotes
default.nix
science
logic
coq
default.nix
build-support
dart
pub2nix
package-config.nix
by-name
ba
bandwhich
package.nix
ek
eksctl
package.nix
fl
flarum
composer.lock
package.nix
flyctl
package.nix
gr
granian
package.nix
li
libvdwxc
package.nix
ma
markdown2html-converter
Cargo.lock
package.nix
mo
mongodb-ce
package.nix
ni
nimble
lock.json
package.nix
os
osu-lazer
deps.nix
package.nix
osu-lazer-bin
package.nix
py
pyflyby
package.nix
rd
rdma-core
package.nix
s7
s7
package.nix
si
simdutf
package.nix
st
starboard
package.nix
tt
ttaenc
makefile.patch
package.nix
ttaenc-inline.patch
va
vault-ssh-plus
package.nix
xc
xcursor-pro
package.nix
sources.nix
update.sh
ya
yaralyzer
package.nix
ze
zenoh
package.nix
zm
zmap
package.nix
development
compilers
llvm
common
common-let.nix
coq-modules
ExtLib
default.nix
InfSeqExt
default.nix
MenhirLib
default.nix
StructTact
default.nix
aac-tactics
default.nix
atbr
default.nix
bbv
default.nix
bignums
default.nix
ceres
default.nix
coinduction
default.nix
coq-elpi
default.nix
coq-hammer
tactics.nix
equations
default.nix
flocq
default.nix
itauto
default.nix
mathcomp
default.nix
paco
default.nix
rewriter
default.nix
smtcoq
default.nix
stalmarck
default.nix
stdlib
default.nix
stdpp
default.nix
tlc
default.nix
waterproof
default.nix
libraries
allegro
5.nix
hunspell
dictionaries.nix
itk
generic.nix
ocaml-modules
ocplib-simplex
default.nix
python-modules
ailment
default.nix
aiohomeconnect
default.nix
aiortm
default.nix
angr
default.nix
archinfo
default.nix
boto3-stubs
default.nix
botocore-stubs
default.nix
claripy
default.nix
cle
default.nix
jupyter-ydoc
default.nix
monzopy
default.nix
mypy-boto3
default.nix
pyvex
default.nix
tencentcloud-sdk-python
default.nix
webexteamssdk
default.nix
zenoh
default.nix
misc
tmux-plugins
default.nix
servers
akkoma
0001-fix-tzdata.patch
default.nix
mix.nix
nextcloud
default.nix
sql
postgresql
ext
pg_cron.nix
tools
networking
bandwhich
Cargo.lock
top-level
all-packages.nix
coq-packages.nix
+9
-2
maintainers/maintainer-list.nix
···
12348
12348
github = "lachrymaLF";
12349
12349
githubId = 13716477;
12350
12350
};
12351
12351
+
lactose = {
12352
12352
+
name = "lactose";
12353
12353
+
email = "lactose@allthingslinux.com";
12354
12354
+
github = "juuyokka";
12355
12355
+
githubId = 15185244;
12356
12356
+
};
12351
12357
lafrenierejm = {
12352
12358
email = "joseph@lafreniere.xyz";
12353
12359
github = "lafrenierejm";
···
15573
15579
name = "Nathan Yong";
15574
15580
};
15575
15581
natsukagami = {
15576
15576
-
email = "natsukagami@gmail.com";
15582
15582
+
name = "Natsu Kagami";
15583
15583
+
email = "nki@nkagami.me";
15584
15584
+
matrix = "@nki:m.nkagami.me";
15577
15585
github = "natsukagami";
15578
15586
githubId = 9061737;
15579
15579
-
name = "Natsu Kagami";
15580
15587
keys = [ { fingerprint = "5581 26DC 886F E14D 501D B0F2 D6AD 7B57 A992 460C"; } ];
15581
15588
};
15582
15589
natsukium = {
+1
-1
nixos/lib/make-ext4-fs.nix
···
102
102
103
103
if [ ${builtins.toString compressImage} ]; then
104
104
echo "Compressing image"
105
105
-
zstd -v --no-progress ./$img -o $out
105
105
+
zstd -T$NIX_BUILD_CORES -v --no-progress ./$img -o $out
106
106
fi
107
107
'';
108
108
}
+3
nixos/modules/installer/sd-card/sd-image-aarch64.nix
···
24
24
[pi3]
25
25
kernel=u-boot-rpi3.bin
26
26
27
27
+
# Otherwise the serial output will be garbled.
28
28
+
core_freq=250
29
29
+
27
30
[pi02]
28
31
kernel=u-boot-rpi3.bin
29
32
+14
-8
nixos/modules/services/audio/navidrome.nix
···
109
109
BindPaths =
110
110
optional (cfg.settings ? DataFolder) cfg.settings.DataFolder
111
111
++ optional (cfg.settings ? CacheFolder) cfg.settings.CacheFolder;
112
112
-
BindReadOnlyPaths = [
113
113
-
# navidrome uses online services to download additional album metadata / covers
114
114
-
"${
115
115
-
config.environment.etc."ssl/certs/ca-certificates.crt".source
116
116
-
}:/etc/ssl/certs/ca-certificates.crt"
117
117
-
builtins.storeDir
118
118
-
"/etc"
119
119
-
] ++ optional (cfg.settings ? MusicFolder) cfg.settings.MusicFolder;
112
112
+
BindReadOnlyPaths =
113
113
+
[
114
114
+
# navidrome uses online services to download additional album metadata / covers
115
115
+
"${
116
116
+
config.environment.etc."ssl/certs/ca-certificates.crt".source
117
117
+
}:/etc/ssl/certs/ca-certificates.crt"
118
118
+
builtins.storeDir
119
119
+
"/etc"
120
120
+
]
121
121
+
++ optional (cfg.settings ? MusicFolder) cfg.settings.MusicFolder
122
122
+
++ lib.optionals config.services.resolved.enable [
123
123
+
"/run/systemd/resolve/stub-resolv.conf"
124
124
+
"/run/systemd/resolve/resolv.conf"
125
125
+
];
120
126
CapabilityBoundingSet = "";
121
127
RestrictAddressFamilies = [
122
128
"AF_UNIX"
+53
-41
nixos/modules/services/databases/couchdb.nix
···
1
1
-
{ config, options, lib, pkgs, ... }:
1
1
+
{
2
2
+
config,
3
3
+
options,
4
4
+
lib,
5
5
+
pkgs,
6
6
+
...
7
7
+
}:
2
8
let
3
9
cfg = config.services.couchdb;
4
10
opt = options.services.couchdb;
5
5
-
configFile = pkgs.writeText "couchdb.ini" (
6
6
-
''
7
7
-
[couchdb]
8
8
-
database_dir = ${cfg.databaseDir}
9
9
-
uri_file = ${cfg.uriFile}
10
10
-
view_index_dir = ${cfg.viewIndexDir}
11
11
-
'' + (lib.optionalString (cfg.adminPass != null) ''
12
12
-
[admins]
13
13
-
${cfg.adminUser} = ${cfg.adminPass}
14
14
-
'' + ''
15
15
-
[chttpd]
16
16
-
'') +
17
17
-
''
18
18
-
port = ${toString cfg.port}
19
19
-
bind_address = ${cfg.bindAddress}
20
11
21
21
-
[log]
22
22
-
file = ${cfg.logFile}
23
23
-
'');
24
24
-
executable = "${cfg.package}/bin/couchdb";
12
12
+
baseConfig = {
13
13
+
couchdb = {
14
14
+
database_dir = cfg.databaseDir;
15
15
+
uri_file = cfg.uriFile;
16
16
+
view_index_dir = cfg.viewIndexDir;
17
17
+
};
18
18
+
chttpd = {
19
19
+
port = cfg.port;
20
20
+
bind_address = cfg.bindAddress;
21
21
+
};
22
22
+
log = {
23
23
+
file = cfg.logFile;
24
24
+
};
25
25
+
};
26
26
+
adminConfig = lib.optionalAttrs (cfg.adminPass != null) {
27
27
+
admins = {
28
28
+
"${cfg.adminUser}" = cfg.adminPass;
29
29
+
};
30
30
+
};
31
31
+
appConfig = lib.recursiveUpdate (lib.recursiveUpdate baseConfig adminConfig) cfg.extraConfig;
25
32
26
26
-
in {
33
33
+
optionsConfigFile = pkgs.writeText "couchdb.ini" (lib.generators.toINI { } appConfig);
27
34
35
35
+
# we are actually specifying 5 configuration files:
36
36
+
# 1. the preinstalled default.ini
37
37
+
# 2. the module configuration
38
38
+
# 3. the extraConfigFiles from the module options
39
39
+
# 4. the locally writable config file, which couchdb itself writes to
40
40
+
configFiles = [
41
41
+
"${cfg.package}/etc/default.ini"
42
42
+
optionsConfigFile
43
43
+
] ++ cfg.extraConfigFiles ++ [ cfg.configFile ];
44
44
+
executable = "${cfg.package}/bin/couchdb";
45
45
+
in
46
46
+
{
28
47
###### interface
29
48
30
49
options = {
31
31
-
32
50
services.couchdb = {
33
33
-
34
51
enable = lib.mkEnableOption "CouchDB Server";
35
52
36
53
package = lib.mkPackageOption pkgs "couchdb3" { };
···
128
145
};
129
146
130
147
extraConfig = lib.mkOption {
131
131
-
type = lib.types.lines;
132
132
-
default = "";
148
148
+
type = lib.types.attrs;
149
149
+
default = { };
150
150
+
description = "Extra configuration options for CouchDB";
151
151
+
};
152
152
+
extraConfigFiles = lib.mkOption {
153
153
+
type = lib.types.listOf lib.types.path;
154
154
+
default = [ ];
133
155
description = ''
134
134
-
Extra configuration. Overrides any other configuration.
156
156
+
Extra configuration files. Overrides any other configuration. You can use this to setup the Admin user without putting the password in your nix store.
135
157
'';
136
158
};
137
159
···
146
168
147
169
configFile = lib.mkOption {
148
170
type = lib.types.path;
171
171
+
default = "/var/lib/couchdb/local.ini";
149
172
description = ''
150
173
Configuration file for persisting runtime changes. File
151
174
needs to be readable and writable from couchdb user/group.
152
175
'';
153
176
};
154
154
-
155
177
};
156
156
-
157
178
};
158
179
159
180
###### implementation
160
181
161
161
-
config = lib.mkIf config.services.couchdb.enable {
162
162
-
182
182
+
config = lib.mkIf cfg.enable {
163
183
environment.systemPackages = [ cfg.package ];
164
164
-
165
165
-
services.couchdb.configFile = lib.mkDefault "/var/lib/couchdb/local.ini";
166
184
167
185
systemd.tmpfiles.rules = [
168
186
"d '${dirOf cfg.uriFile}' - ${cfg.user} ${cfg.group} - -"
···
185
203
'';
186
204
187
205
environment = {
188
188
-
# we are actually specifying 5 configuration files:
189
189
-
# 1. the preinstalled default.ini
190
190
-
# 2. the module configuration
191
191
-
# 3. the extraConfig from the module options
192
192
-
# 4. the locally writable config file, which couchdb itself writes to
193
193
-
ERL_FLAGS= ''-couch_ini ${cfg.package}/etc/default.ini ${configFile} ${pkgs.writeText "couchdb-extra.ini" cfg.extraConfig} ${cfg.configFile}'';
206
206
+
ERL_FLAGS = ''-couch_ini ${lib.concatStringsSep " " configFiles}'';
194
207
# 5. the vm.args file
195
195
-
COUCHDB_ARGS_FILE=''${cfg.argsFile}'';
196
196
-
HOME =''${cfg.databaseDir}'';
208
208
+
COUCHDB_ARGS_FILE = ''${cfg.argsFile}'';
209
209
+
HOME = ''${cfg.databaseDir}'';
197
210
};
198
211
199
212
serviceConfig = {
···
210
223
};
211
224
212
225
users.groups.couchdb.gid = config.ids.gids.couchdb;
213
213
-
214
226
};
215
227
}
+7
-4
nixos/modules/services/misc/anki-sync-server.nix
···
16
16
cfg.users;
17
17
usersWithIndexesFile = filter (x: x.user.passwordFile != null) usersWithIndexes;
18
18
usersWithIndexesNoFile = filter (x: x.user.passwordFile == null && x.user.password != null) usersWithIndexes;
19
19
-
anki-sync-server-run = pkgs.writeShellScriptBin "anki-sync-server-run" ''
19
19
+
anki-sync-server-run = pkgs.writeShellScript "anki-sync-server-run" ''
20
20
# When services.anki-sync-server.users.passwordFile is set,
21
21
# each password file is passed as a systemd credential, which is mounted in
22
22
# a file system exposed to the service. Here we read the passwords from
···
25
25
${
26
26
concatMapStringsSep
27
27
"\n"
28
28
-
(x: ''export SYNC_USER${toString x.i}=${escapeShellArg x.user.username}:"''$(cat "''${CREDENTIALS_DIRECTORY}/"${escapeShellArg x.user.username})"'')
28
28
+
(x: ''
29
29
+
read -r pass < "''${CREDENTIALS_DIRECTORY}/"${escapeShellArg x.user.username}
30
30
+
export SYNC_USER${toString x.i}=${escapeShellArg x.user.username}:"$pass"
31
31
+
'')
29
32
usersWithIndexesFile
30
33
}
31
34
# For users where services.anki-sync-server.users.password isn't set,
···
36
39
(x: ''export SYNC_USER${toString x.i}=${escapeShellArg x.user.username}:${escapeShellArg x.user.password}'')
37
40
usersWithIndexesNoFile
38
41
}
39
39
-
exec ${cfg.package}/bin/anki-sync-server
42
42
+
exec ${lib.getExe cfg.package}
40
43
'';
41
44
in {
42
45
options.services.anki-sync-server = {
···
130
133
Type = "simple";
131
134
DynamicUser = true;
132
135
StateDirectory = name;
133
133
-
ExecStart = "${anki-sync-server-run}/bin/anki-sync-server-run";
136
136
+
ExecStart = anki-sync-server-run;
134
137
Restart = "always";
135
138
LoadCredential =
136
139
map
+3
-2
pkgs/applications/networking/browsers/firefox-bin/update.nix
···
79
79
tr " " ":"`; do
80
80
# create an entry for every locale
81
81
cat >> $tmpfile <<EOF
82
82
-
{ url = "$url$version/`echo $line | cut -d":" -f3`";
82
82
+
{
83
83
+
url = "$url$version/`echo $line | cut -d":" -f3`";
83
84
locale = "`echo $line | cut -d":" -f3 | sed "s/$arch\///" | sed "s/\/.*//"`";
84
85
arch = "$arch";
85
86
sha256 = "`echo $line | cut -d":" -f1`";
···
88
89
done
89
90
done
90
91
cat >> $tmpfile <<EOF
91
91
-
];
92
92
+
];
92
93
}
93
94
EOF
94
95
+265
-265
pkgs/applications/networking/mailreaders/thunderbird-bin/release_sources.nix
···
1
1
{
2
2
-
version = "128.5.0esr";
2
2
+
version = "128.5.2esr";
3
3
sources = [
4
4
{
5
5
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/af/thunderbird-128.5.0esr.tar.bz2";
5
5
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/af/thunderbird-128.5.2esr.tar.bz2";
6
6
locale = "af";
7
7
arch = "linux-x86_64";
8
8
-
sha256 = "bf141809be942000802ccc5c7e7f9c9de64345e2ee323f57c29e30fb8301613f";
8
8
+
sha256 = "e73b10a8d9e40ecd96db4b93878f37fc31081c85f553dd14507bf79d24b858a5";
9
9
}
10
10
{
11
11
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ar/thunderbird-128.5.0esr.tar.bz2";
11
11
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ar/thunderbird-128.5.2esr.tar.bz2";
12
12
locale = "ar";
13
13
arch = "linux-x86_64";
14
14
-
sha256 = "ac71adbd3510e52f5280c2674c9ce3104f41d7ff0800c244093a331d04b4971d";
14
14
+
sha256 = "132d3290d331bde59430e6b3c112f5c8f192168c7ccfc9257fd259170af36a0c";
15
15
}
16
16
{
17
17
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ast/thunderbird-128.5.0esr.tar.bz2";
17
17
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ast/thunderbird-128.5.2esr.tar.bz2";
18
18
locale = "ast";
19
19
arch = "linux-x86_64";
20
20
-
sha256 = "51838e12a6a1f304a0a5c1c85417bc81b5e2f3870a58912e08e088bfbca636d3";
20
20
+
sha256 = "3d51f55ad635abe4c9704fb892c164ca3a2a5f1ed4ae566e92c2189bc7a27783";
21
21
}
22
22
{
23
23
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/be/thunderbird-128.5.0esr.tar.bz2";
23
23
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/be/thunderbird-128.5.2esr.tar.bz2";
24
24
locale = "be";
25
25
arch = "linux-x86_64";
26
26
-
sha256 = "b9a95f985de60041985ba11611af933d9cfdc15a5345bb1f71019e1caae5fad8";
26
26
+
sha256 = "adedd236013a8e1e0e00bbfd10221334232913ff38f5f34273fd0e5cbc355d41";
27
27
}
28
28
{
29
29
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/bg/thunderbird-128.5.0esr.tar.bz2";
29
29
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/bg/thunderbird-128.5.2esr.tar.bz2";
30
30
locale = "bg";
31
31
arch = "linux-x86_64";
32
32
-
sha256 = "ab8493efca260eee3ade25251be5cf00549c80940c22560fb3927a2c4b1e700f";
32
32
+
sha256 = "a660ba1d0570ee4bbc10c899929cd72083fdcd80916858d44d5a38790415227b";
33
33
}
34
34
{
35
35
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/br/thunderbird-128.5.0esr.tar.bz2";
35
35
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/br/thunderbird-128.5.2esr.tar.bz2";
36
36
locale = "br";
37
37
arch = "linux-x86_64";
38
38
-
sha256 = "a3134f3df5baab7c99acb53f9ad27e367b641ea42216f8753cb0c55513d863d9";
38
38
+
sha256 = "81a49db4cc98f56bb1eb8a8aa340a03ffba7cdc0726e2ef23943503ad2c3c487";
39
39
}
40
40
{
41
41
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ca/thunderbird-128.5.0esr.tar.bz2";
41
41
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ca/thunderbird-128.5.2esr.tar.bz2";
42
42
locale = "ca";
43
43
arch = "linux-x86_64";
44
44
-
sha256 = "57e922d86a1fad2d220372eb1086236853b56a04619eb3ce5b72cca24532d46c";
44
44
+
sha256 = "9bee3b2d32526aef2d652a70fe15b9cef220553dbca91d3a43154ab06631b39d";
45
45
}
46
46
{
47
47
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/cak/thunderbird-128.5.0esr.tar.bz2";
47
47
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/cak/thunderbird-128.5.2esr.tar.bz2";
48
48
locale = "cak";
49
49
arch = "linux-x86_64";
50
50
-
sha256 = "0ac666a4f2066bfc7b77ed3400340c3e7510b695d979dee19b2dbe08cad64df9";
50
50
+
sha256 = "fac50c050a1423e38785e93029352766904161f0b5629f0324ee273ec9a86e33";
51
51
}
52
52
{
53
53
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/cs/thunderbird-128.5.0esr.tar.bz2";
53
53
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/cs/thunderbird-128.5.2esr.tar.bz2";
54
54
locale = "cs";
55
55
arch = "linux-x86_64";
56
56
-
sha256 = "39eed8ef4c0d6035cd250acc46852c590c95f2985f04f32619013cfade06f893";
56
56
+
sha256 = "5c14bc65bf6adbdf538e14bff42348786498caeac9bd6b2cd5a3d60cd196f131";
57
57
}
58
58
{
59
59
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/cy/thunderbird-128.5.0esr.tar.bz2";
59
59
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/cy/thunderbird-128.5.2esr.tar.bz2";
60
60
locale = "cy";
61
61
arch = "linux-x86_64";
62
62
-
sha256 = "cd11988b3bc4b228470e36f1af45571e8a85b96361da46410a0ee38a366af2b1";
62
62
+
sha256 = "14103b894dc995b4f402b7b27a4555ff401c368d2e25cab15ce78a63bbd20995";
63
63
}
64
64
{
65
65
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/da/thunderbird-128.5.0esr.tar.bz2";
65
65
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/da/thunderbird-128.5.2esr.tar.bz2";
66
66
locale = "da";
67
67
arch = "linux-x86_64";
68
68
-
sha256 = "0c05b4aad2e76343a1923f89593ae51bf3a2db326d44e089834e9d54bf31c263";
68
68
+
sha256 = "cfa90363282c0d7fa976b179d73d2260e257e3e028769204f5c299f137f60bdf";
69
69
}
70
70
{
71
71
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/de/thunderbird-128.5.0esr.tar.bz2";
71
71
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/de/thunderbird-128.5.2esr.tar.bz2";
72
72
locale = "de";
73
73
arch = "linux-x86_64";
74
74
-
sha256 = "8b281370178e06a6a35133c7cdb791e22cef34da9dbf9b84b5847b8b4201746b";
74
74
+
sha256 = "24aee57c98140660e4ad6dc89fbd61758aeea823a7ed682de8b6916bc9a54ce0";
75
75
}
76
76
{
77
77
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/dsb/thunderbird-128.5.0esr.tar.bz2";
77
77
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/dsb/thunderbird-128.5.2esr.tar.bz2";
78
78
locale = "dsb";
79
79
arch = "linux-x86_64";
80
80
-
sha256 = "324a99f3ba46d9ccef0f7ac0dab35db5330cddfa3c09b328770c7812fe3d364c";
80
80
+
sha256 = "7fd2e3c788e2ef2eab12616271d7b8a4f1ed2e9ab6ef43e0b6617ca0aa0e6351";
81
81
}
82
82
{
83
83
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/el/thunderbird-128.5.0esr.tar.bz2";
83
83
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/el/thunderbird-128.5.2esr.tar.bz2";
84
84
locale = "el";
85
85
arch = "linux-x86_64";
86
86
-
sha256 = "08f49bf601feb248f98bbb5d558440f04c7df9e320466c0282c0588fda275a03";
86
86
+
sha256 = "c62f977f4af724bf6f7a4da25eb85e77b9ba6c5aaeb8d6165f9c43bb65d5918c";
87
87
}
88
88
{
89
89
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/en-CA/thunderbird-128.5.0esr.tar.bz2";
89
89
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/en-CA/thunderbird-128.5.2esr.tar.bz2";
90
90
locale = "en-CA";
91
91
arch = "linux-x86_64";
92
92
-
sha256 = "329fa38d6e881706bfbbaa8b9625b9e681e41606b42cfd9f25c866a45ab58fee";
92
92
+
sha256 = "8878bf63c6b6a2ae5a7d56b7f4df52aadd053736ba0143ec52cfb15e57315de9";
93
93
}
94
94
{
95
95
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/en-GB/thunderbird-128.5.0esr.tar.bz2";
95
95
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/en-GB/thunderbird-128.5.2esr.tar.bz2";
96
96
locale = "en-GB";
97
97
arch = "linux-x86_64";
98
98
-
sha256 = "276387261629de231ad41570c0821d39c4e343f6b34bb31867e7c4ff5bc7c9b3";
98
98
+
sha256 = "1810e254567c611dcc42481a19f3fcaa8cee499407ddcbae7fcfecfca0ae198c";
99
99
}
100
100
{
101
101
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/en-US/thunderbird-128.5.0esr.tar.bz2";
101
101
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/en-US/thunderbird-128.5.2esr.tar.bz2";
102
102
locale = "en-US";
103
103
arch = "linux-x86_64";
104
104
-
sha256 = "d612084b5e5f4005577171bc8c8bf8ee7e38fd7e16cbb2b7c32fb4148faf0e50";
104
104
+
sha256 = "1ac9ca9c9e2aa304ee1735b3667f9189eefd639ccfcb809ca8db1ea534f8345c";
105
105
}
106
106
{
107
107
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/es-AR/thunderbird-128.5.0esr.tar.bz2";
107
107
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/es-AR/thunderbird-128.5.2esr.tar.bz2";
108
108
locale = "es-AR";
109
109
arch = "linux-x86_64";
110
110
-
sha256 = "81a62da51a8b732721783059359f98033778831db689cb602bf1add2c53256b5";
110
110
+
sha256 = "22d10810a4e4a73ae0226effd60e0ed7c5600ba5a79d207abaad97adce3cfa42";
111
111
}
112
112
{
113
113
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/es-ES/thunderbird-128.5.0esr.tar.bz2";
113
113
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/es-ES/thunderbird-128.5.2esr.tar.bz2";
114
114
locale = "es-ES";
115
115
arch = "linux-x86_64";
116
116
-
sha256 = "b7374e7069ef698c83c55a32247543b0229bf1f1dc2a1656532b95dde2d6e3a3";
116
116
+
sha256 = "5e300f5f773dbe5248e385a41f808460e53902c7afc6a36d2bb4af971678d2bd";
117
117
}
118
118
{
119
119
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/es-MX/thunderbird-128.5.0esr.tar.bz2";
119
119
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/es-MX/thunderbird-128.5.2esr.tar.bz2";
120
120
locale = "es-MX";
121
121
arch = "linux-x86_64";
122
122
-
sha256 = "63b228f1de074f1f7e59d2e26f5531c49643e9e83ed2c87dd52c39b059c8985a";
122
122
+
sha256 = "ca9fe6d3c498a069c921dbcaeef58bd3d2a6482acb945fdc57ec06c2b31b0cde";
123
123
}
124
124
{
125
125
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/et/thunderbird-128.5.0esr.tar.bz2";
125
125
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/et/thunderbird-128.5.2esr.tar.bz2";
126
126
locale = "et";
127
127
arch = "linux-x86_64";
128
128
-
sha256 = "6d6f597f49a0c0606257534d44075ebacb25f503a0380858b6f46841d78e20de";
128
128
+
sha256 = "68867af322f9963768694fd2f5128de06319a7f7ab397226726f3a521139fb80";
129
129
}
130
130
{
131
131
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/eu/thunderbird-128.5.0esr.tar.bz2";
131
131
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/eu/thunderbird-128.5.2esr.tar.bz2";
132
132
locale = "eu";
133
133
arch = "linux-x86_64";
134
134
-
sha256 = "441c835d3990fd72ceb87fa1a8474ba0988c9423f4fad6558eade93ad840d730";
134
134
+
sha256 = "0b6590d4ef81ba9247004ada1b5ef5dd9263dfd6e112340cd5fd6cd4a49819bd";
135
135
}
136
136
{
137
137
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/fi/thunderbird-128.5.0esr.tar.bz2";
137
137
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/fi/thunderbird-128.5.2esr.tar.bz2";
138
138
locale = "fi";
139
139
arch = "linux-x86_64";
140
140
-
sha256 = "2b6d9faf698fbf46fde988b1f9bcfa35a5ecad69327f1fc50f4a0f9f99ef2e62";
140
140
+
sha256 = "2b44ed65368d85177409b4b99c478af4206087fb9cda6e5dd937b57d4d263283";
141
141
}
142
142
{
143
143
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/fr/thunderbird-128.5.0esr.tar.bz2";
143
143
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/fr/thunderbird-128.5.2esr.tar.bz2";
144
144
locale = "fr";
145
145
arch = "linux-x86_64";
146
146
-
sha256 = "7b96d4d29d4185cf3f4539e79466d71e110c516f1ea5b71e909bd4f6d6c197e3";
146
146
+
sha256 = "650038253f5907e3e6b9fb709b7d51ba0e9cdb3a20f67896380393ac41e1cdf8";
147
147
}
148
148
{
149
149
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/fy-NL/thunderbird-128.5.0esr.tar.bz2";
149
149
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/fy-NL/thunderbird-128.5.2esr.tar.bz2";
150
150
locale = "fy-NL";
151
151
arch = "linux-x86_64";
152
152
-
sha256 = "3793b5f8ea3900980608d8771597645caa1c3173b3ca50e52d39002d5ff45fe3";
152
152
+
sha256 = "d452e4ada6d32ce656624c039debf68114eed44d82e17e4de35600897265a960";
153
153
}
154
154
{
155
155
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ga-IE/thunderbird-128.5.0esr.tar.bz2";
155
155
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ga-IE/thunderbird-128.5.2esr.tar.bz2";
156
156
locale = "ga-IE";
157
157
arch = "linux-x86_64";
158
158
-
sha256 = "e71dda89ed9d87a1a4685efc2d30962db948c5cf01eb70a22adcdff93c96f371";
158
158
+
sha256 = "9fe6cd641b035d85cd3027d064dcdf19031d2094aae2b0adb9b85cdb3f504e57";
159
159
}
160
160
{
161
161
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/gd/thunderbird-128.5.0esr.tar.bz2";
161
161
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/gd/thunderbird-128.5.2esr.tar.bz2";
162
162
locale = "gd";
163
163
arch = "linux-x86_64";
164
164
-
sha256 = "70262e69f9b02d86358d9c9303becba44ffec53ef982bdc3eebac026c83702bd";
164
164
+
sha256 = "ce6a3e33ba9a7042fb377ae51516e7a8b965e548f6f594e5f980dd3320aeacd1";
165
165
}
166
166
{
167
167
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/gl/thunderbird-128.5.0esr.tar.bz2";
167
167
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/gl/thunderbird-128.5.2esr.tar.bz2";
168
168
locale = "gl";
169
169
arch = "linux-x86_64";
170
170
-
sha256 = "c4cb4c3e0d882dd460f476da3d22553a2402cf54865411005754777f8c370644";
170
170
+
sha256 = "e457d77bb51f2efb7fa47a5dc3fa3399dafb2a66e829ed173e28caa723aab955";
171
171
}
172
172
{
173
173
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/he/thunderbird-128.5.0esr.tar.bz2";
173
173
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/he/thunderbird-128.5.2esr.tar.bz2";
174
174
locale = "he";
175
175
arch = "linux-x86_64";
176
176
-
sha256 = "b455c97a5a1e0ecaef5374b11ab08ad709330c14bcc29abaa4767e151ab2f1ba";
176
176
+
sha256 = "7edb78ec181f1135803430acc7f7675ad11cf7a608cd71044cbdc3c88b820985";
177
177
}
178
178
{
179
179
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hr/thunderbird-128.5.0esr.tar.bz2";
179
179
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hr/thunderbird-128.5.2esr.tar.bz2";
180
180
locale = "hr";
181
181
arch = "linux-x86_64";
182
182
-
sha256 = "1ac9c1583ce60d5f6878038c60cfc0bcee90a5fb34cc1d4f0a239f710586668b";
182
182
+
sha256 = "b1e4fbd25524048935640bd7fbec9684c329c9a701520302455498a5454978a4";
183
183
}
184
184
{
185
185
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hsb/thunderbird-128.5.0esr.tar.bz2";
185
185
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hsb/thunderbird-128.5.2esr.tar.bz2";
186
186
locale = "hsb";
187
187
arch = "linux-x86_64";
188
188
-
sha256 = "f40a7d7eec65fe20e3ddd26d7dbb49c80131ade60ccb1872b51c6cf09b5cdaac";
188
188
+
sha256 = "1c4946dcd5d18c02d7f5bf8c183998b82b4a537887618740aca68290e8349714";
189
189
}
190
190
{
191
191
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hu/thunderbird-128.5.0esr.tar.bz2";
191
191
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hu/thunderbird-128.5.2esr.tar.bz2";
192
192
locale = "hu";
193
193
arch = "linux-x86_64";
194
194
-
sha256 = "876cd1f1840edaf44602d42012bcc31b2f928f83915869e7a1a85b74ec1b8cc1";
194
194
+
sha256 = "f9f041bbd9a5d484e3be78133e16965488d41f6f707cb52a5eac1caa688555ad";
195
195
}
196
196
{
197
197
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/hy-AM/thunderbird-128.5.0esr.tar.bz2";
197
197
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/hy-AM/thunderbird-128.5.2esr.tar.bz2";
198
198
locale = "hy-AM";
199
199
arch = "linux-x86_64";
200
200
-
sha256 = "974f0eb2b1452d787036db75dc8ef06ccf1d15521ddcdf7fefe89e25ea0451c1";
200
200
+
sha256 = "1ff94e46e03f890cffdc2b05906759630b88d73d8b265b242b87cc1f7a92818d";
201
201
}
202
202
{
203
203
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/id/thunderbird-128.5.0esr.tar.bz2";
203
203
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/id/thunderbird-128.5.2esr.tar.bz2";
204
204
locale = "id";
205
205
arch = "linux-x86_64";
206
206
-
sha256 = "2e7ba78aed383c152fbf443e74a25ff41c22b28a34fcdcf8d347ff1c0e46ce77";
206
206
+
sha256 = "e8b6e07a22b488e8965b9926930591a29773b36180f8b3a7bbc10beaf73fc4aa";
207
207
}
208
208
{
209
209
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/is/thunderbird-128.5.0esr.tar.bz2";
209
209
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/is/thunderbird-128.5.2esr.tar.bz2";
210
210
locale = "is";
211
211
arch = "linux-x86_64";
212
212
-
sha256 = "55c295af6a1339b7c432834381d587ea921d558ecb78f29e29564d1f394c155a";
212
212
+
sha256 = "699be72c00ed0ccc06d7999415b638396cd5f7b5d7c7572d12c50d59bf1cc78e";
213
213
}
214
214
{
215
215
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/it/thunderbird-128.5.0esr.tar.bz2";
215
215
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/it/thunderbird-128.5.2esr.tar.bz2";
216
216
locale = "it";
217
217
arch = "linux-x86_64";
218
218
-
sha256 = "2479f33f19d0d2724202a133e2590931ceab894660c3dc775151f6c850c9e42c";
218
218
+
sha256 = "412f24529759ab8daaa8a22dcb3b6a1587c44214479b1a9946a70c9c117e4f5e";
219
219
}
220
220
{
221
221
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ja/thunderbird-128.5.0esr.tar.bz2";
221
221
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ja/thunderbird-128.5.2esr.tar.bz2";
222
222
locale = "ja";
223
223
arch = "linux-x86_64";
224
224
-
sha256 = "1f3b76a1193330f7a4538400805a0cdafad56b96a4cc4bc2ada5cf1d62361648";
224
224
+
sha256 = "e57d8628a149cf6da3b653874ba379a5e84a419c72a78350033e3983ab6ff02b";
225
225
}
226
226
{
227
227
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ka/thunderbird-128.5.0esr.tar.bz2";
227
227
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ka/thunderbird-128.5.2esr.tar.bz2";
228
228
locale = "ka";
229
229
arch = "linux-x86_64";
230
230
-
sha256 = "b63d8939320c1dd3d6e9a7d965f82b0fc388640e304fce7995f7a13710339e99";
230
230
+
sha256 = "f97c13968a2eb0c52aa37a4b22dc85bedb4cf300d373bf340e956ff3fefe1686";
231
231
}
232
232
{
233
233
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/kab/thunderbird-128.5.0esr.tar.bz2";
233
233
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/kab/thunderbird-128.5.2esr.tar.bz2";
234
234
locale = "kab";
235
235
arch = "linux-x86_64";
236
236
-
sha256 = "d221cd9396a1b2b8945e0e75b8ad118f2ee34d45976bdb9b717dae0a96db9286";
236
236
+
sha256 = "0885808a8659b328dabba67215904332727bc79956c7b197a67546a4b2148c2b";
237
237
}
238
238
{
239
239
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/kk/thunderbird-128.5.0esr.tar.bz2";
239
239
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/kk/thunderbird-128.5.2esr.tar.bz2";
240
240
locale = "kk";
241
241
arch = "linux-x86_64";
242
242
-
sha256 = "56a63af61c24148d5fe12601580157381669ab670f07507107d9ea46d03d4392";
242
242
+
sha256 = "7a37191c7aa8a7c421c752379cc14a9ce705c5a517667f9aa082849c4bd20229";
243
243
}
244
244
{
245
245
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ko/thunderbird-128.5.0esr.tar.bz2";
245
245
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ko/thunderbird-128.5.2esr.tar.bz2";
246
246
locale = "ko";
247
247
arch = "linux-x86_64";
248
248
-
sha256 = "b5d2af0451f659e7abb6d548ceff053e3cbf13cf3eb6c42374a9a193e331fda7";
248
248
+
sha256 = "d28604e95463e600353ead6970b04ea30f943809a7c0ab52a797ca5235faf4ac";
249
249
}
250
250
{
251
251
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/lt/thunderbird-128.5.0esr.tar.bz2";
251
251
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/lt/thunderbird-128.5.2esr.tar.bz2";
252
252
locale = "lt";
253
253
arch = "linux-x86_64";
254
254
-
sha256 = "5ee2a8440be5e344564a5d4b4f4629df691e6245f2b0f2024020752430ba488e";
254
254
+
sha256 = "79cff99e2da9d4da40331ded5c69fe0f6836ea5ddd169b930f4a735946091e4d";
255
255
}
256
256
{
257
257
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/lv/thunderbird-128.5.0esr.tar.bz2";
257
257
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/lv/thunderbird-128.5.2esr.tar.bz2";
258
258
locale = "lv";
259
259
arch = "linux-x86_64";
260
260
-
sha256 = "3e2fe77604f976102a274e77a506b025b4c0443077082da6cfaa648b3018f322";
260
260
+
sha256 = "eaf7bd34f88ba8cd251b31d105cca5e48854bfda4a25ebdeff96c91f097a0f27";
261
261
}
262
262
{
263
263
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ms/thunderbird-128.5.0esr.tar.bz2";
263
263
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ms/thunderbird-128.5.2esr.tar.bz2";
264
264
locale = "ms";
265
265
arch = "linux-x86_64";
266
266
-
sha256 = "e180dc2c02fad1473272b7dfb447208a1b8abdb335d362696d649fe6f2fa9da6";
266
266
+
sha256 = "8c0afe7c25df0210202c2373fbfc346d9210beb26cf85f8e562e2726ae6dcf1b";
267
267
}
268
268
{
269
269
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/nb-NO/thunderbird-128.5.0esr.tar.bz2";
269
269
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/nb-NO/thunderbird-128.5.2esr.tar.bz2";
270
270
locale = "nb-NO";
271
271
arch = "linux-x86_64";
272
272
-
sha256 = "472ae10df128c9d16a5c1bf688edc4bf43da36b4f254c55b37e5af8768339581";
272
272
+
sha256 = "64aec4507e0c2cbc8d434807a1a740e1f90992ef7d7d01b4431c243a7d88130b";
273
273
}
274
274
{
275
275
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/nl/thunderbird-128.5.0esr.tar.bz2";
275
275
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/nl/thunderbird-128.5.2esr.tar.bz2";
276
276
locale = "nl";
277
277
arch = "linux-x86_64";
278
278
-
sha256 = "18235f21aae857efcff66427a4d1e3a513c71d89aad3142e4161f61c7775224e";
278
278
+
sha256 = "12a0b419b284580c87cc1cefb458a8a65369c92c4ccc2fec729bfd086ddcc558";
279
279
}
280
280
{
281
281
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/nn-NO/thunderbird-128.5.0esr.tar.bz2";
281
281
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/nn-NO/thunderbird-128.5.2esr.tar.bz2";
282
282
locale = "nn-NO";
283
283
arch = "linux-x86_64";
284
284
-
sha256 = "99fe98fc5c5a015a053a2918625be003a67ffb0369f8b373cda1684391a9a281";
284
284
+
sha256 = "b41578881f54225b6c18a86984aceb9550f82660da24f2a5827720921190c8ff";
285
285
}
286
286
{
287
287
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pa-IN/thunderbird-128.5.0esr.tar.bz2";
287
287
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pa-IN/thunderbird-128.5.2esr.tar.bz2";
288
288
locale = "pa-IN";
289
289
arch = "linux-x86_64";
290
290
-
sha256 = "f7f27918958d21c681c10b413907b3517e5090134fd29a659b0c31dfba6f9e69";
290
290
+
sha256 = "7cae0a6a0ca762904eaf16e03df9d811a571696ef9657d3725c98f1051cb48e5";
291
291
}
292
292
{
293
293
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pl/thunderbird-128.5.0esr.tar.bz2";
293
293
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pl/thunderbird-128.5.2esr.tar.bz2";
294
294
locale = "pl";
295
295
arch = "linux-x86_64";
296
296
-
sha256 = "2dbfacbedb8dcfaa57553240ea7b52320a5ee0ea2351aeba731532674fd8903e";
296
296
+
sha256 = "649d1813dbf9d9d0a39059f4aeaffb9c3a82329d84c02c2e9b35e6a9f34d4318";
297
297
}
298
298
{
299
299
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pt-BR/thunderbird-128.5.0esr.tar.bz2";
299
299
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pt-BR/thunderbird-128.5.2esr.tar.bz2";
300
300
locale = "pt-BR";
301
301
arch = "linux-x86_64";
302
302
-
sha256 = "91e59ecd438834f178d283f305500030c5d7f37ecd527c4c052a1b77b0f789d9";
302
302
+
sha256 = "37c7a69254ad91de267514b66a74a2c27dc0e8e75c730722c6c1c38ba11cffc2";
303
303
}
304
304
{
305
305
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/pt-PT/thunderbird-128.5.0esr.tar.bz2";
305
305
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/pt-PT/thunderbird-128.5.2esr.tar.bz2";
306
306
locale = "pt-PT";
307
307
arch = "linux-x86_64";
308
308
-
sha256 = "3677a355554546e8dfd0654829662fb5d0ec50eeb95516ce50a96e656f055bd4";
308
308
+
sha256 = "f902653826de549d8520ec35954cf371684498430ee9f56bf1bcf2329a851e25";
309
309
}
310
310
{
311
311
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/rm/thunderbird-128.5.0esr.tar.bz2";
311
311
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/rm/thunderbird-128.5.2esr.tar.bz2";
312
312
locale = "rm";
313
313
arch = "linux-x86_64";
314
314
-
sha256 = "4ff5642d2e03153feb8c692959879391bb2506fe7727009ad50ca8163c06f293";
314
314
+
sha256 = "02c2f03927cd5ee837f909aa683d1b11dfc1fb8e0dc6de3003196c923bb95ea6";
315
315
}
316
316
{
317
317
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ro/thunderbird-128.5.0esr.tar.bz2";
317
317
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ro/thunderbird-128.5.2esr.tar.bz2";
318
318
locale = "ro";
319
319
arch = "linux-x86_64";
320
320
-
sha256 = "db9d6d7e5b786d20f3fa9dc270a0ea1cc6e2ca3c1c87079f2b490300b402bc02";
320
320
+
sha256 = "9c39be07f7b063926983e2f6cca0745f0c2d42706a3b483dc4f4a5b1d3abdb6e";
321
321
}
322
322
{
323
323
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/ru/thunderbird-128.5.0esr.tar.bz2";
323
323
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/ru/thunderbird-128.5.2esr.tar.bz2";
324
324
locale = "ru";
325
325
arch = "linux-x86_64";
326
326
-
sha256 = "0153f7690b1996b0e0f13bec1cbb19eaedd84dd3a10d0e3f4343ecc623407140";
326
326
+
sha256 = "8781ca988ab2ca4865e2cdf729952e51daed1dc49a4d7b9cdcf7d44a54156507";
327
327
}
328
328
{
329
329
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sk/thunderbird-128.5.0esr.tar.bz2";
329
329
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sk/thunderbird-128.5.2esr.tar.bz2";
330
330
locale = "sk";
331
331
arch = "linux-x86_64";
332
332
-
sha256 = "0ed388ce9ff2bfc214b612b0a2e8982ec6162e4950769b0deb89a362f5440900";
332
332
+
sha256 = "dd7751520c90238e1411d3108e1edaebc3cb7704c42f1429d1dd4dd9949c2360";
333
333
}
334
334
{
335
335
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sl/thunderbird-128.5.0esr.tar.bz2";
335
335
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sl/thunderbird-128.5.2esr.tar.bz2";
336
336
locale = "sl";
337
337
arch = "linux-x86_64";
338
338
-
sha256 = "2cbd30d96f27d5d292d88c0a73e2e13589b254527d109fab2d2aae7bda7d7ff1";
338
338
+
sha256 = "ab12490cddd3760565ddce96a88bb57ec798b31d06eecbe0e19f9e4d2b3e08eb";
339
339
}
340
340
{
341
341
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sq/thunderbird-128.5.0esr.tar.bz2";
341
341
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sq/thunderbird-128.5.2esr.tar.bz2";
342
342
locale = "sq";
343
343
arch = "linux-x86_64";
344
344
-
sha256 = "cdbf3a92fa32a750575b6c1258ddae971ce62a1e6d57ac24b137742830306977";
344
344
+
sha256 = "8df1d6b93d0742169a309ff99520fd76f19de14219ca7ec38c0fbb7ec3e9e7cb";
345
345
}
346
346
{
347
347
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sr/thunderbird-128.5.0esr.tar.bz2";
347
347
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sr/thunderbird-128.5.2esr.tar.bz2";
348
348
locale = "sr";
349
349
arch = "linux-x86_64";
350
350
-
sha256 = "f67aa8002c54ff88405ee37a2d875826fd46e8481750138531c713d15a97d79c";
350
350
+
sha256 = "ff27929603f74d141534899b79b527ef1aeeaae3d642abcaf1ed1d32fc9ee63b";
351
351
}
352
352
{
353
353
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/sv-SE/thunderbird-128.5.0esr.tar.bz2";
353
353
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/sv-SE/thunderbird-128.5.2esr.tar.bz2";
354
354
locale = "sv-SE";
355
355
arch = "linux-x86_64";
356
356
-
sha256 = "82c2b8a75d8bb8c3261366b049ea6524317d254d2dc61a5ee813d7220e927f6c";
356
356
+
sha256 = "ce20a0614e69e2c720ea3d1a8bdcc881a19b1333eb717f51ab5bce1f6e2d0eaf";
357
357
}
358
358
{
359
359
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/th/thunderbird-128.5.0esr.tar.bz2";
359
359
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/th/thunderbird-128.5.2esr.tar.bz2";
360
360
locale = "th";
361
361
arch = "linux-x86_64";
362
362
-
sha256 = "5e55930bda79b5cefd10f5d7418f67cc355eb5b3548e424984a8ee18c5aba5ef";
362
362
+
sha256 = "887c63504d60b403b388d9aeb8acef9d8c8a342830be9198d5badbc28f2c2d56";
363
363
}
364
364
{
365
365
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/tr/thunderbird-128.5.0esr.tar.bz2";
365
365
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/tr/thunderbird-128.5.2esr.tar.bz2";
366
366
locale = "tr";
367
367
arch = "linux-x86_64";
368
368
-
sha256 = "4285425d9cebd097360212de6d9534f05373478946b6ad1a0233421246fa7c0d";
368
368
+
sha256 = "5fe9257c795e4037b4c66b90429585c21fd402a0e3b49492b08eb4f623dcf1d3";
369
369
}
370
370
{
371
371
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/uk/thunderbird-128.5.0esr.tar.bz2";
371
371
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/uk/thunderbird-128.5.2esr.tar.bz2";
372
372
locale = "uk";
373
373
arch = "linux-x86_64";
374
374
-
sha256 = "417c6482d30b61839b3545cbcccb7664f91e9993a94a7475a513a6842646240d";
374
374
+
sha256 = "7539ad2c01a3578565c7b725f2f10392f200251ab1c61752481b076aff546bb3";
375
375
}
376
376
{
377
377
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/uz/thunderbird-128.5.0esr.tar.bz2";
377
377
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/uz/thunderbird-128.5.2esr.tar.bz2";
378
378
locale = "uz";
379
379
arch = "linux-x86_64";
380
380
-
sha256 = "6a051d014f8bdca6195e3f21dd481be9a232501e0280843cc07b0fde09149801";
380
380
+
sha256 = "7d96771909f496e2b5a2bf8cd21cb84e2921f21238df2ef3e61e30cf6707d9cf";
381
381
}
382
382
{
383
383
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/vi/thunderbird-128.5.0esr.tar.bz2";
383
383
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/vi/thunderbird-128.5.2esr.tar.bz2";
384
384
locale = "vi";
385
385
arch = "linux-x86_64";
386
386
-
sha256 = "d5ebe571e630ef8a963f5a27e6e0096eccfc12f35fd5437bae82bacdf0e5538e";
386
386
+
sha256 = "436d17c6bc1495031dedd86a9dfeab28cbaee46d06971d7184b49849f4acadfb";
387
387
}
388
388
{
389
389
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/zh-CN/thunderbird-128.5.0esr.tar.bz2";
389
389
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/zh-CN/thunderbird-128.5.2esr.tar.bz2";
390
390
locale = "zh-CN";
391
391
arch = "linux-x86_64";
392
392
-
sha256 = "97563908550924bc43d99da7d096e7260b3c23e59df58a51bfe1b6c76de54f33";
392
392
+
sha256 = "d84c3b4fef8ecdc985a4b5a259443019ba56d4b2227d678927f402d10fadaaca";
393
393
}
394
394
{
395
395
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-x86_64/zh-TW/thunderbird-128.5.0esr.tar.bz2";
395
395
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-x86_64/zh-TW/thunderbird-128.5.2esr.tar.bz2";
396
396
locale = "zh-TW";
397
397
arch = "linux-x86_64";
398
398
-
sha256 = "bce0c4667d7444d63802badffdaad9f7bf3d916233f836b98b7565fc68171804";
398
398
+
sha256 = "266d35dbfac2fd449241fba7224a201209252344371beec144c2428cd0c9bd2b";
399
399
}
400
400
{
401
401
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/af/thunderbird-128.5.0esr.tar.bz2";
401
401
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/af/thunderbird-128.5.2esr.tar.bz2";
402
402
locale = "af";
403
403
arch = "linux-i686";
404
404
-
sha256 = "ba311de618f1d21f816de08fe19410f5e7623c177ca1a60054b62457662b4721";
404
404
+
sha256 = "6cd2f91556fce7e5b97c71312fe9529bb54542e4946eda1843b688718c05e777";
405
405
}
406
406
{
407
407
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ar/thunderbird-128.5.0esr.tar.bz2";
407
407
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ar/thunderbird-128.5.2esr.tar.bz2";
408
408
locale = "ar";
409
409
arch = "linux-i686";
410
410
-
sha256 = "7b9a0a04a18ee7a051254fd72d0cefbbf82b86cf3b6fcefaec8481ca969c70bc";
410
410
+
sha256 = "8053f4a34be289cdc299ad6f0beb5bc4794fd4d2f086824b6008a23d4e0e4cbb";
411
411
}
412
412
{
413
413
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ast/thunderbird-128.5.0esr.tar.bz2";
413
413
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ast/thunderbird-128.5.2esr.tar.bz2";
414
414
locale = "ast";
415
415
arch = "linux-i686";
416
416
-
sha256 = "3cf834ba074f2a38e0686d820ee9abe6714b3f0e4d1c385b22bf81e4681eb42a";
416
416
+
sha256 = "84a52ae96f0b8b2a01431b9aa74ba152ed2ed82425a27f23581f631bbe26bc58";
417
417
}
418
418
{
419
419
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/be/thunderbird-128.5.0esr.tar.bz2";
419
419
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/be/thunderbird-128.5.2esr.tar.bz2";
420
420
locale = "be";
421
421
arch = "linux-i686";
422
422
-
sha256 = "9c7e2f2e1285b4a728948226d8b3494c79053b5ec210b2b42c261b18a79c8f68";
422
422
+
sha256 = "7a131fb75ec0ba188fa35f1a9b795baf35a37574a7d4fcfbfa0534ec549ae625";
423
423
}
424
424
{
425
425
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/bg/thunderbird-128.5.0esr.tar.bz2";
425
425
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/bg/thunderbird-128.5.2esr.tar.bz2";
426
426
locale = "bg";
427
427
arch = "linux-i686";
428
428
-
sha256 = "fa4786856bf6966c5e6f3bb0066950cd3da1f6fed2179e7071ca76d96ea09880";
428
428
+
sha256 = "d28e4496714bcaf9a25721a356bf29ce9b2e47d0f5bfae018c0f55eaf1724535";
429
429
}
430
430
{
431
431
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/br/thunderbird-128.5.0esr.tar.bz2";
431
431
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/br/thunderbird-128.5.2esr.tar.bz2";
432
432
locale = "br";
433
433
arch = "linux-i686";
434
434
-
sha256 = "9baa235bfdf221d9494c028ec29f968be68a23595ef4bb6817f71bccaa5cae8b";
434
434
+
sha256 = "31f304b50b271b421917c8332aeeff2c9d9d9e9b4b337e97ad78ccfa0e4401e5";
435
435
}
436
436
{
437
437
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ca/thunderbird-128.5.0esr.tar.bz2";
437
437
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ca/thunderbird-128.5.2esr.tar.bz2";
438
438
locale = "ca";
439
439
arch = "linux-i686";
440
440
-
sha256 = "d3ca0c86f8ce9313272c540cf7ab87e01b7a6f183adceff9f31a571eacbcc0bc";
440
440
+
sha256 = "7c2721b495ff2443d3794ec19b21a752b88aef08831d721e6f3ff35ce4e0b872";
441
441
}
442
442
{
443
443
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/cak/thunderbird-128.5.0esr.tar.bz2";
443
443
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/cak/thunderbird-128.5.2esr.tar.bz2";
444
444
locale = "cak";
445
445
arch = "linux-i686";
446
446
-
sha256 = "97cb59dfaaf9f7f7c68f3d6030aa4e65314f80ed2be7671a188d10aeb2b1166a";
446
446
+
sha256 = "31fd01ff374b25611197b1e9fb378618e5066013dc8df66e7ee84906b044c859";
447
447
}
448
448
{
449
449
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/cs/thunderbird-128.5.0esr.tar.bz2";
449
449
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/cs/thunderbird-128.5.2esr.tar.bz2";
450
450
locale = "cs";
451
451
arch = "linux-i686";
452
452
-
sha256 = "acb99acc481fdaa9135e07e10c962df82d66f7296fec84bbddba324248a3b115";
452
452
+
sha256 = "502a20d0747688204f10f30058c4f21d76cf8eb49a3e5726ba1ae26ec9b532d6";
453
453
}
454
454
{
455
455
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/cy/thunderbird-128.5.0esr.tar.bz2";
455
455
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/cy/thunderbird-128.5.2esr.tar.bz2";
456
456
locale = "cy";
457
457
arch = "linux-i686";
458
458
-
sha256 = "b3945247f968f32b59fbea6454d05bc32973d6caee3a1b89a3551555321ee18c";
458
458
+
sha256 = "0a279418554ff4deb6aac8c5cb62c266aeb6209bb245aad015f9de82989f9bda";
459
459
}
460
460
{
461
461
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/da/thunderbird-128.5.0esr.tar.bz2";
461
461
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/da/thunderbird-128.5.2esr.tar.bz2";
462
462
locale = "da";
463
463
arch = "linux-i686";
464
464
-
sha256 = "c786d70438ece2b4b20d4ddfb79ba150981e4a46d5095525da9cfe5ec8d3b5ee";
464
464
+
sha256 = "8fa04d1674a222a4eeac58c6c2e3afe30042d72c7c10493551957d2d871b873d";
465
465
}
466
466
{
467
467
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/de/thunderbird-128.5.0esr.tar.bz2";
467
467
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/de/thunderbird-128.5.2esr.tar.bz2";
468
468
locale = "de";
469
469
arch = "linux-i686";
470
470
-
sha256 = "98e47e0264d620ec111ebc29fd56f07b113adf4dabe29c8982e6ae8f325dc0df";
470
470
+
sha256 = "ec8aa2bf5b5657449af6e049b3df61acdac3a01eec44a4b9440976f30168de2b";
471
471
}
472
472
{
473
473
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/dsb/thunderbird-128.5.0esr.tar.bz2";
473
473
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/dsb/thunderbird-128.5.2esr.tar.bz2";
474
474
locale = "dsb";
475
475
arch = "linux-i686";
476
476
-
sha256 = "61c38ccd7c956da45aae15ed5d83387efdf6d1a2efd5a23bd2cd689885d99732";
476
476
+
sha256 = "82ab756c6dec629648f8952e7044b80c3aceae0931f7189a71f9f06d8b122f0d";
477
477
}
478
478
{
479
479
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/el/thunderbird-128.5.0esr.tar.bz2";
479
479
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/el/thunderbird-128.5.2esr.tar.bz2";
480
480
locale = "el";
481
481
arch = "linux-i686";
482
482
-
sha256 = "ee48d2bc6b808b38ef15381c35f152fd8c6b6c6ea2847a8bf1664299787ced22";
482
482
+
sha256 = "788bb267bacc034be69f118abaca5455df85c4102809435fad11183b8671c089";
483
483
}
484
484
{
485
485
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/en-CA/thunderbird-128.5.0esr.tar.bz2";
485
485
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/en-CA/thunderbird-128.5.2esr.tar.bz2";
486
486
locale = "en-CA";
487
487
arch = "linux-i686";
488
488
-
sha256 = "4e2ddaea30c6e96305816e325799480976bd4a592a12aeec3847f432e60f66b1";
488
488
+
sha256 = "f7c260e808372c8598eeff0b25c6a2689a159bcbce9c1491e526eb5c1934200e";
489
489
}
490
490
{
491
491
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/en-GB/thunderbird-128.5.0esr.tar.bz2";
491
491
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/en-GB/thunderbird-128.5.2esr.tar.bz2";
492
492
locale = "en-GB";
493
493
arch = "linux-i686";
494
494
-
sha256 = "d5e799d093ba2aa4559e4be92791e2be385db915fbfc2965d87d3c19b2a67a46";
494
494
+
sha256 = "69bafaf9013de6392e2a61e9a1301b2055a827377fcb4193f5d8f3385ebd1031";
495
495
}
496
496
{
497
497
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/en-US/thunderbird-128.5.0esr.tar.bz2";
497
497
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/en-US/thunderbird-128.5.2esr.tar.bz2";
498
498
locale = "en-US";
499
499
arch = "linux-i686";
500
500
-
sha256 = "225928a3496a12af6b7b324255702e0057e3e80dd4bafb1166394a2bc3933d2c";
500
500
+
sha256 = "2444f0fa336074cb705f8409c2c914bcd840fb57cb1bac0305129f2c7d8f45a0";
501
501
}
502
502
{
503
503
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/es-AR/thunderbird-128.5.0esr.tar.bz2";
503
503
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/es-AR/thunderbird-128.5.2esr.tar.bz2";
504
504
locale = "es-AR";
505
505
arch = "linux-i686";
506
506
-
sha256 = "269ec58e0278505c778353e454e91756720b8c0c65b8a976e7ab443380c6c1bc";
506
506
+
sha256 = "756bcb118f0948d38f9f4215c03d5b92ebd1ec30d45180267f13d81f6309d128";
507
507
}
508
508
{
509
509
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/es-ES/thunderbird-128.5.0esr.tar.bz2";
509
509
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/es-ES/thunderbird-128.5.2esr.tar.bz2";
510
510
locale = "es-ES";
511
511
arch = "linux-i686";
512
512
-
sha256 = "38ae3bb15128c5c3aa7f8e9a3361c5cff75f16fc27bccc55589f6e93b65567d9";
512
512
+
sha256 = "f301fa04e3f89df0edd7150c61ee6eeee82bf571f7121cf94111d0fd7cd4209d";
513
513
}
514
514
{
515
515
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/es-MX/thunderbird-128.5.0esr.tar.bz2";
515
515
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/es-MX/thunderbird-128.5.2esr.tar.bz2";
516
516
locale = "es-MX";
517
517
arch = "linux-i686";
518
518
-
sha256 = "44d11638c8cb8a7aa2072b37b384d17e125ab5ba62459bc2fd849e3965a66f2c";
518
518
+
sha256 = "035ad8e689822227e85c9690ddfe22402ca551809205c9b485496dc8576eb75e";
519
519
}
520
520
{
521
521
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/et/thunderbird-128.5.0esr.tar.bz2";
521
521
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/et/thunderbird-128.5.2esr.tar.bz2";
522
522
locale = "et";
523
523
arch = "linux-i686";
524
524
-
sha256 = "fdd71790464e206363c079d118fa318b2b5ae530851d381b832ccf29a172dce9";
524
524
+
sha256 = "24a2851b9db216b4b45da278e7fd2db82624c2039b665cf2e25e98110ae4ad7c";
525
525
}
526
526
{
527
527
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/eu/thunderbird-128.5.0esr.tar.bz2";
527
527
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/eu/thunderbird-128.5.2esr.tar.bz2";
528
528
locale = "eu";
529
529
arch = "linux-i686";
530
530
-
sha256 = "4b88c2d28eea088bdcbfb6abfc3a0591a0ee2792d009027b5f420785ec8f6313";
530
530
+
sha256 = "b633fd9b5f200854f2e361bc1ea90470f3b6e9d29cf5b07f103cdcf0aa95572b";
531
531
}
532
532
{
533
533
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/fi/thunderbird-128.5.0esr.tar.bz2";
533
533
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/fi/thunderbird-128.5.2esr.tar.bz2";
534
534
locale = "fi";
535
535
arch = "linux-i686";
536
536
-
sha256 = "55e655f7dd3ce2143cdf9069f87fab107a604c61503c8212f77db95d4f3d98cf";
536
536
+
sha256 = "068291c36973cb27c2917111b3a7780813642f8ea43590ad08b23ed335db1347";
537
537
}
538
538
{
539
539
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/fr/thunderbird-128.5.0esr.tar.bz2";
539
539
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/fr/thunderbird-128.5.2esr.tar.bz2";
540
540
locale = "fr";
541
541
arch = "linux-i686";
542
542
-
sha256 = "cc8f46937ef91d7eb2a5e8eadf3f8a493c2575d028ea8c9644e33913f7475d08";
542
542
+
sha256 = "df21298f329e384f6015a360623f8b18764fa5ddf7a244ca6d0c4996d7d08db0";
543
543
}
544
544
{
545
545
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/fy-NL/thunderbird-128.5.0esr.tar.bz2";
545
545
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/fy-NL/thunderbird-128.5.2esr.tar.bz2";
546
546
locale = "fy-NL";
547
547
arch = "linux-i686";
548
548
-
sha256 = "b77292a17c79f90d986e5b29dd7a5953fe4bd25cf50c8b857c7577d4fcbccf1f";
548
548
+
sha256 = "b5d4d630f78aba4ac22c927f9fccb369fa6a3195c08194acc6803109f694af51";
549
549
}
550
550
{
551
551
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ga-IE/thunderbird-128.5.0esr.tar.bz2";
551
551
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ga-IE/thunderbird-128.5.2esr.tar.bz2";
552
552
locale = "ga-IE";
553
553
arch = "linux-i686";
554
554
-
sha256 = "d094e795f50e27de04f6955043cbdef837d6ef62dc46dc76a4d0ae563a02f80e";
554
554
+
sha256 = "bafd5855e5f7294cb0d65da815bba95ec58c47c5c4f23388ac880bf40f9366dd";
555
555
}
556
556
{
557
557
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/gd/thunderbird-128.5.0esr.tar.bz2";
557
557
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/gd/thunderbird-128.5.2esr.tar.bz2";
558
558
locale = "gd";
559
559
arch = "linux-i686";
560
560
-
sha256 = "ded59f8212ffbe5b232cc966a41868ec7693f4512e4601d248090842632756da";
560
560
+
sha256 = "4108d67237968c50dec960d5eafa40c5440c22c2641e1b5817996cf72320dfb7";
561
561
}
562
562
{
563
563
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/gl/thunderbird-128.5.0esr.tar.bz2";
563
563
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/gl/thunderbird-128.5.2esr.tar.bz2";
564
564
locale = "gl";
565
565
arch = "linux-i686";
566
566
-
sha256 = "38772837b18fc6c1b76776e346b5fe55c247846eaef66c438d0041b88e68179b";
566
566
+
sha256 = "90aa4b515967efab34fa951a94ae7a710a1e7dfe3789fbf9f56467acce743d82";
567
567
}
568
568
{
569
569
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/he/thunderbird-128.5.0esr.tar.bz2";
569
569
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/he/thunderbird-128.5.2esr.tar.bz2";
570
570
locale = "he";
571
571
arch = "linux-i686";
572
572
-
sha256 = "d3b5d4f548520e72c5c73aeafaf322246c1211027903b7364cab2b343ac382c0";
572
572
+
sha256 = "a30e92e3e01353d87b6d21543f54e1e04cdc5d311b51d31f0f67d528c9cb272a";
573
573
}
574
574
{
575
575
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hr/thunderbird-128.5.0esr.tar.bz2";
575
575
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hr/thunderbird-128.5.2esr.tar.bz2";
576
576
locale = "hr";
577
577
arch = "linux-i686";
578
578
-
sha256 = "02f9f830b1337d657d14e185426b1e1f7c0843960539391312b496285ca575b9";
578
578
+
sha256 = "27201a23cbcca4e6cd50418942b31628795e1fcb564f2a39d7970c7daf5af6b5";
579
579
}
580
580
{
581
581
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hsb/thunderbird-128.5.0esr.tar.bz2";
581
581
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hsb/thunderbird-128.5.2esr.tar.bz2";
582
582
locale = "hsb";
583
583
arch = "linux-i686";
584
584
-
sha256 = "7e9d8c754dc440413f69ce6c9c08c312e02c7492317541b61fa408ba234c7ea0";
584
584
+
sha256 = "06e5a0c6c8615c87355cf3605a87101ffd0664d3a10f866d2282cb9d14211277";
585
585
}
586
586
{
587
587
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hu/thunderbird-128.5.0esr.tar.bz2";
587
587
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hu/thunderbird-128.5.2esr.tar.bz2";
588
588
locale = "hu";
589
589
arch = "linux-i686";
590
590
-
sha256 = "c346a07a93298fa66ff79013c1551e544920da1eacf5afcb8f556dc1bdbfd38f";
590
590
+
sha256 = "7f7f68ed7ec1c1de0562662169c609412a7f70421161ac8926bd1c8e7f8b0853";
591
591
}
592
592
{
593
593
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/hy-AM/thunderbird-128.5.0esr.tar.bz2";
593
593
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/hy-AM/thunderbird-128.5.2esr.tar.bz2";
594
594
locale = "hy-AM";
595
595
arch = "linux-i686";
596
596
-
sha256 = "b3d19416bfe0101db8c03a4de0c686da8fcf187943c4d187a5eaf1953d11d9f9";
596
596
+
sha256 = "cee500cfb8c1c5ec46ae167c4028479f33e9589e2f79d36bbed6307d4ad8cc44";
597
597
}
598
598
{
599
599
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/id/thunderbird-128.5.0esr.tar.bz2";
599
599
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/id/thunderbird-128.5.2esr.tar.bz2";
600
600
locale = "id";
601
601
arch = "linux-i686";
602
602
-
sha256 = "e7bbb5da9c98343fe39ed2e4a816825b9ac4e45c89e31a0f0b3ed685c3447bf3";
602
602
+
sha256 = "f73fcdfdfe1bbd483b851d7882d8c508ba29c2c8bd5a1c76f0c1ac9e85cb182e";
603
603
}
604
604
{
605
605
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/is/thunderbird-128.5.0esr.tar.bz2";
605
605
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/is/thunderbird-128.5.2esr.tar.bz2";
606
606
locale = "is";
607
607
arch = "linux-i686";
608
608
-
sha256 = "1528dacdd88638660567ce992705f63675530389161c5af6e3c8e9388d624faf";
608
608
+
sha256 = "396174a76aa731129a992e165d288e8ef48c8ad8b1112c8e2b1fd3cf63d8c43f";
609
609
}
610
610
{
611
611
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/it/thunderbird-128.5.0esr.tar.bz2";
611
611
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/it/thunderbird-128.5.2esr.tar.bz2";
612
612
locale = "it";
613
613
arch = "linux-i686";
614
614
-
sha256 = "2ab9b4b12aa7ffbedf2e74719ece9cb9cbe45005e751f3b4b416ad0c31ea995e";
614
614
+
sha256 = "69bcbf12b74fd6a437bb435107c93bbba031452d225f8ab16f443f4f56f6d9ad";
615
615
}
616
616
{
617
617
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ja/thunderbird-128.5.0esr.tar.bz2";
617
617
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ja/thunderbird-128.5.2esr.tar.bz2";
618
618
locale = "ja";
619
619
arch = "linux-i686";
620
620
-
sha256 = "48556fcff723564962d5efc2d9b81f44f284fc402ed637b2a399c4ee39820365";
620
620
+
sha256 = "77040ab2fe50cd59127effd5727b6fbacd6e15d55d20c55016086a220236a9ee";
621
621
}
622
622
{
623
623
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ka/thunderbird-128.5.0esr.tar.bz2";
623
623
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ka/thunderbird-128.5.2esr.tar.bz2";
624
624
locale = "ka";
625
625
arch = "linux-i686";
626
626
-
sha256 = "32cae5dc83bc8af9e8dc78a9d4840ae65dc7cb9398eb8941b1eb447a3673d5a3";
626
626
+
sha256 = "d71139c1718d98565be56073cad10a34060c705ef0f6a387b05bd5fd3e6971e1";
627
627
}
628
628
{
629
629
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/kab/thunderbird-128.5.0esr.tar.bz2";
629
629
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/kab/thunderbird-128.5.2esr.tar.bz2";
630
630
locale = "kab";
631
631
arch = "linux-i686";
632
632
-
sha256 = "9777ffd9750589355d6813a55bc0467f956020e8f406b121e9f309e1e7b479da";
632
632
+
sha256 = "4db2df253866f81f88843e5f0e5f451dd28a8ea070f897e574eb8fd740dddb31";
633
633
}
634
634
{
635
635
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/kk/thunderbird-128.5.0esr.tar.bz2";
635
635
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/kk/thunderbird-128.5.2esr.tar.bz2";
636
636
locale = "kk";
637
637
arch = "linux-i686";
638
638
-
sha256 = "668aeab0a0805d16ee124b5b01b70558d1b719a3f1192c13a180d119ec5dc44c";
638
638
+
sha256 = "962831077ceeb6edbda3c934fd390bf1d3f1288932ff4d64623d01dc7b494993";
639
639
}
640
640
{
641
641
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ko/thunderbird-128.5.0esr.tar.bz2";
641
641
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ko/thunderbird-128.5.2esr.tar.bz2";
642
642
locale = "ko";
643
643
arch = "linux-i686";
644
644
-
sha256 = "bc3cb3148ff679839bdfded84fa7cd304293a6aad2309af6660436e5bba9b8ec";
644
644
+
sha256 = "79d9b7d80a91ed7d3d6a9fbaf0e5f4908232ba1d07cb7f418216865ad10289d9";
645
645
}
646
646
{
647
647
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/lt/thunderbird-128.5.0esr.tar.bz2";
647
647
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/lt/thunderbird-128.5.2esr.tar.bz2";
648
648
locale = "lt";
649
649
arch = "linux-i686";
650
650
-
sha256 = "0892035b80226a7b2ec419d50784abe51f71554fe18d93c2ec19d2712e94992d";
650
650
+
sha256 = "744153437c8ed2af20906d12b2dc8d57aa455726c880a347969a9c7a7ecc0a38";
651
651
}
652
652
{
653
653
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/lv/thunderbird-128.5.0esr.tar.bz2";
653
653
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/lv/thunderbird-128.5.2esr.tar.bz2";
654
654
locale = "lv";
655
655
arch = "linux-i686";
656
656
-
sha256 = "48d8939c0ef1a9873ed899c9c48136b9588834d92cf30e3c596c852ba52151cc";
656
656
+
sha256 = "61c4a370c6b12dc048b067fadf6dfaa718d9c70d6502e06443aafac3c5acb567";
657
657
}
658
658
{
659
659
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ms/thunderbird-128.5.0esr.tar.bz2";
659
659
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ms/thunderbird-128.5.2esr.tar.bz2";
660
660
locale = "ms";
661
661
arch = "linux-i686";
662
662
-
sha256 = "3232bbabf77527e425cd11482ce3958f123ef15d678091d5db8557bb6e44bb7e";
662
662
+
sha256 = "246e7f0d1287e90bb309a62a16953dfd517ea681b7257733154d73101f3a4dc1";
663
663
}
664
664
{
665
665
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/nb-NO/thunderbird-128.5.0esr.tar.bz2";
665
665
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/nb-NO/thunderbird-128.5.2esr.tar.bz2";
666
666
locale = "nb-NO";
667
667
arch = "linux-i686";
668
668
-
sha256 = "278250280ca434aa4609d6f40f736c9eb2e591f860732acccc14caea9d4fce91";
668
668
+
sha256 = "9a4c223b26430b0222e615a3833ee5f1ad7958a7872f806bb12673d7a9c0e728";
669
669
}
670
670
{
671
671
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/nl/thunderbird-128.5.0esr.tar.bz2";
671
671
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/nl/thunderbird-128.5.2esr.tar.bz2";
672
672
locale = "nl";
673
673
arch = "linux-i686";
674
674
-
sha256 = "06d5b30f31d8cb020df0b29d8bf116664623b58dba6fccb4da49620d55e11097";
674
674
+
sha256 = "28311076a854d1dc9eafb7e558955e68c78dd2a75079199316aa005e52279696";
675
675
}
676
676
{
677
677
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/nn-NO/thunderbird-128.5.0esr.tar.bz2";
677
677
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/nn-NO/thunderbird-128.5.2esr.tar.bz2";
678
678
locale = "nn-NO";
679
679
arch = "linux-i686";
680
680
-
sha256 = "6a06b0eb2885a9673bd46f4f2fa2298e3ae97ea460e2b86b7a4974d37ab056b3";
680
680
+
sha256 = "2b2b3f5745b358c374b7b23d5c8ce3054ed3c9a05978f90d8cbc41e19df44827";
681
681
}
682
682
{
683
683
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pa-IN/thunderbird-128.5.0esr.tar.bz2";
683
683
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pa-IN/thunderbird-128.5.2esr.tar.bz2";
684
684
locale = "pa-IN";
685
685
arch = "linux-i686";
686
686
-
sha256 = "540fea06d1665754e8aa440f2f09267b4907245d3f4a5f5a01ffd375c8b1f9b9";
686
686
+
sha256 = "866aac01aef4602fcd0fbfda56e216647701e6b4b4b0fea7de59a0571f5e2890";
687
687
}
688
688
{
689
689
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pl/thunderbird-128.5.0esr.tar.bz2";
689
689
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pl/thunderbird-128.5.2esr.tar.bz2";
690
690
locale = "pl";
691
691
arch = "linux-i686";
692
692
-
sha256 = "50601e0dcc19aede6d8f731690a98accd3f190525eb3f9239ac002943736772e";
692
692
+
sha256 = "a8b67a1ca2c1009e95e536e953eac807add88c4e97b5408e203cd3b07e1bd3d7";
693
693
}
694
694
{
695
695
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pt-BR/thunderbird-128.5.0esr.tar.bz2";
695
695
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pt-BR/thunderbird-128.5.2esr.tar.bz2";
696
696
locale = "pt-BR";
697
697
arch = "linux-i686";
698
698
-
sha256 = "5f0f63a764a1078219fd74890260cdd88409c635c1ec5159170dd55f53e77269";
698
698
+
sha256 = "73b32d26cdd9c58cfcb2f100e54dbeed32e4b22ebdc4e77826b4b48e84f69fce";
699
699
}
700
700
{
701
701
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/pt-PT/thunderbird-128.5.0esr.tar.bz2";
701
701
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/pt-PT/thunderbird-128.5.2esr.tar.bz2";
702
702
locale = "pt-PT";
703
703
arch = "linux-i686";
704
704
-
sha256 = "14aa259fb2791e21d597267972d73fd7653bccd9ae5d46568a2356f8d6b99ff3";
704
704
+
sha256 = "70ec94a2c4f1bacb8f2be1845f9899dd04120a032c5a1a3af7d7ad8139f4b3f1";
705
705
}
706
706
{
707
707
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/rm/thunderbird-128.5.0esr.tar.bz2";
707
707
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/rm/thunderbird-128.5.2esr.tar.bz2";
708
708
locale = "rm";
709
709
arch = "linux-i686";
710
710
-
sha256 = "dc76ed46119a8674bcf1d635736fed833f5059c1bbfcb5ec438cbb14ce3cfc60";
710
710
+
sha256 = "d3c1b500388ab3a3a9bc8598509a299d3e053cf90f7638130bb15d0bef65a161";
711
711
}
712
712
{
713
713
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ro/thunderbird-128.5.0esr.tar.bz2";
713
713
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ro/thunderbird-128.5.2esr.tar.bz2";
714
714
locale = "ro";
715
715
arch = "linux-i686";
716
716
-
sha256 = "6cd8772297a9ad2081a2b09a98f7d927907734cce5be4353c323f1a47d7c5c53";
716
716
+
sha256 = "f309aa8ddf0a825c96c4de792386532a71690b3ee6b4151fc0c468d9067e3d04";
717
717
}
718
718
{
719
719
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/ru/thunderbird-128.5.0esr.tar.bz2";
719
719
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/ru/thunderbird-128.5.2esr.tar.bz2";
720
720
locale = "ru";
721
721
arch = "linux-i686";
722
722
-
sha256 = "09e176ce5b1fdc83011ee13656a16f05ac001b37b312c60499ed125a7d0045d8";
722
722
+
sha256 = "784f3df223bb5f6ee7870c6d2f752ab409226183f0f7e8f3d4b1c41ad3867661";
723
723
}
724
724
{
725
725
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sk/thunderbird-128.5.0esr.tar.bz2";
725
725
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sk/thunderbird-128.5.2esr.tar.bz2";
726
726
locale = "sk";
727
727
arch = "linux-i686";
728
728
-
sha256 = "d92580dc8af74dc6f8e42f83816d5f673023bf3c99d111e4db209169120844e7";
728
728
+
sha256 = "8b0440effa49fd9531ba19f7a3817a81d661a9badb4aff8e6716aceaaa1daedc";
729
729
}
730
730
{
731
731
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sl/thunderbird-128.5.0esr.tar.bz2";
731
731
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sl/thunderbird-128.5.2esr.tar.bz2";
732
732
locale = "sl";
733
733
arch = "linux-i686";
734
734
-
sha256 = "9a7a336d20a67550a29820d0971c35b9ea094a725bc31322570ed87c3d0c6df6";
734
734
+
sha256 = "e80fe7a9baeaa76928524936181d07c083cc62599c318d619124b09030525833";
735
735
}
736
736
{
737
737
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sq/thunderbird-128.5.0esr.tar.bz2";
737
737
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sq/thunderbird-128.5.2esr.tar.bz2";
738
738
locale = "sq";
739
739
arch = "linux-i686";
740
740
-
sha256 = "4b30e60ddd89e203f43c229e8a068f9168d4950f28872b3718526bf1cec96fee";
740
740
+
sha256 = "cb2bc3cf4bd306c80e49f9e7483c43835e8a89021a89c6a73053008ba40eeef3";
741
741
}
742
742
{
743
743
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sr/thunderbird-128.5.0esr.tar.bz2";
743
743
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sr/thunderbird-128.5.2esr.tar.bz2";
744
744
locale = "sr";
745
745
arch = "linux-i686";
746
746
-
sha256 = "cf81a4717f8711b3271c3885d30307ed21096d5c75cd350d7c147df14758e49c";
746
746
+
sha256 = "9778729ba9f0bed6c028588fc2df06eae4ce915996700bce020b507ff69d90e9";
747
747
}
748
748
{
749
749
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/sv-SE/thunderbird-128.5.0esr.tar.bz2";
749
749
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/sv-SE/thunderbird-128.5.2esr.tar.bz2";
750
750
locale = "sv-SE";
751
751
arch = "linux-i686";
752
752
-
sha256 = "5fd223489a2547f1bd90c86ffd92ba3fab9ffca84830927d70b2d2d875d370f3";
752
752
+
sha256 = "c3fd2fca4880c2ad42f5b15b768eb7060ab45a03e4edf0db697c20f4c91b5bca";
753
753
}
754
754
{
755
755
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/th/thunderbird-128.5.0esr.tar.bz2";
755
755
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/th/thunderbird-128.5.2esr.tar.bz2";
756
756
locale = "th";
757
757
arch = "linux-i686";
758
758
-
sha256 = "278b2051256b8d2185701ddce3ddded8db683295e1d8b28ae26c5f0aeb4c4dde";
758
758
+
sha256 = "136e1636a016138d252655f08b773d95c08759c77b4a16afac08b21ca89599de";
759
759
}
760
760
{
761
761
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/tr/thunderbird-128.5.0esr.tar.bz2";
761
761
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/tr/thunderbird-128.5.2esr.tar.bz2";
762
762
locale = "tr";
763
763
arch = "linux-i686";
764
764
-
sha256 = "36a716a4e38eedde49ab9632d32782fa244eed8091caa7a7acd4065c523994b5";
764
764
+
sha256 = "132b33f801a11fc6ae19ce7fc7cd34b448f6115db23c3e7426050e60cbfc8d5a";
765
765
}
766
766
{
767
767
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/uk/thunderbird-128.5.0esr.tar.bz2";
767
767
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/uk/thunderbird-128.5.2esr.tar.bz2";
768
768
locale = "uk";
769
769
arch = "linux-i686";
770
770
-
sha256 = "f3e32dcbde43f6f6cbf85da393d777b781022264897958b5bc31e5cb9b4dfa74";
770
770
+
sha256 = "62e8713ce1a2259433951df6c232b18f90793698abd57cc9bc28e80da95fa371";
771
771
}
772
772
{
773
773
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/uz/thunderbird-128.5.0esr.tar.bz2";
773
773
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/uz/thunderbird-128.5.2esr.tar.bz2";
774
774
locale = "uz";
775
775
arch = "linux-i686";
776
776
-
sha256 = "4bf7147f7b81a06bf8768cc765dd8a18689ae275d802cfe21da31a80edff0dbc";
776
776
+
sha256 = "33ec7f20edf12d33c45377129330949b0fab1e0bd379aee48bdab685a2856f4b";
777
777
}
778
778
{
779
779
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/vi/thunderbird-128.5.0esr.tar.bz2";
779
779
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/vi/thunderbird-128.5.2esr.tar.bz2";
780
780
locale = "vi";
781
781
arch = "linux-i686";
782
782
-
sha256 = "50446ba6696a84faaedda2d2f8e733c37410ac6d94f74f6634a9f3bacee326cd";
782
782
+
sha256 = "11596e965c414b75ccd29c05fbac9fc8b3597690ef01e3d46c644b4fe05f8639";
783
783
}
784
784
{
785
785
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/zh-CN/thunderbird-128.5.0esr.tar.bz2";
785
785
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/zh-CN/thunderbird-128.5.2esr.tar.bz2";
786
786
locale = "zh-CN";
787
787
arch = "linux-i686";
788
788
-
sha256 = "f1bf08a735a7d6aab3a732be36ad5d37c880673a268feb4272d82b3beef48b04";
788
788
+
sha256 = "d2c1ab05c576fe3325b9b7f172a72bdefa8c5371165f4cbe50301c582473d450";
789
789
}
790
790
{
791
791
-
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.0esr/linux-i686/zh-TW/thunderbird-128.5.0esr.tar.bz2";
791
791
+
url = "http://archive.mozilla.org/pub/thunderbird/releases/128.5.2esr/linux-i686/zh-TW/thunderbird-128.5.2esr.tar.bz2";
792
792
locale = "zh-TW";
793
793
arch = "linux-i686";
794
794
-
sha256 = "523cab1dac4989ea47a3432d3d99bb467f9e1e71e90a9c0069c81eb9c8ff946e";
794
794
+
sha256 = "f3ba1f101bc1cc33fbca683c2d3999e5ee24790a8492f08fd7cfeaea9d451ae5";
795
795
}
796
796
];
797
797
}
+2
-2
pkgs/applications/networking/mailreaders/thunderbird/packages.nix
···
92
92
thunderbird-esr = thunderbird-128;
93
93
94
94
thunderbird-128 = common {
95
95
-
version = "128.5.1esr";
96
96
-
sha512 = "1dfa0752a1dbfc4d7516beab13e188aa40c145f2eb0554441ecc4dff739cc862c15fdfdd8c0cc026d010ba3caa57d6168da35e484c04989fb6c81f5c09215831";
95
95
+
version = "128.5.2esr";
96
96
+
sha512 = "cbfd4b1a7245c2a2f6ef9b2cf69d95a8095eba855755d00fd397351b21ad504733084d6f41801f4114be7015332b8db65e5290bec45f5321efc753412b9acecc";
97
97
98
98
updateScript = callPackage ./update.nix {
99
99
attrPath = "thunderbirdPackages.thunderbird-128";
+19
-13
pkgs/applications/office/qownnotes/default.nix
···
36
36
wrapQtAppsHook
37
37
pkg-config
38
38
installShellFiles
39
39
-
xvfb-run
40
40
-
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ makeWrapper ];
39
39
+
] ++ lib.optionals stdenv.hostPlatform.isLinux [ xvfb-run ] ++ lib.optionals stdenv.hostPlatform.isDarwin [ makeWrapper ];
41
40
42
41
buildInputs = [
43
42
qtbase
···
52
51
"-DBUILD_WITH_SYSTEM_BOTAN=ON"
53
52
];
54
53
55
55
-
postInstall = ''
56
56
-
installShellCompletion --cmd ${appname} \
57
57
-
--bash <(xvfb-run $out/bin/${appname} --completion bash) \
58
58
-
--fish <(xvfb-run $out/bin/${appname} --completion fish)
59
59
-
installShellCompletion --cmd ${pname} \
60
60
-
--bash <(xvfb-run $out/bin/${appname} --completion bash) \
61
61
-
--fish <(xvfb-run $out/bin/${appname} --completion fish)
54
54
+
# Install shell completion on Linux (with xvfb-run)
55
55
+
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
56
56
+
installShellCompletion --cmd ${appname} \
57
57
+
--bash <(xvfb-run $out/bin/${appname} --completion bash) \
58
58
+
--fish <(xvfb-run $out/bin/${appname} --completion fish)
59
59
+
installShellCompletion --cmd ${pname} \
60
60
+
--bash <(xvfb-run $out/bin/${appname} --completion bash) \
61
61
+
--fish <(xvfb-run $out/bin/${appname} --completion fish)
62
62
+
''
63
63
+
# Install shell completion on macOS
64
64
+
+ lib.optionalString stdenv.isDarwin ''
65
65
+
installShellCompletion --cmd ${pname} \
66
66
+
--bash <($out/bin/${appname} --completion bash) \
67
67
+
--fish <($out/bin/${appname} --completion fish)
62
68
''
63
69
# Create a lowercase symlink for Linux
64
70
+ lib.optionalString stdenv.hostPlatform.isLinux ''
65
71
ln -s $out/bin/${appname} $out/bin/${pname}
66
72
''
67
67
-
# Wrap application for macOS as lowercase binary
73
73
+
# Rename application for macOS as lowercase binary
68
74
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
69
69
-
mkdir -p $out/Applications
70
70
-
mv $out/bin/${appname}.app $out/Applications
71
71
-
makeWrapper $out/Applications/${appname}.app/Contents/MacOS/${appname} $out/bin/${pname}
75
75
+
# Prevent "same file" error
76
76
+
mv $out/bin/${appname} $out/bin/${pname}.bin
77
77
+
mv $out/bin/${pname}.bin $out/bin/${pname}
72
78
'';
73
79
74
80
# Tests QOwnNotes using the NixOS module by launching xterm:
+4
-3
pkgs/applications/science/logic/coq/default.nix
···
228
228
mainProgram = "coqide";
229
229
};
230
230
}; in
231
231
-
if coqAtLeast "8.17" then self.overrideAttrs(_: {
231
231
+
if coqAtLeast "8.17" then self.overrideAttrs(_: let
232
232
+
init-stdlib-package = if coqAtLeast "8.21" then "rocq-core" else "coq-stdlib"; in {
232
233
buildPhase = ''
233
234
runHook preBuild
234
235
make dunestrap
235
235
-
dune build -p coq-core,coq-stdlib,coq,coqide-server${lib.optionalString buildIde ",coqide"} -j $NIX_BUILD_CORES
236
236
+
dune build -p coq-core,${init-stdlib-package},coqide-server${lib.optionalString buildIde ",coqide"} -j $NIX_BUILD_CORES
236
237
runHook postBuild
237
238
'';
238
239
installPhase = ''
239
240
runHook preInstall
240
240
-
dune install --prefix $out coq-core coq-stdlib coq coqide-server${lib.optionalString buildIde " coqide"}
241
241
+
dune install --prefix $out coq-core ${init-stdlib-package} coqide-server${lib.optionalString buildIde " coqide"}
241
242
runHook postInstall
242
243
'';
243
244
}) else self
+5
-3
pkgs/build-support/dart/pub2nix/package-config.nix
···
34
34
done < <(jq -r '.packages | to_entries | map("\(.key),\(.value.src),\(.value.packageRoot)") | .[]' "$NIX_ATTRS_JSON_FILE")
35
35
36
36
for package in "''${!packageSources[@]}"; do
37
37
-
if [ ! -e "''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml" ]; then
37
37
+
pubspec="$(realpath --logical "''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml")"
38
38
+
39
39
+
if [ ! -e "$pubspec" ]; then
38
40
echo >&2 "The package sources for $package are missing. Is the following path inside the source derivation?"
39
39
-
echo >&2 "Source path: ''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml"
41
41
+
echo >&2 "Source path: $pubspec"
40
42
exit 1
41
43
fi
42
44
43
43
-
languageConstraint="$(yq -r .environment.sdk "''${packageSources["$package"]}/''${packageRoots["$package"]}/pubspec.yaml")"
45
45
+
languageConstraint="$(yq -r .environment.sdk "$pubspec")"
44
46
if [[ "$languageConstraint" =~ ^[[:space:]]*(\^|>=|>)?[[:space:]]*([[:digit:]]+\.[[:digit:]]+)\.[[:digit:]]+.*$ ]]; then
45
47
languageVersionJson="\"''${BASH_REMATCH[2]}\""
46
48
elif [ "$languageConstraint" = 'any' ]; then
+2
-2
pkgs/by-name/ek/eksctl/package.nix
···
7
7
8
8
buildGoModule rec {
9
9
pname = "eksctl";
10
10
-
version = "0.197.0";
10
10
+
version = "0.198.0";
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "weaveworks";
14
14
repo = pname;
15
15
rev = version;
16
16
-
hash = "sha256-JHhZFcjnURgt+HqRwy/0rZ2qrzpeX/WGeXJ0arhRDq8=";
16
16
+
hash = "sha256-iYjp6gJlw5iVjbEcx/fLlTDkd0AXKLCJw7ig8h3cSCM=";
17
17
};
18
18
19
19
vendorHash = "sha256-f7+IlOcGJL5G52wPZz1oeHmR8LR8XZh6ASV1qi7hXi0=";
+422
-499
pkgs/by-name/fl/flarum/composer.lock
···
229
229
},
230
230
{
231
231
"name": "dflydev/dot-access-data",
232
232
-
"version": "v3.0.2",
232
232
+
"version": "v3.0.3",
233
233
"source": {
234
234
"type": "git",
235
235
"url": "https://github.com/dflydev/dflydev-dot-access-data.git",
236
236
-
"reference": "f41715465d65213d644d3141a6a93081be5d3549"
236
236
+
"reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
237
237
},
238
238
"dist": {
239
239
"type": "zip",
240
240
-
"url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
241
241
-
"reference": "f41715465d65213d644d3141a6a93081be5d3549",
240
240
+
"url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
241
241
+
"reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
242
242
"shasum": ""
243
243
},
244
244
"require": {
···
298
298
],
299
299
"support": {
300
300
"issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
301
301
-
"source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
301
301
+
"source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
302
302
},
303
303
-
"time": "2022-10-27T11:44:00+00:00"
303
303
+
"time": "2024-07-08T12:26:09+00:00"
304
304
},
305
305
{
306
306
"name": "dflydev/fig-cookies",
···
874
874
},
875
875
{
876
876
"name": "dragonmantank/cron-expression",
877
877
-
"version": "v3.3.3",
877
877
+
"version": "v3.4.0",
878
878
"source": {
879
879
"type": "git",
880
880
"url": "https://github.com/dragonmantank/cron-expression.git",
881
881
-
"reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
881
881
+
"reference": "8c784d071debd117328803d86b2097615b457500"
882
882
},
883
883
"dist": {
884
884
"type": "zip",
885
885
-
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
886
886
-
"reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
885
885
+
"url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
886
886
+
"reference": "8c784d071debd117328803d86b2097615b457500",
887
887
"shasum": ""
888
888
},
889
889
"require": {
···
896
896
"require-dev": {
897
897
"phpstan/extension-installer": "^1.0",
898
898
"phpstan/phpstan": "^1.0",
899
899
-
"phpstan/phpstan-webmozart-assert": "^1.0",
900
899
"phpunit/phpunit": "^7.0|^8.0|^9.0"
901
900
},
902
901
"type": "library",
902
902
+
"extra": {
903
903
+
"branch-alias": {
904
904
+
"dev-master": "3.x-dev"
905
905
+
}
906
906
+
},
903
907
"autoload": {
904
908
"psr-4": {
905
909
"Cron\\": "src/Cron/"
···
923
927
],
924
928
"support": {
925
929
"issues": "https://github.com/dragonmantank/cron-expression/issues",
926
926
-
"source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
930
930
+
"source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
927
931
},
928
932
"funding": [
929
933
{
···
931
935
"type": "github"
932
936
}
933
937
],
934
934
-
"time": "2023-08-10T19:36:49+00:00"
938
938
+
"time": "2024-10-09T13:47:03+00:00"
935
939
},
936
940
{
937
941
"name": "egulias/email-validator",
···
1059
1063
},
1060
1064
{
1061
1065
"name": "filp/whoops",
1062
1062
-
"version": "2.15.4",
1066
1066
+
"version": "2.16.0",
1063
1067
"source": {
1064
1068
"type": "git",
1065
1069
"url": "https://github.com/filp/whoops.git",
1066
1066
-
"reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
1070
1070
+
"reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
1067
1071
},
1068
1072
"dist": {
1069
1073
"type": "zip",
1070
1070
-
"url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
1071
1071
-
"reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
1074
1074
+
"url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
1075
1075
+
"reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
1072
1076
"shasum": ""
1073
1077
},
1074
1078
"require": {
1075
1075
-
"php": "^5.5.9 || ^7.0 || ^8.0",
1079
1079
+
"php": "^7.1 || ^8.0",
1076
1080
"psr/log": "^1.0.1 || ^2.0 || ^3.0"
1077
1081
},
1078
1082
"require-dev": {
1079
1079
-
"mockery/mockery": "^0.9 || ^1.0",
1080
1080
-
"phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
1081
1081
-
"symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
1083
1083
+
"mockery/mockery": "^1.0",
1084
1084
+
"phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
1085
1085
+
"symfony/var-dumper": "^4.0 || ^5.0"
1082
1086
},
1083
1087
"suggest": {
1084
1088
"symfony/var-dumper": "Pretty print complex values better with var-dumper available",
···
1118
1122
],
1119
1123
"support": {
1120
1124
"issues": "https://github.com/filp/whoops/issues",
1121
1121
-
"source": "https://github.com/filp/whoops/tree/2.15.4"
1125
1125
+
"source": "https://github.com/filp/whoops/tree/2.16.0"
1122
1126
},
1123
1127
"funding": [
1124
1128
{
···
1126
1130
"type": "github"
1127
1131
}
1128
1132
],
1129
1129
-
"time": "2023-11-03T12:00:00+00:00"
1133
1133
+
"time": "2024-09-25T12:00:00+00:00"
1130
1134
},
1131
1135
{
1132
1136
"name": "flarum/approval",
1133
1133
-
"version": "v1.8.1",
1137
1137
+
"version": "v1.8.2",
1134
1138
"source": {
1135
1139
"type": "git",
1136
1140
"url": "https://github.com/flarum/approval.git",
1137
1137
-
"reference": "b1442698dd4e57300b7b2e5b1b6a14ee484757ba"
1141
1141
+
"reference": "61a76252b455d5dcad5535e9fef4a5445643d59a"
1138
1142
},
1139
1143
"dist": {
1140
1144
"type": "zip",
1141
1141
-
"url": "https://api.github.com/repos/flarum/approval/zipball/b1442698dd4e57300b7b2e5b1b6a14ee484757ba",
1142
1142
-
"reference": "b1442698dd4e57300b7b2e5b1b6a14ee484757ba",
1145
1145
+
"url": "https://api.github.com/repos/flarum/approval/zipball/61a76252b455d5dcad5535e9fef4a5445643d59a",
1146
1146
+
"reference": "61a76252b455d5dcad5535e9fef4a5445643d59a",
1143
1147
"shasum": ""
1144
1148
},
1145
1149
"require": {
···
1206
1210
"type": "website"
1207
1211
}
1208
1212
],
1209
1209
-
"time": "2023-11-17T16:58:14+00:00"
1213
1213
+
"time": "2024-10-02T11:13:26+00:00"
1210
1214
},
1211
1215
{
1212
1216
"name": "flarum/bbcode",
···
1286
1290
},
1287
1291
{
1288
1292
"name": "flarum/core",
1289
1289
-
"version": "v1.8.5",
1293
1293
+
"version": "v1.8.9",
1290
1294
"source": {
1291
1295
"type": "git",
1292
1296
"url": "https://github.com/flarum/flarum-core.git",
1293
1293
-
"reference": "2e8500500c58927ab056ec2d27ec36ea836cf1b2"
1297
1297
+
"reference": "c09efebdcfb4cdc396bee0efafa0a81946fc813f"
1294
1298
},
1295
1299
"dist": {
1296
1300
"type": "zip",
1297
1297
-
"url": "https://api.github.com/repos/flarum/flarum-core/zipball/2e8500500c58927ab056ec2d27ec36ea836cf1b2",
1298
1298
-
"reference": "2e8500500c58927ab056ec2d27ec36ea836cf1b2",
1301
1301
+
"url": "https://api.github.com/repos/flarum/flarum-core/zipball/c09efebdcfb4cdc396bee0efafa0a81946fc813f",
1302
1302
+
"reference": "c09efebdcfb4cdc396bee0efafa0a81946fc813f",
1299
1303
"shasum": ""
1300
1304
},
1301
1305
"require": {
···
1323
1327
"illuminate/view": "^8.0",
1324
1328
"intervention/image": "2.5.* || ^2.6.1",
1325
1329
"jenssegers/agent": "^2.6",
1326
1326
-
"laminas/laminas-diactoros": "^2.4.1",
1327
1327
-
"laminas/laminas-httphandlerrunner": "^1.2.0 || ^2.3.0",
1328
1328
-
"laminas/laminas-stratigility": "^3.2.2",
1330
1330
+
"laminas/laminas-diactoros": "^2.4.1 || ^3.0.0",
1331
1331
+
"laminas/laminas-httphandlerrunner": "^1.2.0 || ^2.3.0 || ^3.0.0",
1332
1332
+
"laminas/laminas-stratigility": "^3.2.2 || ^4.0.0",
1329
1333
"league/flysystem": "^1.0.11",
1330
1334
"matthiasmullie/minify": "^1.3",
1331
1335
"middlewares/base-path": "^2.0.1",
···
1428
1432
"type": "other"
1429
1433
}
1430
1434
],
1431
1431
-
"time": "2024-01-05T15:47:32+00:00"
1435
1435
+
"time": "2024-11-20T13:51:54+00:00"
1432
1436
},
1433
1437
{
1434
1438
"name": "flarum/emoji",
1435
1435
-
"version": "v1.8.0",
1439
1439
+
"version": "v1.8.1",
1436
1440
"source": {
1437
1441
"type": "git",
1438
1442
"url": "https://github.com/flarum/emoji.git",
1439
1439
-
"reference": "b09f3ece759bba06f89d89e3f62c9ce65b35351e"
1443
1443
+
"reference": "edd6527e1014fd30779627f1c91461d12a9a1173"
1440
1444
},
1441
1445
"dist": {
1442
1446
"type": "zip",
1443
1443
-
"url": "https://api.github.com/repos/flarum/emoji/zipball/b09f3ece759bba06f89d89e3f62c9ce65b35351e",
1444
1444
-
"reference": "b09f3ece759bba06f89d89e3f62c9ce65b35351e",
1447
1447
+
"url": "https://api.github.com/repos/flarum/emoji/zipball/edd6527e1014fd30779627f1c91461d12a9a1173",
1448
1448
+
"reference": "edd6527e1014fd30779627f1c91461d12a9a1173",
1445
1449
"shasum": ""
1446
1450
},
1447
1451
"require": {
···
1498
1502
"type": "website"
1499
1503
}
1500
1504
],
1501
1501
-
"time": "2023-05-20T15:08:42+00:00"
1505
1505
+
"time": "2024-10-02T07:10:53+00:00"
1502
1506
},
1503
1507
{
1504
1508
"name": "flarum/flags",
1505
1505
-
"version": "v1.8.0",
1509
1509
+
"version": "v1.8.2",
1506
1510
"source": {
1507
1511
"type": "git",
1508
1512
"url": "https://github.com/flarum/flags.git",
1509
1509
-
"reference": "941cc37719b6437eca09f03715a27793abe1fb48"
1513
1513
+
"reference": "ba857db6f0e8c8b55cbab1ca0b7bc30215e92447"
1510
1514
},
1511
1515
"dist": {
1512
1516
"type": "zip",
1513
1513
-
"url": "https://api.github.com/repos/flarum/flags/zipball/941cc37719b6437eca09f03715a27793abe1fb48",
1514
1514
-
"reference": "941cc37719b6437eca09f03715a27793abe1fb48",
1517
1517
+
"url": "https://api.github.com/repos/flarum/flags/zipball/ba857db6f0e8c8b55cbab1ca0b7bc30215e92447",
1518
1518
+
"reference": "ba857db6f0e8c8b55cbab1ca0b7bc30215e92447",
1515
1519
"shasum": ""
1516
1520
},
1517
1521
"require": {
1518
1518
-
"flarum/core": "^1.8"
1522
1522
+
"flarum/core": "^1.8.6"
1519
1523
},
1520
1524
"require-dev": {
1521
1525
"flarum/core": "*@dev",
···
1579
1583
"type": "website"
1580
1584
}
1581
1585
],
1582
1582
-
"time": "2023-05-20T15:08:42+00:00"
1586
1586
+
"time": "2024-10-26T22:18:59+00:00"
1583
1587
},
1584
1588
{
1585
1589
"name": "flarum/lang-english",
···
1665
1669
},
1666
1670
{
1667
1671
"name": "flarum/likes",
1668
1668
-
"version": "v1.8.0",
1672
1672
+
"version": "v1.8.1",
1669
1673
"source": {
1670
1674
"type": "git",
1671
1675
"url": "https://github.com/flarum/likes.git",
1672
1672
-
"reference": "55dfbb535a18149cd0cca66703fd19da07cb3a36"
1676
1676
+
"reference": "106cfa65076ba4be2da7af99f86eac99e5a38f4d"
1673
1677
},
1674
1678
"dist": {
1675
1679
"type": "zip",
1676
1676
-
"url": "https://api.github.com/repos/flarum/likes/zipball/55dfbb535a18149cd0cca66703fd19da07cb3a36",
1677
1677
-
"reference": "55dfbb535a18149cd0cca66703fd19da07cb3a36",
1680
1680
+
"url": "https://api.github.com/repos/flarum/likes/zipball/106cfa65076ba4be2da7af99f86eac99e5a38f4d",
1681
1681
+
"reference": "106cfa65076ba4be2da7af99f86eac99e5a38f4d",
1678
1682
"shasum": ""
1679
1683
},
1680
1684
"require": {
···
1740
1744
"type": "website"
1741
1745
}
1742
1746
],
1743
1743
-
"time": "2023-05-20T15:08:42+00:00"
1747
1747
+
"time": "2024-10-02T11:13:26+00:00"
1744
1748
},
1745
1749
{
1746
1750
"name": "flarum/lock",
1747
1747
-
"version": "v1.8.0",
1751
1751
+
"version": "v1.8.2",
1748
1752
"source": {
1749
1753
"type": "git",
1750
1754
"url": "https://github.com/flarum/lock.git",
1751
1751
-
"reference": "3d48574c0ebdd3ef28d65fe4882d7af00797bce1"
1755
1755
+
"reference": "f526df48dfa7b87aee0ca0b245000a3f3960cece"
1752
1756
},
1753
1757
"dist": {
1754
1758
"type": "zip",
1755
1755
-
"url": "https://api.github.com/repos/flarum/lock/zipball/3d48574c0ebdd3ef28d65fe4882d7af00797bce1",
1756
1756
-
"reference": "3d48574c0ebdd3ef28d65fe4882d7af00797bce1",
1759
1759
+
"url": "https://api.github.com/repos/flarum/lock/zipball/f526df48dfa7b87aee0ca0b245000a3f3960cece",
1760
1760
+
"reference": "f526df48dfa7b87aee0ca0b245000a3f3960cece",
1757
1761
"shasum": ""
1758
1762
},
1759
1763
"require": {
···
1816
1820
"type": "website"
1817
1821
}
1818
1822
],
1819
1819
-
"time": "2023-05-20T15:08:42+00:00"
1823
1823
+
"time": "2024-10-26T22:15:50+00:00"
1820
1824
},
1821
1825
{
1822
1826
"name": "flarum/markdown",
1823
1823
-
"version": "v1.8.0",
1827
1827
+
"version": "v1.8.1",
1824
1828
"source": {
1825
1829
"type": "git",
1826
1830
"url": "https://github.com/flarum/markdown.git",
1827
1827
-
"reference": "2e3724c9c7b322b8af41fbddb73b0332cfbd16fc"
1831
1831
+
"reference": "22ea41d3be90d56c8b853c6798d25d2075e5f66f"
1828
1832
},
1829
1833
"dist": {
1830
1834
"type": "zip",
1831
1831
-
"url": "https://api.github.com/repos/flarum/markdown/zipball/2e3724c9c7b322b8af41fbddb73b0332cfbd16fc",
1832
1832
-
"reference": "2e3724c9c7b322b8af41fbddb73b0332cfbd16fc",
1835
1835
+
"url": "https://api.github.com/repos/flarum/markdown/zipball/22ea41d3be90d56c8b853c6798d25d2075e5f66f",
1836
1836
+
"reference": "22ea41d3be90d56c8b853c6798d25d2075e5f66f",
1833
1837
"shasum": ""
1834
1838
},
1835
1839
"require": {
···
1890
1894
"type": "website"
1891
1895
}
1892
1896
],
1893
1893
-
"time": "2023-05-20T15:08:42+00:00"
1897
1897
+
"time": "2024-10-02T07:10:53+00:00"
1894
1898
},
1895
1899
{
1896
1900
"name": "flarum/mentions",
1897
1897
-
"version": "v1.8.3",
1901
1901
+
"version": "v1.8.5",
1898
1902
"source": {
1899
1903
"type": "git",
1900
1904
"url": "https://github.com/flarum/mentions.git",
1901
1901
-
"reference": "026b261ccd65153c961c0c28d6c8c7f42e2a1ddf"
1905
1905
+
"reference": "cda26a4fbfa39b646c6d63394b281b004ddf69b6"
1902
1906
},
1903
1907
"dist": {
1904
1908
"type": "zip",
1905
1905
-
"url": "https://api.github.com/repos/flarum/mentions/zipball/026b261ccd65153c961c0c28d6c8c7f42e2a1ddf",
1906
1906
-
"reference": "026b261ccd65153c961c0c28d6c8c7f42e2a1ddf",
1909
1909
+
"url": "https://api.github.com/repos/flarum/mentions/zipball/cda26a4fbfa39b646c6d63394b281b004ddf69b6",
1910
1910
+
"reference": "cda26a4fbfa39b646c6d63394b281b004ddf69b6",
1907
1911
"shasum": ""
1908
1912
},
1909
1913
"require": {
···
1974
1978
"type": "website"
1975
1979
}
1976
1980
],
1977
1977
-
"time": "2024-01-10T09:53:10+00:00"
1981
1981
+
"time": "2024-11-06T14:59:27+00:00"
1978
1982
},
1979
1983
{
1980
1984
"name": "flarum/nicknames",
1981
1981
-
"version": "v1.8.0",
1985
1985
+
"version": "v1.8.2",
1982
1986
"source": {
1983
1987
"type": "git",
1984
1988
"url": "https://github.com/flarum/nicknames.git",
1985
1985
-
"reference": "0821e5c982dd16d26c5260879b866eb416e8bb86"
1989
1989
+
"reference": "ab4ab706ea778f26fb923b31a3f3a2f76c5ecbc6"
1986
1990
},
1987
1991
"dist": {
1988
1992
"type": "zip",
1989
1989
-
"url": "https://api.github.com/repos/flarum/nicknames/zipball/0821e5c982dd16d26c5260879b866eb416e8bb86",
1990
1990
-
"reference": "0821e5c982dd16d26c5260879b866eb416e8bb86",
1993
1993
+
"url": "https://api.github.com/repos/flarum/nicknames/zipball/ab4ab706ea778f26fb923b31a3f3a2f76c5ecbc6",
1994
1994
+
"reference": "ab4ab706ea778f26fb923b31a3f3a2f76c5ecbc6",
1991
1995
"shasum": ""
1992
1996
},
1993
1997
"require": {
···
2054
2058
"type": "website"
2055
2059
}
2056
2060
],
2057
2057
-
"time": "2023-05-20T15:08:42+00:00"
2061
2061
+
"time": "2024-10-26T22:15:50+00:00"
2058
2062
},
2059
2063
{
2060
2064
"name": "flarum/pusher",
2061
2061
-
"version": "v1.8.0",
2065
2065
+
"version": "v1.8.1",
2062
2066
"source": {
2063
2067
"type": "git",
2064
2068
"url": "https://github.com/flarum/pusher.git",
2065
2065
-
"reference": "5eccb38e045575c148fb5bbd26cc36cf86d58c5c"
2069
2069
+
"reference": "dd1fb1da2d662ad2b9abb0757de7f0dc6fa7089f"
2066
2070
},
2067
2071
"dist": {
2068
2072
"type": "zip",
2069
2069
-
"url": "https://api.github.com/repos/flarum/pusher/zipball/5eccb38e045575c148fb5bbd26cc36cf86d58c5c",
2070
2070
-
"reference": "5eccb38e045575c148fb5bbd26cc36cf86d58c5c",
2073
2073
+
"url": "https://api.github.com/repos/flarum/pusher/zipball/dd1fb1da2d662ad2b9abb0757de7f0dc6fa7089f",
2074
2074
+
"reference": "dd1fb1da2d662ad2b9abb0757de7f0dc6fa7089f",
2071
2075
"shasum": ""
2072
2076
},
2073
2077
"require": {
···
2137
2141
"type": "website"
2138
2142
}
2139
2143
],
2140
2140
-
"time": "2023-05-20T15:08:42+00:00"
2144
2144
+
"time": "2024-09-29T14:35:29+00:00"
2141
2145
},
2142
2146
{
2143
2147
"name": "flarum/statistics",
2144
2144
-
"version": "v1.8.0",
2148
2148
+
"version": "v1.8.1",
2145
2149
"source": {
2146
2150
"type": "git",
2147
2151
"url": "https://github.com/flarum/statistics.git",
2148
2148
-
"reference": "51279d0d0d95672017db8cf7a355b0510f1a955d"
2152
2152
+
"reference": "e907100ad530babb12c67f4959ae14e22f77b3fc"
2149
2153
},
2150
2154
"dist": {
2151
2155
"type": "zip",
2152
2152
-
"url": "https://api.github.com/repos/flarum/statistics/zipball/51279d0d0d95672017db8cf7a355b0510f1a955d",
2153
2153
-
"reference": "51279d0d0d95672017db8cf7a355b0510f1a955d",
2156
2156
+
"url": "https://api.github.com/repos/flarum/statistics/zipball/e907100ad530babb12c67f4959ae14e22f77b3fc",
2157
2157
+
"reference": "e907100ad530babb12c67f4959ae14e22f77b3fc",
2154
2158
"shasum": ""
2155
2159
},
2156
2160
"require": {
···
2219
2223
"type": "website"
2220
2224
}
2221
2225
],
2222
2222
-
"time": "2023-05-20T15:08:42+00:00"
2226
2226
+
"time": "2024-10-02T07:10:53+00:00"
2223
2227
},
2224
2228
{
2225
2229
"name": "flarum/sticky",
2226
2226
-
"version": "v1.8.0",
2230
2230
+
"version": "v1.8.2",
2227
2231
"source": {
2228
2232
"type": "git",
2229
2233
"url": "https://github.com/flarum/sticky.git",
2230
2230
-
"reference": "675900b9f1bc5004432880062d6ce3116c12c4c2"
2234
2234
+
"reference": "a020d8d4619ce788990cf0c94f56424184048caa"
2231
2235
},
2232
2236
"dist": {
2233
2237
"type": "zip",
2234
2234
-
"url": "https://api.github.com/repos/flarum/sticky/zipball/675900b9f1bc5004432880062d6ce3116c12c4c2",
2235
2235
-
"reference": "675900b9f1bc5004432880062d6ce3116c12c4c2",
2238
2238
+
"url": "https://api.github.com/repos/flarum/sticky/zipball/a020d8d4619ce788990cf0c94f56424184048caa",
2239
2239
+
"reference": "a020d8d4619ce788990cf0c94f56424184048caa",
2236
2240
"shasum": ""
2237
2241
},
2238
2242
"require": {
···
2299
2303
"type": "website"
2300
2304
}
2301
2305
],
2302
2302
-
"time": "2023-05-20T15:08:42+00:00"
2306
2306
+
"time": "2024-10-26T22:15:50+00:00"
2303
2307
},
2304
2308
{
2305
2309
"name": "flarum/subscriptions",
2306
2306
-
"version": "v1.8.0",
2310
2310
+
"version": "v1.8.1",
2307
2311
"source": {
2308
2312
"type": "git",
2309
2313
"url": "https://github.com/flarum/subscriptions.git",
2310
2310
-
"reference": "532b7e61a387481055a0c9d5d07f78cd3d4e9bd7"
2314
2314
+
"reference": "594100acf52ad74a33cbd30e5ca2220196790821"
2311
2315
},
2312
2316
"dist": {
2313
2317
"type": "zip",
2314
2314
-
"url": "https://api.github.com/repos/flarum/subscriptions/zipball/532b7e61a387481055a0c9d5d07f78cd3d4e9bd7",
2315
2315
-
"reference": "532b7e61a387481055a0c9d5d07f78cd3d4e9bd7",
2318
2318
+
"url": "https://api.github.com/repos/flarum/subscriptions/zipball/594100acf52ad74a33cbd30e5ca2220196790821",
2319
2319
+
"reference": "594100acf52ad74a33cbd30e5ca2220196790821",
2316
2320
"shasum": ""
2317
2321
},
2318
2322
"require": {
···
2382
2386
"type": "website"
2383
2387
}
2384
2388
],
2385
2385
-
"time": "2023-05-20T15:08:42+00:00"
2389
2389
+
"time": "2024-10-02T07:10:53+00:00"
2386
2390
},
2387
2391
{
2388
2392
"name": "flarum/suspend",
2389
2389
-
"version": "v1.8.1",
2393
2393
+
"version": "v1.8.4",
2390
2394
"source": {
2391
2395
"type": "git",
2392
2396
"url": "https://github.com/flarum/suspend.git",
2393
2393
-
"reference": "0060b7b7737e7b8c8052124d93b511563d2af749"
2397
2397
+
"reference": "8c62430d238f650eeb54323c204b335d9c39f771"
2394
2398
},
2395
2399
"dist": {
2396
2400
"type": "zip",
2397
2397
-
"url": "https://api.github.com/repos/flarum/suspend/zipball/0060b7b7737e7b8c8052124d93b511563d2af749",
2398
2398
-
"reference": "0060b7b7737e7b8c8052124d93b511563d2af749",
2401
2401
+
"url": "https://api.github.com/repos/flarum/suspend/zipball/8c62430d238f650eeb54323c204b335d9c39f771",
2402
2402
+
"reference": "8c62430d238f650eeb54323c204b335d9c39f771",
2399
2403
"shasum": ""
2400
2404
},
2401
2405
"require": {
···
2461
2465
"type": "website"
2462
2466
}
2463
2467
],
2464
2464
-
"time": "2023-09-22T18:38:33+00:00"
2468
2468
+
"time": "2024-11-20T08:51:17+00:00"
2465
2469
},
2466
2470
{
2467
2471
"name": "flarum/tags",
2468
2468
-
"version": "v1.8.0",
2472
2472
+
"version": "v1.8.3",
2469
2473
"source": {
2470
2474
"type": "git",
2471
2475
"url": "https://github.com/flarum/tags.git",
2472
2472
-
"reference": "45cfb339e1ebd9f0204070f7f271c00282d20694"
2476
2476
+
"reference": "1baea940d1504da46805e64575ae336e5da6b43c"
2473
2477
},
2474
2478
"dist": {
2475
2479
"type": "zip",
2476
2476
-
"url": "https://api.github.com/repos/flarum/tags/zipball/45cfb339e1ebd9f0204070f7f271c00282d20694",
2477
2477
-
"reference": "45cfb339e1ebd9f0204070f7f271c00282d20694",
2480
2480
+
"url": "https://api.github.com/repos/flarum/tags/zipball/1baea940d1504da46805e64575ae336e5da6b43c",
2481
2481
+
"reference": "1baea940d1504da46805e64575ae336e5da6b43c",
2478
2482
"shasum": ""
2479
2483
},
2480
2484
"require": {
···
2541
2545
"type": "website"
2542
2546
}
2543
2547
],
2544
2544
-
"time": "2023-05-20T15:08:42+00:00"
2548
2548
+
"time": "2024-11-20T08:51:17+00:00"
2545
2549
},
2546
2550
{
2547
2551
"name": "franzl/whoops-middleware",
···
2589
2593
},
2590
2594
{
2591
2595
"name": "guzzlehttp/guzzle",
2592
2592
-
"version": "7.8.1",
2596
2596
+
"version": "7.9.2",
2593
2597
"source": {
2594
2598
"type": "git",
2595
2599
"url": "https://github.com/guzzle/guzzle.git",
2596
2596
-
"reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
2600
2600
+
"reference": "d281ed313b989f213357e3be1a179f02196ac99b"
2597
2601
},
2598
2602
"dist": {
2599
2603
"type": "zip",
2600
2600
-
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
2601
2601
-
"reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
2604
2604
+
"url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
2605
2605
+
"reference": "d281ed313b989f213357e3be1a179f02196ac99b",
2602
2606
"shasum": ""
2603
2607
},
2604
2608
"require": {
2605
2609
"ext-json": "*",
2606
2606
-
"guzzlehttp/promises": "^1.5.3 || ^2.0.1",
2607
2607
-
"guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
2610
2610
+
"guzzlehttp/promises": "^1.5.3 || ^2.0.3",
2611
2611
+
"guzzlehttp/psr7": "^2.7.0",
2608
2612
"php": "^7.2.5 || ^8.0",
2609
2613
"psr/http-client": "^1.0",
2610
2614
"symfony/deprecation-contracts": "^2.2 || ^3.0"
···
2615
2619
"require-dev": {
2616
2620
"bamarni/composer-bin-plugin": "^1.8.2",
2617
2621
"ext-curl": "*",
2618
2618
-
"php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
2622
2622
+
"guzzle/client-integration-tests": "3.0.2",
2619
2623
"php-http/message-factory": "^1.1",
2620
2620
-
"phpunit/phpunit": "^8.5.36 || ^9.6.15",
2624
2624
+
"phpunit/phpunit": "^8.5.39 || ^9.6.20",
2621
2625
"psr/log": "^1.1 || ^2.0 || ^3.0"
2622
2626
},
2623
2627
"suggest": {
···
2695
2699
],
2696
2700
"support": {
2697
2701
"issues": "https://github.com/guzzle/guzzle/issues",
2698
2698
-
"source": "https://github.com/guzzle/guzzle/tree/7.8.1"
2702
2702
+
"source": "https://github.com/guzzle/guzzle/tree/7.9.2"
2699
2703
},
2700
2704
"funding": [
2701
2705
{
···
2711
2715
"type": "tidelift"
2712
2716
}
2713
2717
],
2714
2714
-
"time": "2023-12-03T20:35:24+00:00"
2718
2718
+
"time": "2024-07-24T11:22:20+00:00"
2715
2719
},
2716
2720
{
2717
2721
"name": "guzzlehttp/promises",
2718
2718
-
"version": "2.0.2",
2722
2722
+
"version": "2.0.4",
2719
2723
"source": {
2720
2724
"type": "git",
2721
2725
"url": "https://github.com/guzzle/promises.git",
2722
2722
-
"reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
2726
2726
+
"reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
2723
2727
},
2724
2728
"dist": {
2725
2729
"type": "zip",
2726
2726
-
"url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
2727
2727
-
"reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
2730
2730
+
"url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
2731
2731
+
"reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
2728
2732
"shasum": ""
2729
2733
},
2730
2734
"require": {
···
2732
2736
},
2733
2737
"require-dev": {
2734
2738
"bamarni/composer-bin-plugin": "^1.8.2",
2735
2735
-
"phpunit/phpunit": "^8.5.36 || ^9.6.15"
2739
2739
+
"phpunit/phpunit": "^8.5.39 || ^9.6.20"
2736
2740
},
2737
2741
"type": "library",
2738
2742
"extra": {
···
2778
2782
],
2779
2783
"support": {
2780
2784
"issues": "https://github.com/guzzle/promises/issues",
2781
2781
-
"source": "https://github.com/guzzle/promises/tree/2.0.2"
2785
2785
+
"source": "https://github.com/guzzle/promises/tree/2.0.4"
2782
2786
},
2783
2787
"funding": [
2784
2788
{
···
2794
2798
"type": "tidelift"
2795
2799
}
2796
2800
],
2797
2797
-
"time": "2023-12-03T20:19:20+00:00"
2801
2801
+
"time": "2024-10-17T10:06:22+00:00"
2798
2802
},
2799
2803
{
2800
2804
"name": "guzzlehttp/psr7",
2801
2801
-
"version": "2.6.2",
2805
2805
+
"version": "2.7.0",
2802
2806
"source": {
2803
2807
"type": "git",
2804
2808
"url": "https://github.com/guzzle/psr7.git",
2805
2805
-
"reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
2809
2809
+
"reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
2806
2810
},
2807
2811
"dist": {
2808
2812
"type": "zip",
2809
2809
-
"url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
2810
2810
-
"reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
2813
2813
+
"url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
2814
2814
+
"reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
2811
2815
"shasum": ""
2812
2816
},
2813
2817
"require": {
···
2822
2826
},
2823
2827
"require-dev": {
2824
2828
"bamarni/composer-bin-plugin": "^1.8.2",
2825
2825
-
"http-interop/http-factory-tests": "^0.9",
2826
2826
-
"phpunit/phpunit": "^8.5.36 || ^9.6.15"
2829
2829
+
"http-interop/http-factory-tests": "0.9.0",
2830
2830
+
"phpunit/phpunit": "^8.5.39 || ^9.6.20"
2827
2831
},
2828
2832
"suggest": {
2829
2833
"laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
···
2894
2898
],
2895
2899
"support": {
2896
2900
"issues": "https://github.com/guzzle/psr7/issues",
2897
2897
-
"source": "https://github.com/guzzle/psr7/tree/2.6.2"
2901
2901
+
"source": "https://github.com/guzzle/psr7/tree/2.7.0"
2898
2902
},
2899
2903
"funding": [
2900
2904
{
···
2910
2914
"type": "tidelift"
2911
2915
}
2912
2916
],
2913
2913
-
"time": "2023-12-03T20:05:35+00:00"
2917
2917
+
"time": "2024-07-18T11:15:46+00:00"
2914
2918
},
2915
2919
{
2916
2920
"name": "illuminate/bus",
···
4060
4064
},
4061
4065
"type": "library",
4062
4066
"extra": {
4063
4063
-
"branch-alias": {
4064
4064
-
"dev-master": "2.4-dev"
4065
4065
-
},
4066
4067
"laravel": {
4067
4067
-
"providers": [
4068
4068
-
"Intervention\\Image\\ImageServiceProvider"
4069
4069
-
],
4070
4068
"aliases": {
4071
4069
"Image": "Intervention\\Image\\Facades\\Image"
4072
4072
-
}
4070
4070
+
},
4071
4071
+
"providers": [
4072
4072
+
"Intervention\\Image\\ImageServiceProvider"
4073
4073
+
]
4074
4074
+
},
4075
4075
+
"branch-alias": {
4076
4076
+
"dev-master": "2.4-dev"
4073
4077
}
4074
4078
},
4075
4079
"autoload": {
···
4116
4120
},
4117
4121
{
4118
4122
"name": "jaybizzle/crawler-detect",
4119
4119
-
"version": "v1.2.118",
4123
4123
+
"version": "v1.3.0",
4120
4124
"source": {
4121
4125
"type": "git",
4122
4126
"url": "https://github.com/JayBizzle/Crawler-Detect.git",
4123
4123
-
"reference": "9b8912ac5b78b780a0ead552b4c3dc9ddfdea4fd"
4127
4127
+
"reference": "be155e11613fa618aa18aee438955588d1092a47"
4124
4128
},
4125
4129
"dist": {
4126
4130
"type": "zip",
4127
4127
-
"url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/9b8912ac5b78b780a0ead552b4c3dc9ddfdea4fd",
4128
4128
-
"reference": "9b8912ac5b78b780a0ead552b4c3dc9ddfdea4fd",
4131
4131
+
"url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/be155e11613fa618aa18aee438955588d1092a47",
4132
4132
+
"reference": "be155e11613fa618aa18aee438955588d1092a47",
4129
4133
"shasum": ""
4130
4134
},
4131
4135
"require": {
4132
4132
-
"php": ">=5.3.0"
4136
4136
+
"php": ">=7.1.0"
4133
4137
},
4134
4138
"require-dev": {
4135
4139
"phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
···
4162
4166
],
4163
4167
"support": {
4164
4168
"issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
4165
4165
-
"source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.2.118"
4169
4169
+
"source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.0"
4166
4170
},
4167
4167
-
"time": "2024-04-23T17:07:05+00:00"
4171
4171
+
"time": "2024-11-25T19:38:36+00:00"
4168
4172
},
4169
4173
{
4170
4174
"name": "jenssegers/agent",
···
4251
4255
},
4252
4256
{
4253
4257
"name": "laminas/laminas-diactoros",
4254
4254
-
"version": "2.26.0",
4258
4258
+
"version": "3.5.0",
4255
4259
"source": {
4256
4260
"type": "git",
4257
4261
"url": "https://github.com/laminas/laminas-diactoros.git",
4258
4258
-
"reference": "6584d44eb8e477e89d453313b858daac6183cddc"
4262
4262
+
"reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
4259
4263
},
4260
4264
"dist": {
4261
4265
"type": "zip",
4262
4262
-
"url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/6584d44eb8e477e89d453313b858daac6183cddc",
4263
4263
-
"reference": "6584d44eb8e477e89d453313b858daac6183cddc",
4266
4266
+
"url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
4267
4267
+
"reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
4264
4268
"shasum": ""
4265
4269
},
4266
4270
"require": {
4267
4267
-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
4268
4268
-
"psr/http-factory": "^1.0",
4269
4269
-
"psr/http-message": "^1.1"
4271
4271
+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
4272
4272
+
"psr/http-factory": "^1.1",
4273
4273
+
"psr/http-message": "^1.1 || ^2.0"
4270
4274
},
4271
4275
"conflict": {
4272
4272
-
"zendframework/zend-diactoros": "*"
4276
4276
+
"amphp/amp": "<2.6.4"
4273
4277
},
4274
4278
"provide": {
4275
4275
-
"psr/http-factory-implementation": "1.0",
4276
4276
-
"psr/http-message-implementation": "1.0"
4279
4279
+
"psr/http-factory-implementation": "^1.0",
4280
4280
+
"psr/http-message-implementation": "^1.1 || ^2.0"
4277
4281
},
4278
4282
"require-dev": {
4279
4283
"ext-curl": "*",
4280
4284
"ext-dom": "*",
4281
4285
"ext-gd": "*",
4282
4286
"ext-libxml": "*",
4283
4283
-
"http-interop/http-factory-tests": "^0.9.0",
4284
4284
-
"laminas/laminas-coding-standard": "^2.5",
4285
4285
-
"php-http/psr7-integration-tests": "^1.2",
4286
4286
-
"phpunit/phpunit": "^9.5.28",
4287
4287
-
"psalm/plugin-phpunit": "^0.18.4",
4288
4288
-
"vimeo/psalm": "^5.6"
4287
4287
+
"http-interop/http-factory-tests": "^2.2.0",
4288
4288
+
"laminas/laminas-coding-standard": "~2.5.0",
4289
4289
+
"php-http/psr7-integration-tests": "^1.4.0",
4290
4290
+
"phpunit/phpunit": "^10.5.36",
4291
4291
+
"psalm/plugin-phpunit": "^0.19.0",
4292
4292
+
"vimeo/psalm": "^5.26.1"
4289
4293
},
4290
4294
"type": "library",
4291
4295
"extra": {
···
4300
4304
"src/functions/marshal_headers_from_sapi.php",
4301
4305
"src/functions/marshal_method_from_sapi.php",
4302
4306
"src/functions/marshal_protocol_version_from_sapi.php",
4303
4303
-
"src/functions/marshal_uri_from_sapi.php",
4304
4307
"src/functions/normalize_server.php",
4305
4308
"src/functions/normalize_uploaded_files.php",
4306
4306
-
"src/functions/parse_cookie_header.php",
4307
4307
-
"src/functions/create_uploaded_file.legacy.php",
4308
4308
-
"src/functions/marshal_headers_from_sapi.legacy.php",
4309
4309
-
"src/functions/marshal_method_from_sapi.legacy.php",
4310
4310
-
"src/functions/marshal_protocol_version_from_sapi.legacy.php",
4311
4311
-
"src/functions/marshal_uri_from_sapi.legacy.php",
4312
4312
-
"src/functions/normalize_server.legacy.php",
4313
4313
-
"src/functions/normalize_uploaded_files.legacy.php",
4314
4314
-
"src/functions/parse_cookie_header.legacy.php"
4309
4309
+
"src/functions/parse_cookie_header.php"
4315
4310
],
4316
4311
"psr-4": {
4317
4312
"Laminas\\Diactoros\\": "src/"
···
4344
4339
"type": "community_bridge"
4345
4340
}
4346
4341
],
4347
4347
-
"time": "2023-10-29T16:17:44+00:00"
4342
4342
+
"time": "2024-10-14T11:59:49+00:00"
4348
4343
},
4349
4344
{
4350
4345
"name": "laminas/laminas-escaper",
4351
4351
-
"version": "2.13.0",
4346
4346
+
"version": "2.14.0",
4352
4347
"source": {
4353
4348
"type": "git",
4354
4349
"url": "https://github.com/laminas/laminas-escaper.git",
4355
4355
-
"reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba"
4350
4350
+
"reference": "0f7cb975f4443cf22f33408925c231225cfba8cb"
4356
4351
},
4357
4352
"dist": {
4358
4353
"type": "zip",
4359
4359
-
"url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/af459883f4018d0f8a0c69c7a209daef3bf973ba",
4360
4360
-
"reference": "af459883f4018d0f8a0c69c7a209daef3bf973ba",
4354
4354
+
"url": "https://api.github.com/repos/laminas/laminas-escaper/zipball/0f7cb975f4443cf22f33408925c231225cfba8cb",
4355
4355
+
"reference": "0f7cb975f4443cf22f33408925c231225cfba8cb",
4361
4356
"shasum": ""
4362
4357
},
4363
4358
"require": {
4364
4359
"ext-ctype": "*",
4365
4360
"ext-mbstring": "*",
4366
4366
-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0"
4361
4361
+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
4367
4362
},
4368
4363
"conflict": {
4369
4364
"zendframework/zend-escaper": "*"
4370
4365
},
4371
4366
"require-dev": {
4372
4372
-
"infection/infection": "^0.27.0",
4373
4373
-
"laminas/laminas-coding-standard": "~2.5.0",
4367
4367
+
"infection/infection": "^0.27.9",
4368
4368
+
"laminas/laminas-coding-standard": "~3.0.0",
4374
4369
"maglnet/composer-require-checker": "^3.8.0",
4375
4375
-
"phpunit/phpunit": "^9.6.7",
4376
4376
-
"psalm/plugin-phpunit": "^0.18.4",
4377
4377
-
"vimeo/psalm": "^5.9"
4370
4370
+
"phpunit/phpunit": "^9.6.16",
4371
4371
+
"psalm/plugin-phpunit": "^0.19.0",
4372
4372
+
"vimeo/psalm": "^5.21.1"
4378
4373
},
4379
4374
"type": "library",
4380
4375
"autoload": {
···
4406
4401
"type": "community_bridge"
4407
4402
}
4408
4403
],
4409
4409
-
"time": "2023-10-10T08:35:13+00:00"
4404
4404
+
"time": "2024-10-24T10:12:53+00:00"
4410
4405
},
4411
4406
{
4412
4407
"name": "laminas/laminas-httphandlerrunner",
4413
4413
-
"version": "2.10.0",
4408
4408
+
"version": "2.11.0",
4414
4409
"source": {
4415
4410
"type": "git",
4416
4411
"url": "https://github.com/laminas/laminas-httphandlerrunner.git",
4417
4417
-
"reference": "35a0ba92e940a2f9533754f5a56187fa321f7693"
4412
4412
+
"reference": "c428d9f67f280d155637cbe2b7245b5188c8cdae"
4418
4413
},
4419
4414
"dist": {
4420
4415
"type": "zip",
4421
4421
-
"url": "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/35a0ba92e940a2f9533754f5a56187fa321f7693",
4422
4422
-
"reference": "35a0ba92e940a2f9533754f5a56187fa321f7693",
4416
4416
+
"url": "https://api.github.com/repos/laminas/laminas-httphandlerrunner/zipball/c428d9f67f280d155637cbe2b7245b5188c8cdae",
4417
4417
+
"reference": "c428d9f67f280d155637cbe2b7245b5188c8cdae",
4423
4418
"shasum": ""
4424
4419
},
4425
4420
"require": {
4426
4426
-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
4421
4421
+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
4427
4422
"psr/http-message": "^1.0 || ^2.0",
4428
4423
"psr/http-message-implementation": "^1.0 || ^2.0",
4429
4424
"psr/http-server-handler": "^1.0"
4430
4425
},
4431
4426
"require-dev": {
4432
4432
-
"laminas/laminas-coding-standard": "~2.5.0",
4433
4433
-
"laminas/laminas-diactoros": "^3.3.0",
4434
4434
-
"phpunit/phpunit": "^10.5.5",
4435
4435
-
"psalm/plugin-phpunit": "^0.18.4",
4436
4436
-
"vimeo/psalm": "^5.18"
4427
4427
+
"laminas/laminas-coding-standard": "~3.0.0",
4428
4428
+
"laminas/laminas-diactoros": "^3.4.0",
4429
4429
+
"phpunit/phpunit": "^10.5.36",
4430
4430
+
"psalm/plugin-phpunit": "^0.19.0",
4431
4431
+
"vimeo/psalm": "^5.26.1"
4437
4432
},
4438
4433
"type": "library",
4439
4434
"extra": {
···
4473
4468
"type": "community_bridge"
4474
4469
}
4475
4470
],
4476
4476
-
"time": "2024-01-04T10:50:34+00:00"
4471
4471
+
"time": "2024-10-17T20:37:17+00:00"
4477
4472
},
4478
4473
{
4479
4474
"name": "laminas/laminas-stratigility",
4480
4480
-
"version": "3.11.0",
4475
4475
+
"version": "4.1.0",
4481
4476
"source": {
4482
4477
"type": "git",
4483
4478
"url": "https://github.com/laminas/laminas-stratigility.git",
4484
4484
-
"reference": "4dee4580a8efea63a8b2b24dbf4604ee480e8cd6"
4479
4479
+
"reference": "79f9302a19ef33d114d85656347b0880933cc210"
4485
4480
},
4486
4481
"dist": {
4487
4482
"type": "zip",
4488
4488
-
"url": "https://api.github.com/repos/laminas/laminas-stratigility/zipball/4dee4580a8efea63a8b2b24dbf4604ee480e8cd6",
4489
4489
-
"reference": "4dee4580a8efea63a8b2b24dbf4604ee480e8cd6",
4483
4483
+
"url": "https://api.github.com/repos/laminas/laminas-stratigility/zipball/79f9302a19ef33d114d85656347b0880933cc210",
4484
4484
+
"reference": "79f9302a19ef33d114d85656347b0880933cc210",
4490
4485
"shasum": ""
4491
4486
},
4492
4487
"require": {
4493
4488
"fig/http-message-util": "^1.1",
4494
4489
"laminas/laminas-escaper": "^2.10.0",
4495
4495
-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
4490
4490
+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
4491
4491
+
"psr/http-factory": "^1.0.2",
4496
4492
"psr/http-message": "^1.0 || ^2.0",
4497
4493
"psr/http-server-middleware": "^1.0.2"
4498
4494
},
···
4500
4496
"zendframework/zend-stratigility": "*"
4501
4497
},
4502
4498
"require-dev": {
4503
4503
-
"laminas/laminas-coding-standard": "~2.5.0",
4504
4504
-
"laminas/laminas-diactoros": "^2.25 || ^3.3",
4505
4505
-
"phpunit/phpunit": "^10.4.2",
4506
4506
-
"psalm/plugin-phpunit": "^0.18.4",
4507
4507
-
"vimeo/psalm": "^5.15.0"
4499
4499
+
"laminas/laminas-coding-standard": "~3.0.0",
4500
4500
+
"laminas/laminas-diactoros": "^2.25 || ^3.5.0",
4501
4501
+
"phpunit/phpunit": "^10.5.37",
4502
4502
+
"psalm/plugin-phpunit": "^0.19.0",
4503
4503
+
"vimeo/psalm": "^5.26.1"
4508
4504
},
4509
4505
"suggest": {
4510
4510
-
"psr/http-message-implementation": "Please install a psr/http-message-implementation to consume Stratigility; e.g., laminas/laminas-diactoros"
4506
4506
+
"psr/http-factory-implementation": "Please install a psr/http-factory implementation to consume Stratigility; e.g., laminas/laminas-diactoros",
4507
4507
+
"psr/http-message-implementation": "Please install a psr/http-message implementation to consume Stratigility; e.g., laminas/laminas-diactoros"
4511
4508
},
4512
4509
"type": "library",
4513
4510
"autoload": {
···
4515
4512
"src/functions/double-pass-middleware.php",
4516
4513
"src/functions/host.php",
4517
4514
"src/functions/middleware.php",
4518
4518
-
"src/functions/path.php",
4519
4519
-
"src/functions/double-pass-middleware.legacy.php",
4520
4520
-
"src/functions/host.legacy.php",
4521
4521
-
"src/functions/middleware.legacy.php",
4522
4522
-
"src/functions/path.legacy.php"
4515
4515
+
"src/functions/path.php"
4523
4516
],
4524
4517
"psr-4": {
4525
4518
"Laminas\\Stratigility\\": "src/"
···
4536
4529
"laminas",
4537
4530
"middleware",
4538
4531
"psr-15",
4532
4532
+
"psr-17",
4539
4533
"psr-7"
4540
4534
],
4541
4535
"support": {
···
4552
4546
"type": "community_bridge"
4553
4547
}
4554
4548
],
4555
4555
-
"time": "2023-10-31T16:26:05+00:00"
4549
4549
+
"time": "2024-10-28T11:43:51+00:00"
4556
4550
},
4557
4551
{
4558
4552
"name": "laravel/serializable-closure",
4559
4559
-
"version": "v1.3.3",
4553
4553
+
"version": "v1.3.7",
4560
4554
"source": {
4561
4555
"type": "git",
4562
4556
"url": "https://github.com/laravel/serializable-closure.git",
4563
4563
-
"reference": "3dbf8a8e914634c48d389c1234552666b3d43754"
4557
4557
+
"reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
4564
4558
},
4565
4559
"dist": {
4566
4560
"type": "zip",
4567
4567
-
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/3dbf8a8e914634c48d389c1234552666b3d43754",
4568
4568
-
"reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
4561
4561
+
"url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
4562
4562
+
"reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
4569
4563
"shasum": ""
4570
4564
},
4571
4565
"require": {
4572
4566
"php": "^7.3|^8.0"
4573
4567
},
4574
4568
"require-dev": {
4575
4575
-
"nesbot/carbon": "^2.61",
4569
4569
+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
4570
4570
+
"nesbot/carbon": "^2.61|^3.0",
4576
4571
"pestphp/pest": "^1.21.3",
4577
4572
"phpstan/phpstan": "^1.8.2",
4578
4578
-
"symfony/var-dumper": "^5.4.11"
4573
4573
+
"symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
4579
4574
},
4580
4575
"type": "library",
4581
4576
"extra": {
···
4612
4607
"issues": "https://github.com/laravel/serializable-closure/issues",
4613
4608
"source": "https://github.com/laravel/serializable-closure"
4614
4609
},
4615
4615
-
"time": "2023-11-08T14:08:06+00:00"
4610
4610
+
"time": "2024-11-14T18:34:49+00:00"
4616
4611
},
4617
4612
{
4618
4613
"name": "league/commonmark",
4619
4619
-
"version": "2.4.2",
4614
4614
+
"version": "2.5.3",
4620
4615
"source": {
4621
4616
"type": "git",
4622
4617
"url": "https://github.com/thephpleague/commonmark.git",
4623
4623
-
"reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf"
4618
4618
+
"reference": "b650144166dfa7703e62a22e493b853b58d874b0"
4624
4619
},
4625
4620
"dist": {
4626
4621
"type": "zip",
4627
4627
-
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/91c24291965bd6d7c46c46a12ba7492f83b1cadf",
4628
4628
-
"reference": "91c24291965bd6d7c46c46a12ba7492f83b1cadf",
4622
4622
+
"url": "https://api.github.com/repos/thephpleague/commonmark/zipball/b650144166dfa7703e62a22e493b853b58d874b0",
4623
4623
+
"reference": "b650144166dfa7703e62a22e493b853b58d874b0",
4629
4624
"shasum": ""
4630
4625
},
4631
4626
"require": {
···
4638
4633
},
4639
4634
"require-dev": {
4640
4635
"cebe/markdown": "^1.0",
4641
4641
-
"commonmark/cmark": "0.30.3",
4642
4642
-
"commonmark/commonmark.js": "0.30.0",
4636
4636
+
"commonmark/cmark": "0.31.1",
4637
4637
+
"commonmark/commonmark.js": "0.31.1",
4643
4638
"composer/package-versions-deprecated": "^1.8",
4644
4639
"embed/embed": "^4.4",
4645
4640
"erusev/parsedown": "^1.0",
···
4661
4656
"type": "library",
4662
4657
"extra": {
4663
4658
"branch-alias": {
4664
4664
-
"dev-main": "2.5-dev"
4659
4659
+
"dev-main": "2.6-dev"
4665
4660
}
4666
4661
},
4667
4662
"autoload": {
···
4718
4713
"type": "tidelift"
4719
4714
}
4720
4715
],
4721
4721
-
"time": "2024-02-02T11:59:32+00:00"
4716
4716
+
"time": "2024-08-16T11:46:16+00:00"
4722
4717
},
4723
4718
{
4724
4719
"name": "league/config",
···
4898
4893
},
4899
4894
{
4900
4895
"name": "league/mime-type-detection",
4901
4901
-
"version": "1.15.0",
4896
4896
+
"version": "1.16.0",
4902
4897
"source": {
4903
4898
"type": "git",
4904
4899
"url": "https://github.com/thephpleague/mime-type-detection.git",
4905
4905
-
"reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
4900
4900
+
"reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
4906
4901
},
4907
4902
"dist": {
4908
4903
"type": "zip",
4909
4909
-
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
4910
4910
-
"reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
4904
4904
+
"url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
4905
4905
+
"reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
4911
4906
"shasum": ""
4912
4907
},
4913
4908
"require": {
···
4938
4933
"description": "Mime-type detection for Flysystem",
4939
4934
"support": {
4940
4935
"issues": "https://github.com/thephpleague/mime-type-detection/issues",
4941
4941
-
"source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
4936
4936
+
"source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
4942
4937
},
4943
4938
"funding": [
4944
4939
{
···
4950
4945
"type": "tidelift"
4951
4946
}
4952
4947
],
4953
4953
-
"time": "2024-01-28T23:22:08+00:00"
4948
4948
+
"time": "2024-09-21T08:32:55+00:00"
4954
4949
},
4955
4950
{
4956
4951
"name": "matthiasmullie/minify",
···
5450
5445
},
5451
5446
{
5452
5447
"name": "nesbot/carbon",
5453
5453
-
"version": "2.72.3",
5448
5448
+
"version": "2.72.5",
5454
5449
"source": {
5455
5450
"type": "git",
5456
5451
"url": "https://github.com/briannesbitt/Carbon.git",
5457
5457
-
"reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83"
5452
5452
+
"reference": "afd46589c216118ecd48ff2b95d77596af1e57ed"
5458
5453
},
5459
5454
"dist": {
5460
5455
"type": "zip",
5461
5461
-
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/0c6fd108360c562f6e4fd1dedb8233b423e91c83",
5462
5462
-
"reference": "0c6fd108360c562f6e4fd1dedb8233b423e91c83",
5456
5456
+
"url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/afd46589c216118ecd48ff2b95d77596af1e57ed",
5457
5457
+
"reference": "afd46589c216118ecd48ff2b95d77596af1e57ed",
5463
5458
"shasum": ""
5464
5459
},
5465
5460
"require": {
···
5493
5488
"type": "library",
5494
5489
"extra": {
5495
5490
"branch-alias": {
5496
5496
-
"dev-3.x": "3.x-dev",
5497
5497
-
"dev-master": "2.x-dev"
5491
5491
+
"dev-master": "3.x-dev",
5492
5492
+
"dev-2.x": "2.x-dev"
5498
5493
},
5499
5494
"laravel": {
5500
5495
"providers": [
···
5553
5548
"type": "tidelift"
5554
5549
}
5555
5550
],
5556
5556
-
"time": "2024-01-25T10:35:09+00:00"
5551
5551
+
"time": "2024-06-03T19:18:41+00:00"
5557
5552
},
5558
5553
{
5559
5554
"name": "nette/schema",
5560
5560
-
"version": "v1.3.0",
5555
5555
+
"version": "v1.3.2",
5561
5556
"source": {
5562
5557
"type": "git",
5563
5558
"url": "https://github.com/nette/schema.git",
5564
5564
-
"reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
5559
5559
+
"reference": "da801d52f0354f70a638673c4a0f04e16529431d"
5565
5560
},
5566
5561
"dist": {
5567
5562
"type": "zip",
5568
5568
-
"url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
5569
5569
-
"reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
5563
5563
+
"url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
5564
5564
+
"reference": "da801d52f0354f70a638673c4a0f04e16529431d",
5570
5565
"shasum": ""
5571
5566
},
5572
5567
"require": {
5573
5568
"nette/utils": "^4.0",
5574
5574
-
"php": "8.1 - 8.3"
5569
5569
+
"php": "8.1 - 8.4"
5575
5570
},
5576
5571
"require-dev": {
5577
5577
-
"nette/tester": "^2.4",
5572
5572
+
"nette/tester": "^2.5.2",
5578
5573
"phpstan/phpstan-nette": "^1.0",
5579
5574
"tracy/tracy": "^2.8"
5580
5575
},
···
5613
5608
],
5614
5609
"support": {
5615
5610
"issues": "https://github.com/nette/schema/issues",
5616
5616
-
"source": "https://github.com/nette/schema/tree/v1.3.0"
5611
5611
+
"source": "https://github.com/nette/schema/tree/v1.3.2"
5617
5612
},
5618
5618
-
"time": "2023-12-11T11:54:22+00:00"
5613
5613
+
"time": "2024-10-06T23:10:23+00:00"
5619
5614
},
5620
5615
{
5621
5616
"name": "nette/utils",
5622
5622
-
"version": "v4.0.4",
5617
5617
+
"version": "v4.0.5",
5623
5618
"source": {
5624
5619
"type": "git",
5625
5620
"url": "https://github.com/nette/utils.git",
5626
5626
-
"reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218"
5621
5621
+
"reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
5627
5622
},
5628
5623
"dist": {
5629
5624
"type": "zip",
5630
5630
-
"url": "https://api.github.com/repos/nette/utils/zipball/d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
5631
5631
-
"reference": "d3ad0aa3b9f934602cb3e3902ebccf10be34d218",
5625
5625
+
"url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
5626
5626
+
"reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
5632
5627
"shasum": ""
5633
5628
},
5634
5629
"require": {
5635
5635
-
"php": ">=8.0 <8.4"
5630
5630
+
"php": "8.0 - 8.4"
5636
5631
},
5637
5632
"conflict": {
5638
5633
"nette/finder": "<3",
···
5699
5694
],
5700
5695
"support": {
5701
5696
"issues": "https://github.com/nette/utils/issues",
5702
5702
-
"source": "https://github.com/nette/utils/tree/v4.0.4"
5697
5697
+
"source": "https://github.com/nette/utils/tree/v4.0.5"
5703
5698
},
5704
5704
-
"time": "2024-01-17T16:50:36+00:00"
5699
5699
+
"time": "2024-08-07T15:39:19+00:00"
5705
5700
},
5706
5701
{
5707
5702
"name": "nikic/fast-route",
···
7120
7115
},
7121
7116
{
7122
7117
"name": "symfony/config",
7123
7123
-
"version": "v5.4.39",
7118
7118
+
"version": "v5.4.46",
7124
7119
"source": {
7125
7120
"type": "git",
7126
7121
"url": "https://github.com/symfony/config.git",
7127
7127
-
"reference": "62cec4a067931552624a9962002c210c502d42fd"
7122
7122
+
"reference": "977c88a02d7d3f16904a81907531b19666a08e78"
7128
7123
},
7129
7124
"dist": {
7130
7125
"type": "zip",
7131
7131
-
"url": "https://api.github.com/repos/symfony/config/zipball/62cec4a067931552624a9962002c210c502d42fd",
7132
7132
-
"reference": "62cec4a067931552624a9962002c210c502d42fd",
7126
7126
+
"url": "https://api.github.com/repos/symfony/config/zipball/977c88a02d7d3f16904a81907531b19666a08e78",
7127
7127
+
"reference": "977c88a02d7d3f16904a81907531b19666a08e78",
7133
7128
"shasum": ""
7134
7129
},
7135
7130
"require": {
···
7179
7174
"description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
7180
7175
"homepage": "https://symfony.com",
7181
7176
"support": {
7182
7182
-
"source": "https://github.com/symfony/config/tree/v5.4.39"
7177
7177
+
"source": "https://github.com/symfony/config/tree/v5.4.46"
7183
7178
},
7184
7179
"funding": [
7185
7180
{
···
7195
7190
"type": "tidelift"
7196
7191
}
7197
7192
],
7198
7198
-
"time": "2024-04-18T08:26:06+00:00"
7193
7193
+
"time": "2024-10-30T07:58:02+00:00"
7199
7194
},
7200
7195
{
7201
7196
"name": "symfony/console",
7202
7202
-
"version": "v5.4.39",
7197
7197
+
"version": "v5.4.47",
7203
7198
"source": {
7204
7199
"type": "git",
7205
7200
"url": "https://github.com/symfony/console.git",
7206
7206
-
"reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1"
7201
7201
+
"reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed"
7207
7202
},
7208
7203
"dist": {
7209
7204
"type": "zip",
7210
7210
-
"url": "https://api.github.com/repos/symfony/console/zipball/f3e591c48688a0cfa1a3296205926c05e84b22b1",
7211
7211
-
"reference": "f3e591c48688a0cfa1a3296205926c05e84b22b1",
7205
7205
+
"url": "https://api.github.com/repos/symfony/console/zipball/c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
7206
7206
+
"reference": "c4ba980ca61a9eb18ee6bcc73f28e475852bb1ed",
7212
7207
"shasum": ""
7213
7208
},
7214
7209
"require": {
···
7278
7273
"terminal"
7279
7274
],
7280
7275
"support": {
7281
7281
-
"source": "https://github.com/symfony/console/tree/v5.4.39"
7276
7276
+
"source": "https://github.com/symfony/console/tree/v5.4.47"
7282
7277
},
7283
7278
"funding": [
7284
7279
{
···
7294
7289
"type": "tidelift"
7295
7290
}
7296
7291
],
7297
7297
-
"time": "2024-04-18T08:26:06+00:00"
7292
7292
+
"time": "2024-11-06T11:30:55+00:00"
7298
7293
},
7299
7294
{
7300
7295
"name": "symfony/css-selector",
7301
7301
-
"version": "v6.4.7",
7296
7296
+
"version": "v7.1.6",
7302
7297
"source": {
7303
7298
"type": "git",
7304
7299
"url": "https://github.com/symfony/css-selector.git",
7305
7305
-
"reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b"
7300
7300
+
"reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66"
7306
7301
},
7307
7302
"dist": {
7308
7303
"type": "zip",
7309
7309
-
"url": "https://api.github.com/repos/symfony/css-selector/zipball/1c5d5c2103c3762aff27a27e1e2409e30a79083b",
7310
7310
-
"reference": "1c5d5c2103c3762aff27a27e1e2409e30a79083b",
7304
7304
+
"url": "https://api.github.com/repos/symfony/css-selector/zipball/4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
7305
7305
+
"reference": "4aa4f6b3d6749c14d3aa815eef8226632e7bbc66",
7311
7306
"shasum": ""
7312
7307
},
7313
7308
"require": {
7314
7314
-
"php": ">=8.1"
7309
7309
+
"php": ">=8.2"
7315
7310
},
7316
7311
"type": "library",
7317
7312
"autoload": {
···
7343
7338
"description": "Converts CSS selectors to XPath expressions",
7344
7339
"homepage": "https://symfony.com",
7345
7340
"support": {
7346
7346
-
"source": "https://github.com/symfony/css-selector/tree/v6.4.7"
7341
7341
+
"source": "https://github.com/symfony/css-selector/tree/v7.1.6"
7347
7342
},
7348
7343
"funding": [
7349
7344
{
···
7359
7354
"type": "tidelift"
7360
7355
}
7361
7356
],
7362
7362
-
"time": "2024-04-18T09:22:46+00:00"
7357
7357
+
"time": "2024-09-25T14:20:29+00:00"
7363
7358
},
7364
7359
{
7365
7360
"name": "symfony/deprecation-contracts",
7366
7366
-
"version": "v3.5.0",
7361
7361
+
"version": "v3.5.1",
7367
7362
"source": {
7368
7363
"type": "git",
7369
7364
"url": "https://github.com/symfony/deprecation-contracts.git",
7370
7370
-
"reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
7365
7365
+
"reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
7371
7366
},
7372
7367
"dist": {
7373
7368
"type": "zip",
7374
7374
-
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
7375
7375
-
"reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
7369
7369
+
"url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
7370
7370
+
"reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
7376
7371
"shasum": ""
7377
7372
},
7378
7373
"require": {
···
7410
7405
"description": "A generic function and convention to trigger deprecation notices",
7411
7406
"homepage": "https://symfony.com",
7412
7407
"support": {
7413
7413
-
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
7408
7408
+
"source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
7414
7409
},
7415
7410
"funding": [
7416
7411
{
···
7426
7421
"type": "tidelift"
7427
7422
}
7428
7423
],
7429
7429
-
"time": "2024-04-18T09:32:20+00:00"
7424
7424
+
"time": "2024-09-25T14:20:29+00:00"
7430
7425
},
7431
7426
{
7432
7427
"name": "symfony/event-dispatcher",
7433
7433
-
"version": "v5.4.39",
7428
7428
+
"version": "v5.4.45",
7434
7429
"source": {
7435
7430
"type": "git",
7436
7431
"url": "https://github.com/symfony/event-dispatcher.git",
7437
7437
-
"reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f"
7432
7432
+
"reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9"
7438
7433
},
7439
7434
"dist": {
7440
7435
"type": "zip",
7441
7441
-
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d40fae9fd85c762b6ba378152fdd1157a85d7e4f",
7442
7442
-
"reference": "d40fae9fd85c762b6ba378152fdd1157a85d7e4f",
7436
7436
+
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9",
7437
7437
+
"reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9",
7443
7438
"shasum": ""
7444
7439
},
7445
7440
"require": {
···
7495
7490
"description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
7496
7491
"homepage": "https://symfony.com",
7497
7492
"support": {
7498
7498
-
"source": "https://github.com/symfony/event-dispatcher/tree/v5.4.39"
7493
7493
+
"source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45"
7499
7494
},
7500
7495
"funding": [
7501
7496
{
···
7511
7506
"type": "tidelift"
7512
7507
}
7513
7508
],
7514
7514
-
"time": "2024-04-18T08:26:06+00:00"
7509
7509
+
"time": "2024-09-25T14:11:13+00:00"
7515
7510
},
7516
7511
{
7517
7512
"name": "symfony/event-dispatcher-contracts",
7518
7518
-
"version": "v3.5.0",
7513
7513
+
"version": "v3.5.1",
7519
7514
"source": {
7520
7515
"type": "git",
7521
7516
"url": "https://github.com/symfony/event-dispatcher-contracts.git",
7522
7522
-
"reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
7517
7517
+
"reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
7523
7518
},
7524
7519
"dist": {
7525
7520
"type": "zip",
7526
7526
-
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
7527
7527
-
"reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
7521
7521
+
"url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
7522
7522
+
"reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
7528
7523
"shasum": ""
7529
7524
},
7530
7525
"require": {
···
7571
7566
"standards"
7572
7567
],
7573
7568
"support": {
7574
7574
-
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
7569
7569
+
"source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
7575
7570
},
7576
7571
"funding": [
7577
7572
{
···
7587
7582
"type": "tidelift"
7588
7583
}
7589
7584
],
7590
7590
-
"time": "2024-04-18T09:32:20+00:00"
7585
7585
+
"time": "2024-09-25T14:20:29+00:00"
7591
7586
},
7592
7587
{
7593
7588
"name": "symfony/filesystem",
7594
7594
-
"version": "v6.4.7",
7589
7589
+
"version": "v6.4.13",
7595
7590
"source": {
7596
7591
"type": "git",
7597
7592
"url": "https://github.com/symfony/filesystem.git",
7598
7598
-
"reference": "78dde75f8f6dbbca4ec436a4b0087f7af02076d4"
7593
7593
+
"reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
7599
7594
},
7600
7595
"dist": {
7601
7596
"type": "zip",
7602
7602
-
"url": "https://api.github.com/repos/symfony/filesystem/zipball/78dde75f8f6dbbca4ec436a4b0087f7af02076d4",
7603
7603
-
"reference": "78dde75f8f6dbbca4ec436a4b0087f7af02076d4",
7597
7597
+
"url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
7598
7598
+
"reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
7604
7599
"shasum": ""
7605
7600
},
7606
7601
"require": {
7607
7602
"php": ">=8.1",
7608
7603
"symfony/polyfill-ctype": "~1.8",
7609
7609
-
"symfony/polyfill-mbstring": "~1.8",
7610
7610
-
"symfony/process": "^5.4|^6.4"
7604
7604
+
"symfony/polyfill-mbstring": "~1.8"
7605
7605
+
},
7606
7606
+
"require-dev": {
7607
7607
+
"symfony/process": "^5.4|^6.4|^7.0"
7611
7608
},
7612
7609
"type": "library",
7613
7610
"autoload": {
···
7635
7632
"description": "Provides basic utilities for the filesystem",
7636
7633
"homepage": "https://symfony.com",
7637
7634
"support": {
7638
7638
-
"source": "https://github.com/symfony/filesystem/tree/v6.4.7"
7635
7635
+
"source": "https://github.com/symfony/filesystem/tree/v6.4.13"
7639
7636
},
7640
7637
"funding": [
7641
7638
{
···
7651
7648
"type": "tidelift"
7652
7649
}
7653
7650
],
7654
7654
-
"time": "2024-04-18T09:22:46+00:00"
7651
7651
+
"time": "2024-10-25T15:07:50+00:00"
7655
7652
},
7656
7653
{
7657
7654
"name": "symfony/finder",
7658
7658
-
"version": "v5.4.39",
7655
7655
+
"version": "v5.4.45",
7659
7656
"source": {
7660
7657
"type": "git",
7661
7658
"url": "https://github.com/symfony/finder.git",
7662
7662
-
"reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a"
7659
7659
+
"reference": "63741784cd7b9967975eec610b256eed3ede022b"
7663
7660
},
7664
7661
"dist": {
7665
7662
"type": "zip",
7666
7666
-
"url": "https://api.github.com/repos/symfony/finder/zipball/f6a96e4fcd468a25fede16ee665f50ced856bd0a",
7667
7667
-
"reference": "f6a96e4fcd468a25fede16ee665f50ced856bd0a",
7663
7663
+
"url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
7664
7664
+
"reference": "63741784cd7b9967975eec610b256eed3ede022b",
7668
7665
"shasum": ""
7669
7666
},
7670
7667
"require": {
···
7698
7695
"description": "Finds files and directories via an intuitive fluent interface",
7699
7696
"homepage": "https://symfony.com",
7700
7697
"support": {
7701
7701
-
"source": "https://github.com/symfony/finder/tree/v5.4.39"
7698
7698
+
"source": "https://github.com/symfony/finder/tree/v5.4.45"
7702
7699
},
7703
7700
"funding": [
7704
7701
{
···
7714
7711
"type": "tidelift"
7715
7712
}
7716
7713
],
7717
7717
-
"time": "2024-04-18T08:26:06+00:00"
7714
7714
+
"time": "2024-09-28T13:32:08+00:00"
7718
7715
},
7719
7716
{
7720
7717
"name": "symfony/http-foundation",
7721
7721
-
"version": "v5.4.39",
7718
7718
+
"version": "v5.4.48",
7722
7719
"source": {
7723
7720
"type": "git",
7724
7721
"url": "https://github.com/symfony/http-foundation.git",
7725
7725
-
"reference": "3356c93efc30b0c85a37606bdfef16b813faec0e"
7722
7722
+
"reference": "3f38b8af283b830e1363acd79e5bc3412d055341"
7726
7723
},
7727
7724
"dist": {
7728
7725
"type": "zip",
7729
7729
-
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/3356c93efc30b0c85a37606bdfef16b813faec0e",
7730
7730
-
"reference": "3356c93efc30b0c85a37606bdfef16b813faec0e",
7726
7726
+
"url": "https://api.github.com/repos/symfony/http-foundation/zipball/3f38b8af283b830e1363acd79e5bc3412d055341",
7727
7727
+
"reference": "3f38b8af283b830e1363acd79e5bc3412d055341",
7731
7728
"shasum": ""
7732
7729
},
7733
7730
"require": {
···
7737
7734
"symfony/polyfill-php80": "^1.16"
7738
7735
},
7739
7736
"require-dev": {
7740
7740
-
"predis/predis": "~1.0",
7737
7737
+
"predis/predis": "^1.0|^2.0",
7741
7738
"symfony/cache": "^4.4|^5.0|^6.0",
7742
7739
"symfony/dependency-injection": "^5.4|^6.0",
7743
7740
"symfony/expression-language": "^4.4|^5.0|^6.0",
···
7774
7771
"description": "Defines an object-oriented layer for the HTTP specification",
7775
7772
"homepage": "https://symfony.com",
7776
7773
"support": {
7777
7777
-
"source": "https://github.com/symfony/http-foundation/tree/v5.4.39"
7774
7774
+
"source": "https://github.com/symfony/http-foundation/tree/v5.4.48"
7778
7775
},
7779
7776
"funding": [
7780
7777
{
···
7790
7787
"type": "tidelift"
7791
7788
}
7792
7789
],
7793
7793
-
"time": "2024-04-18T08:26:06+00:00"
7790
7790
+
"time": "2024-11-13T18:58:02+00:00"
7794
7791
},
7795
7792
{
7796
7793
"name": "symfony/mime",
7797
7797
-
"version": "v5.4.39",
7794
7794
+
"version": "v5.4.45",
7798
7795
"source": {
7799
7796
"type": "git",
7800
7797
"url": "https://github.com/symfony/mime.git",
7801
7801
-
"reference": "a5364f016fd9e090f7b4f250a97ea6925a5ca985"
7798
7798
+
"reference": "8c1b9b3e5b52981551fc6044539af1d974e39064"
7802
7799
},
7803
7800
"dist": {
7804
7801
"type": "zip",
7805
7805
-
"url": "https://api.github.com/repos/symfony/mime/zipball/a5364f016fd9e090f7b4f250a97ea6925a5ca985",
7806
7806
-
"reference": "a5364f016fd9e090f7b4f250a97ea6925a5ca985",
7802
7802
+
"url": "https://api.github.com/repos/symfony/mime/zipball/8c1b9b3e5b52981551fc6044539af1d974e39064",
7803
7803
+
"reference": "8c1b9b3e5b52981551fc6044539af1d974e39064",
7807
7804
"shasum": ""
7808
7805
},
7809
7806
"require": {
···
7859
7856
"mime-type"
7860
7857
],
7861
7858
"support": {
7862
7862
-
"source": "https://github.com/symfony/mime/tree/v5.4.39"
7859
7859
+
"source": "https://github.com/symfony/mime/tree/v5.4.45"
7863
7860
},
7864
7861
"funding": [
7865
7862
{
···
7875
7872
"type": "tidelift"
7876
7873
}
7877
7874
],
7878
7878
-
"time": "2024-04-18T08:26:06+00:00"
7875
7875
+
"time": "2024-10-23T20:18:32+00:00"
7879
7876
},
7880
7877
{
7881
7878
"name": "symfony/polyfill-ctype",
7882
7882
-
"version": "v1.29.0",
7879
7879
+
"version": "v1.31.0",
7883
7880
"source": {
7884
7881
"type": "git",
7885
7882
"url": "https://github.com/symfony/polyfill-ctype.git",
7886
7886
-
"reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
7883
7883
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
7887
7884
},
7888
7885
"dist": {
7889
7886
"type": "zip",
7890
7890
-
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
7891
7891
-
"reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
7887
7887
+
"url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
7888
7888
+
"reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
7892
7889
"shasum": ""
7893
7890
},
7894
7891
"require": {
7895
7895
-
"php": ">=7.1"
7892
7892
+
"php": ">=7.2"
7896
7893
},
7897
7894
"provide": {
7898
7895
"ext-ctype": "*"
···
7938
7935
"portable"
7939
7936
],
7940
7937
"support": {
7941
7941
-
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
7938
7938
+
"source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
7942
7939
},
7943
7940
"funding": [
7944
7941
{
···
7954
7951
"type": "tidelift"
7955
7952
}
7956
7953
],
7957
7957
-
"time": "2024-01-29T20:11:03+00:00"
7954
7954
+
"time": "2024-09-09T11:45:10+00:00"
7958
7955
},
7959
7956
{
7960
7957
"name": "symfony/polyfill-iconv",
7961
7961
-
"version": "v1.29.0",
7958
7958
+
"version": "v1.31.0",
7962
7959
"source": {
7963
7960
"type": "git",
7964
7961
"url": "https://github.com/symfony/polyfill-iconv.git",
7965
7965
-
"reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
7962
7962
+
"reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
7966
7963
},
7967
7964
"dist": {
7968
7965
"type": "zip",
7969
7969
-
"url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
7970
7970
-
"reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
7966
7966
+
"url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
7967
7967
+
"reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
7971
7968
"shasum": ""
7972
7969
},
7973
7970
"require": {
7974
7974
-
"php": ">=7.1"
7971
7971
+
"php": ">=7.2"
7975
7972
},
7976
7973
"provide": {
7977
7974
"ext-iconv": "*"
···
8018
8015
"shim"
8019
8016
],
8020
8017
"support": {
8021
8021
-
"source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
8018
8018
+
"source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
8022
8019
},
8023
8020
"funding": [
8024
8021
{
···
8034
8031
"type": "tidelift"
8035
8032
}
8036
8033
],
8037
8037
-
"time": "2024-01-29T20:11:03+00:00"
8034
8034
+
"time": "2024-09-09T11:45:10+00:00"
8038
8035
},
8039
8036
{
8040
8037
"name": "symfony/polyfill-intl-grapheme",
8041
8041
-
"version": "v1.29.0",
8038
8038
+
"version": "v1.31.0",
8042
8039
"source": {
8043
8040
"type": "git",
8044
8041
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
8045
8045
-
"reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
8042
8042
+
"reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
8046
8043
},
8047
8044
"dist": {
8048
8045
"type": "zip",
8049
8049
-
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
8050
8050
-
"reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
8046
8046
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
8047
8047
+
"reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
8051
8048
"shasum": ""
8052
8049
},
8053
8050
"require": {
8054
8054
-
"php": ">=7.1"
8051
8051
+
"php": ">=7.2"
8055
8052
},
8056
8053
"suggest": {
8057
8054
"ext-intl": "For best performance"
···
8096
8093
"shim"
8097
8094
],
8098
8095
"support": {
8099
8099
-
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
8096
8096
+
"source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
8100
8097
},
8101
8098
"funding": [
8102
8099
{
···
8112
8109
"type": "tidelift"
8113
8110
}
8114
8111
],
8115
8115
-
"time": "2024-01-29T20:11:03+00:00"
8112
8112
+
"time": "2024-09-09T11:45:10+00:00"
8116
8113
},
8117
8114
{
8118
8115
"name": "symfony/polyfill-intl-idn",
8119
8119
-
"version": "v1.29.0",
8116
8116
+
"version": "v1.31.0",
8120
8117
"source": {
8121
8118
"type": "git",
8122
8119
"url": "https://github.com/symfony/polyfill-intl-idn.git",
8123
8123
-
"reference": "a287ed7475f85bf6f61890146edbc932c0fff919"
8120
8120
+
"reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
8124
8121
},
8125
8122
"dist": {
8126
8123
"type": "zip",
8127
8127
-
"url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a287ed7475f85bf6f61890146edbc932c0fff919",
8128
8128
-
"reference": "a287ed7475f85bf6f61890146edbc932c0fff919",
8124
8124
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
8125
8125
+
"reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
8129
8126
"shasum": ""
8130
8127
},
8131
8128
"require": {
8132
8132
-
"php": ">=7.1",
8133
8133
-
"symfony/polyfill-intl-normalizer": "^1.10",
8134
8134
-
"symfony/polyfill-php72": "^1.10"
8129
8129
+
"php": ">=7.2",
8130
8130
+
"symfony/polyfill-intl-normalizer": "^1.10"
8135
8131
},
8136
8132
"suggest": {
8137
8133
"ext-intl": "For best performance"
···
8180
8176
"shim"
8181
8177
],
8182
8178
"support": {
8183
8183
-
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.29.0"
8179
8179
+
"source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
8184
8180
},
8185
8181
"funding": [
8186
8182
{
···
8196
8192
"type": "tidelift"
8197
8193
}
8198
8194
],
8199
8199
-
"time": "2024-01-29T20:11:03+00:00"
8195
8195
+
"time": "2024-09-09T11:45:10+00:00"
8200
8196
},
8201
8197
{
8202
8198
"name": "symfony/polyfill-intl-messageformatter",
8203
8203
-
"version": "v1.29.0",
8199
8199
+
"version": "v1.31.0",
8204
8200
"source": {
8205
8201
"type": "git",
8206
8202
"url": "https://github.com/symfony/polyfill-intl-messageformatter.git",
8207
8207
-
"reference": "6603d1d7cb7fb3df80c23ecf6ea6977f8a02be3f"
8203
8203
+
"reference": "d2ed9f44f1ccb21d36e51ebb1f7b1ef26e36e0de"
8208
8204
},
8209
8205
"dist": {
8210
8206
"type": "zip",
8211
8211
-
"url": "https://api.github.com/repos/symfony/polyfill-intl-messageformatter/zipball/6603d1d7cb7fb3df80c23ecf6ea6977f8a02be3f",
8212
8212
-
"reference": "6603d1d7cb7fb3df80c23ecf6ea6977f8a02be3f",
8207
8207
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-messageformatter/zipball/d2ed9f44f1ccb21d36e51ebb1f7b1ef26e36e0de",
8208
8208
+
"reference": "d2ed9f44f1ccb21d36e51ebb1f7b1ef26e36e0de",
8213
8209
"shasum": ""
8214
8210
},
8215
8211
"require": {
8216
8216
-
"php": ">=7.1"
8212
8212
+
"php": ">=7.2"
8217
8213
},
8218
8214
"suggest": {
8219
8215
"ext-intl": "For best performance"
···
8261
8257
"shim"
8262
8258
],
8263
8259
"support": {
8264
8264
-
"source": "https://github.com/symfony/polyfill-intl-messageformatter/tree/v1.29.0"
8260
8260
+
"source": "https://github.com/symfony/polyfill-intl-messageformatter/tree/v1.31.0"
8265
8261
},
8266
8262
"funding": [
8267
8263
{
···
8277
8273
"type": "tidelift"
8278
8274
}
8279
8275
],
8280
8280
-
"time": "2024-01-29T20:11:03+00:00"
8276
8276
+
"time": "2024-09-09T11:45:10+00:00"
8281
8277
},
8282
8278
{
8283
8279
"name": "symfony/polyfill-intl-normalizer",
8284
8284
-
"version": "v1.29.0",
8280
8280
+
"version": "v1.31.0",
8285
8281
"source": {
8286
8282
"type": "git",
8287
8283
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
8288
8288
-
"reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
8284
8284
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c"
8289
8285
},
8290
8286
"dist": {
8291
8287
"type": "zip",
8292
8292
-
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
8293
8293
-
"reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
8288
8288
+
"url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
8289
8289
+
"reference": "3833d7255cc303546435cb650316bff708a1c75c",
8294
8290
"shasum": ""
8295
8291
},
8296
8292
"require": {
8297
8297
-
"php": ">=7.1"
8293
8293
+
"php": ">=7.2"
8298
8294
},
8299
8295
"suggest": {
8300
8296
"ext-intl": "For best performance"
···
8342
8338
"shim"
8343
8339
],
8344
8340
"support": {
8345
8345
-
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
8341
8341
+
"source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
8346
8342
},
8347
8343
"funding": [
8348
8344
{
···
8358
8354
"type": "tidelift"
8359
8355
}
8360
8356
],
8361
8361
-
"time": "2024-01-29T20:11:03+00:00"
8357
8357
+
"time": "2024-09-09T11:45:10+00:00"
8362
8358
},
8363
8359
{
8364
8360
"name": "symfony/polyfill-mbstring",
8365
8365
-
"version": "v1.29.0",
8361
8361
+
"version": "v1.31.0",
8366
8362
"source": {
8367
8363
"type": "git",
8368
8364
"url": "https://github.com/symfony/polyfill-mbstring.git",
8369
8369
-
"reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
8365
8365
+
"reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
8370
8366
},
8371
8367
"dist": {
8372
8368
"type": "zip",
8373
8373
-
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
8374
8374
-
"reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
8369
8369
+
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
8370
8370
+
"reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
8375
8371
"shasum": ""
8376
8372
},
8377
8373
"require": {
8378
8378
-
"php": ">=7.1"
8374
8374
+
"php": ">=7.2"
8379
8375
},
8380
8376
"provide": {
8381
8377
"ext-mbstring": "*"
···
8422
8418
"shim"
8423
8419
],
8424
8420
"support": {
8425
8425
-
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
8421
8421
+
"source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
8426
8422
},
8427
8423
"funding": [
8428
8424
{
···
8438
8434
"type": "tidelift"
8439
8435
}
8440
8436
],
8441
8441
-
"time": "2024-01-29T20:11:03+00:00"
8442
8442
-
},
8443
8443
-
{
8444
8444
-
"name": "symfony/polyfill-php72",
8445
8445
-
"version": "v1.29.0",
8446
8446
-
"source": {
8447
8447
-
"type": "git",
8448
8448
-
"url": "https://github.com/symfony/polyfill-php72.git",
8449
8449
-
"reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
8450
8450
-
},
8451
8451
-
"dist": {
8452
8452
-
"type": "zip",
8453
8453
-
"url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
8454
8454
-
"reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
8455
8455
-
"shasum": ""
8456
8456
-
},
8457
8457
-
"require": {
8458
8458
-
"php": ">=7.1"
8459
8459
-
},
8460
8460
-
"type": "library",
8461
8461
-
"extra": {
8462
8462
-
"thanks": {
8463
8463
-
"name": "symfony/polyfill",
8464
8464
-
"url": "https://github.com/symfony/polyfill"
8465
8465
-
}
8466
8466
-
},
8467
8467
-
"autoload": {
8468
8468
-
"files": [
8469
8469
-
"bootstrap.php"
8470
8470
-
],
8471
8471
-
"psr-4": {
8472
8472
-
"Symfony\\Polyfill\\Php72\\": ""
8473
8473
-
}
8474
8474
-
},
8475
8475
-
"notification-url": "https://packagist.org/downloads/",
8476
8476
-
"license": [
8477
8477
-
"MIT"
8478
8478
-
],
8479
8479
-
"authors": [
8480
8480
-
{
8481
8481
-
"name": "Nicolas Grekas",
8482
8482
-
"email": "p@tchwork.com"
8483
8483
-
},
8484
8484
-
{
8485
8485
-
"name": "Symfony Community",
8486
8486
-
"homepage": "https://symfony.com/contributors"
8487
8487
-
}
8488
8488
-
],
8489
8489
-
"description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
8490
8490
-
"homepage": "https://symfony.com",
8491
8491
-
"keywords": [
8492
8492
-
"compatibility",
8493
8493
-
"polyfill",
8494
8494
-
"portable",
8495
8495
-
"shim"
8496
8496
-
],
8497
8497
-
"support": {
8498
8498
-
"source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
8499
8499
-
},
8500
8500
-
"funding": [
8501
8501
-
{
8502
8502
-
"url": "https://symfony.com/sponsor",
8503
8503
-
"type": "custom"
8504
8504
-
},
8505
8505
-
{
8506
8506
-
"url": "https://github.com/fabpot",
8507
8507
-
"type": "github"
8508
8508
-
},
8509
8509
-
{
8510
8510
-
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
8511
8511
-
"type": "tidelift"
8512
8512
-
}
8513
8513
-
],
8514
8514
-
"time": "2024-01-29T20:11:03+00:00"
8437
8437
+
"time": "2024-09-09T11:45:10+00:00"
8515
8438
},
8516
8439
{
8517
8440
"name": "symfony/polyfill-php73",
8518
8518
-
"version": "v1.29.0",
8441
8441
+
"version": "v1.31.0",
8519
8442
"source": {
8520
8443
"type": "git",
8521
8444
"url": "https://github.com/symfony/polyfill-php73.git",
8522
8522
-
"reference": "21bd091060673a1177ae842c0ef8fe30893114d2"
8445
8445
+
"reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
8523
8446
},
8524
8447
"dist": {
8525
8448
"type": "zip",
8526
8526
-
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/21bd091060673a1177ae842c0ef8fe30893114d2",
8527
8527
-
"reference": "21bd091060673a1177ae842c0ef8fe30893114d2",
8449
8449
+
"url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
8450
8450
+
"reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
8528
8451
"shasum": ""
8529
8452
},
8530
8453
"require": {
8531
8531
-
"php": ">=7.1"
8454
8454
+
"php": ">=7.2"
8532
8455
},
8533
8456
"type": "library",
8534
8457
"extra": {
···
8571
8494
"shim"
8572
8495
],
8573
8496
"support": {
8574
8574
-
"source": "https://github.com/symfony/polyfill-php73/tree/v1.29.0"
8497
8497
+
"source": "https://github.com/symfony/polyfill-php73/tree/v1.31.0"
8575
8498
},
8576
8499
"funding": [
8577
8500
{
···
8587
8510
"type": "tidelift"
8588
8511
}
8589
8512
],
8590
8590
-
"time": "2024-01-29T20:11:03+00:00"
8513
8513
+
"time": "2024-09-09T11:45:10+00:00"
8591
8514
},
8592
8515
{
8593
8516
"name": "symfony/polyfill-php80",
8594
8594
-
"version": "v1.29.0",
8517
8517
+
"version": "v1.31.0",
8595
8518
"source": {
8596
8519
"type": "git",
8597
8520
"url": "https://github.com/symfony/polyfill-php80.git",
8598
8598
-
"reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
8521
8521
+
"reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
8599
8522
},
8600
8523
"dist": {
8601
8524
"type": "zip",
8602
8602
-
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
8603
8603
-
"reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
8525
8525
+
"url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
8526
8526
+
"reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
8604
8527
"shasum": ""
8605
8528
},
8606
8529
"require": {
8607
8607
-
"php": ">=7.1"
8530
8530
+
"php": ">=7.2"
8608
8531
},
8609
8532
"type": "library",
8610
8533
"extra": {
···
8651
8574
"shim"
8652
8575
],
8653
8576
"support": {
8654
8654
-
"source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
8577
8577
+
"source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
8655
8578
},
8656
8579
"funding": [
8657
8580
{
···
8667
8590
"type": "tidelift"
8668
8591
}
8669
8592
],
8670
8670
-
"time": "2024-01-29T20:11:03+00:00"
8593
8593
+
"time": "2024-09-09T11:45:10+00:00"
8671
8594
},
8672
8595
{
8673
8596
"name": "symfony/polyfill-php81",
8674
8674
-
"version": "v1.29.0",
8597
8597
+
"version": "v1.31.0",
8675
8598
"source": {
8676
8599
"type": "git",
8677
8600
"url": "https://github.com/symfony/polyfill-php81.git",
8678
8678
-
"reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
8601
8601
+
"reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
8679
8602
},
8680
8603
"dist": {
8681
8604
"type": "zip",
8682
8682
-
"url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
8683
8683
-
"reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
8605
8605
+
"url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
8606
8606
+
"reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
8684
8607
"shasum": ""
8685
8608
},
8686
8609
"require": {
8687
8687
-
"php": ">=7.1"
8610
8610
+
"php": ">=7.2"
8688
8611
},
8689
8612
"type": "library",
8690
8613
"extra": {
···
8727
8650
"shim"
8728
8651
],
8729
8652
"support": {
8730
8730
-
"source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
8653
8653
+
"source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
8731
8654
},
8732
8655
"funding": [
8733
8656
{
···
8743
8666
"type": "tidelift"
8744
8667
}
8745
8668
],
8746
8746
-
"time": "2024-01-29T20:11:03+00:00"
8669
8669
+
"time": "2024-09-09T11:45:10+00:00"
8747
8670
},
8748
8671
{
8749
8672
"name": "symfony/process",
8750
8750
-
"version": "v5.4.39",
8673
8673
+
"version": "v5.4.47",
8751
8674
"source": {
8752
8675
"type": "git",
8753
8676
"url": "https://github.com/symfony/process.git",
8754
8754
-
"reference": "85a554acd7c28522241faf2e97b9541247a0d3d5"
8677
8677
+
"reference": "5d1662fb32ebc94f17ddb8d635454a776066733d"
8755
8678
},
8756
8679
"dist": {
8757
8680
"type": "zip",
8758
8758
-
"url": "https://api.github.com/repos/symfony/process/zipball/85a554acd7c28522241faf2e97b9541247a0d3d5",
8759
8759
-
"reference": "85a554acd7c28522241faf2e97b9541247a0d3d5",
8681
8681
+
"url": "https://api.github.com/repos/symfony/process/zipball/5d1662fb32ebc94f17ddb8d635454a776066733d",
8682
8682
+
"reference": "5d1662fb32ebc94f17ddb8d635454a776066733d",
8760
8683
"shasum": ""
8761
8684
},
8762
8685
"require": {
···
8789
8712
"description": "Executes commands in sub-processes",
8790
8713
"homepage": "https://symfony.com",
8791
8714
"support": {
8792
8792
-
"source": "https://github.com/symfony/process/tree/v5.4.39"
8715
8715
+
"source": "https://github.com/symfony/process/tree/v5.4.47"
8793
8716
},
8794
8717
"funding": [
8795
8718
{
···
8805
8728
"type": "tidelift"
8806
8729
}
8807
8730
],
8808
8808
-
"time": "2024-04-18T08:26:06+00:00"
8731
8731
+
"time": "2024-11-06T11:36:42+00:00"
8809
8732
},
8810
8733
{
8811
8734
"name": "symfony/service-contracts",
8812
8812
-
"version": "v3.5.0",
8735
8735
+
"version": "v3.5.1",
8813
8736
"source": {
8814
8737
"type": "git",
8815
8738
"url": "https://github.com/symfony/service-contracts.git",
8816
8816
-
"reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
8739
8739
+
"reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
8817
8740
},
8818
8741
"dist": {
8819
8742
"type": "zip",
8820
8820
-
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
8821
8821
-
"reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
8743
8743
+
"url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
8744
8744
+
"reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
8822
8745
"shasum": ""
8823
8746
},
8824
8747
"require": {
···
8872
8795
"standards"
8873
8796
],
8874
8797
"support": {
8875
8875
-
"source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
8798
8798
+
"source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
8876
8799
},
8877
8800
"funding": [
8878
8801
{
···
8888
8811
"type": "tidelift"
8889
8812
}
8890
8813
],
8891
8891
-
"time": "2024-04-18T09:32:20+00:00"
8814
8814
+
"time": "2024-09-25T14:20:29+00:00"
8892
8815
},
8893
8816
{
8894
8817
"name": "symfony/string",
8895
8895
-
"version": "v6.4.7",
8818
8818
+
"version": "v6.4.15",
8896
8819
"source": {
8897
8820
"type": "git",
8898
8821
"url": "https://github.com/symfony/string.git",
8899
8899
-
"reference": "ffeb9591c61f65a68d47f77d12b83fa530227a69"
8822
8822
+
"reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
8900
8823
},
8901
8824
"dist": {
8902
8825
"type": "zip",
8903
8903
-
"url": "https://api.github.com/repos/symfony/string/zipball/ffeb9591c61f65a68d47f77d12b83fa530227a69",
8904
8904
-
"reference": "ffeb9591c61f65a68d47f77d12b83fa530227a69",
8826
8826
+
"url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
8827
8827
+
"reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
8905
8828
"shasum": ""
8906
8829
},
8907
8830
"require": {
···
8958
8881
"utf8"
8959
8882
],
8960
8883
"support": {
8961
8961
-
"source": "https://github.com/symfony/string/tree/v6.4.7"
8884
8884
+
"source": "https://github.com/symfony/string/tree/v6.4.15"
8962
8885
},
8963
8886
"funding": [
8964
8887
{
···
8974
8897
"type": "tidelift"
8975
8898
}
8976
8899
],
8977
8977
-
"time": "2024-04-18T09:22:46+00:00"
8900
8900
+
"time": "2024-11-13T13:31:12+00:00"
8978
8901
},
8979
8902
{
8980
8903
"name": "symfony/translation",
8981
8981
-
"version": "v5.4.39",
8904
8904
+
"version": "v5.4.45",
8982
8905
"source": {
8983
8906
"type": "git",
8984
8907
"url": "https://github.com/symfony/translation.git",
8985
8985
-
"reference": "0fabede35e3985c4f96089edeeefe8313e15ca3a"
8908
8908
+
"reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed"
8986
8909
},
8987
8910
"dist": {
8988
8911
"type": "zip",
8989
8989
-
"url": "https://api.github.com/repos/symfony/translation/zipball/0fabede35e3985c4f96089edeeefe8313e15ca3a",
8990
8990
-
"reference": "0fabede35e3985c4f96089edeeefe8313e15ca3a",
8912
8912
+
"url": "https://api.github.com/repos/symfony/translation/zipball/98f26acc99341ca4bab345fb14d7b1d7cb825bed",
8913
8913
+
"reference": "98f26acc99341ca4bab345fb14d7b1d7cb825bed",
8991
8914
"shasum": ""
8992
8915
},
8993
8916
"require": {
···
9055
8978
"description": "Provides tools to internationalize your application",
9056
8979
"homepage": "https://symfony.com",
9057
8980
"support": {
9058
9058
-
"source": "https://github.com/symfony/translation/tree/v5.4.39"
8981
8981
+
"source": "https://github.com/symfony/translation/tree/v5.4.45"
9059
8982
},
9060
8983
"funding": [
9061
8984
{
···
9071
8994
"type": "tidelift"
9072
8995
}
9073
8996
],
9074
9074
-
"time": "2024-04-18T08:26:06+00:00"
8997
8997
+
"time": "2024-09-25T14:11:13+00:00"
9075
8998
},
9076
8999
{
9077
9000
"name": "symfony/translation-contracts",
9078
9078
-
"version": "v2.5.3",
9001
9001
+
"version": "v2.5.4",
9079
9002
"source": {
9080
9003
"type": "git",
9081
9004
"url": "https://github.com/symfony/translation-contracts.git",
9082
9082
-
"reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664"
9005
9005
+
"reference": "450d4172653f38818657022252f9d81be89ee9a8"
9083
9006
},
9084
9007
"dist": {
9085
9008
"type": "zip",
9086
9086
-
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b0073a77ac0b7ea55131020e87b1e3af540f4664",
9087
9087
-
"reference": "b0073a77ac0b7ea55131020e87b1e3af540f4664",
9009
9009
+
"url": "https://api.github.com/repos/symfony/translation-contracts/zipball/450d4172653f38818657022252f9d81be89ee9a8",
9010
9010
+
"reference": "450d4172653f38818657022252f9d81be89ee9a8",
9088
9011
"shasum": ""
9089
9012
},
9090
9013
"require": {
···
9133
9056
"standards"
9134
9057
],
9135
9058
"support": {
9136
9136
-
"source": "https://github.com/symfony/translation-contracts/tree/v2.5.3"
9059
9059
+
"source": "https://github.com/symfony/translation-contracts/tree/v2.5.4"
9137
9060
},
9138
9061
"funding": [
9139
9062
{
···
9149
9072
"type": "tidelift"
9150
9073
}
9151
9074
],
9152
9152
-
"time": "2024-01-23T13:51:25+00:00"
9075
9075
+
"time": "2024-09-25T14:11:13+00:00"
9153
9076
},
9154
9077
{
9155
9078
"name": "symfony/yaml",
9156
9156
-
"version": "v5.4.39",
9079
9079
+
"version": "v5.4.45",
9157
9080
"source": {
9158
9081
"type": "git",
9159
9082
"url": "https://github.com/symfony/yaml.git",
9160
9160
-
"reference": "bc780e16879000f77a1022163c052f5323b5e640"
9083
9083
+
"reference": "a454d47278cc16a5db371fe73ae66a78a633371e"
9161
9084
},
9162
9085
"dist": {
9163
9086
"type": "zip",
9164
9164
-
"url": "https://api.github.com/repos/symfony/yaml/zipball/bc780e16879000f77a1022163c052f5323b5e640",
9165
9165
-
"reference": "bc780e16879000f77a1022163c052f5323b5e640",
9087
9087
+
"url": "https://api.github.com/repos/symfony/yaml/zipball/a454d47278cc16a5db371fe73ae66a78a633371e",
9088
9088
+
"reference": "a454d47278cc16a5db371fe73ae66a78a633371e",
9166
9089
"shasum": ""
9167
9090
},
9168
9091
"require": {
···
9208
9131
"description": "Loads and dumps YAML files",
9209
9132
"homepage": "https://symfony.com",
9210
9133
"support": {
9211
9211
-
"source": "https://github.com/symfony/yaml/tree/v5.4.39"
9134
9134
+
"source": "https://github.com/symfony/yaml/tree/v5.4.45"
9212
9135
},
9213
9136
"funding": [
9214
9137
{
···
9224
9147
"type": "tidelift"
9225
9148
}
9226
9149
],
9227
9227
-
"time": "2024-04-23T11:57:27+00:00"
9150
9150
+
"time": "2024-09-25T14:11:13+00:00"
9228
9151
},
9229
9152
{
9230
9153
"name": "tijsverkoyen/css-to-inline-styles",
···
9490
9413
"packages-dev": [],
9491
9414
"aliases": [],
9492
9415
"minimum-stability": "stable",
9493
9493
-
"stability-flags": [],
9416
9416
+
"stability-flags": {},
9494
9417
"prefer-stable": false,
9495
9418
"prefer-lowest": false,
9496
9496
-
"platform": [],
9497
9497
-
"platform-dev": [],
9498
9498
-
"plugin-api-version": "2.3.0"
9419
9419
+
"platform": {},
9420
9420
+
"platform-dev": {},
9421
9421
+
"plugin-api-version": "2.6.0"
9499
9422
}
+1
-1
pkgs/by-name/fl/flarum/package.nix
···
16
16
17
17
composerLock = ./composer.lock;
18
18
composerStrictValidation = false;
19
19
-
vendorHash = "sha256-gQkjuatItw93JhI7FVfg5hYxkC1gsRQ3c2C2+MhI/Jg=";
19
19
+
vendorHash = "sha256-m+x/4A/DcMv7mMfQjpH1vsVqXuMHhSHeX3sgI43uJLI=";
20
20
21
21
meta = with lib; {
22
22
changelog = "https://github.com/flarum/framework/blob/main/CHANGELOG.md";
+3
-3
pkgs/by-name/fl/flyctl/package.nix
···
9
9
10
10
buildGoModule rec {
11
11
pname = "flyctl";
12
12
-
version = "0.3.40";
12
12
+
version = "0.3.49";
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "superfly";
16
16
repo = "flyctl";
17
17
rev = "v${version}";
18
18
-
hash = "sha256-ilf4z7QlY9Fwx8FslcJalNVhkAz/KW30Mf2m/VjEKjA=";
18
18
+
hash = "sha256-sf/SUXxAVSZpjcjZDZ+86HKts8MSIMrjiBId4JVfNGY=";
19
19
};
20
20
21
21
-
vendorHash = "sha256-Jh2ygnl2meapyBrFGjALTwUWARAIVKIQ6wBE5x/SPmE=";
21
21
+
vendorHash = "sha256-EVaKDaZay+g7HtBukM+49IYiNheqIMHWHkDL/OFWmQg=";
22
22
23
23
subPackages = [ "." ];
24
24
+3
-3
pkgs/by-name/gr/granian/package.nix
···
8
8
9
9
python3Packages.buildPythonApplication rec {
10
10
pname = "granian";
11
11
-
version = "1.6.1";
11
11
+
version = "1.6.2";
12
12
pyproject = true;
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "emmett-framework";
16
16
repo = "granian";
17
17
rev = "v${version}";
18
18
-
hash = "sha256-Cuojg2Ko+KH/279z7HGYEthrMAqLgmnoHGjZ8HL7unw=";
18
18
+
hash = "sha256-BuGavjNgA2xsp1f1KGQ9JYmAYVL779EC5jDzuRXAjYg=";
19
19
};
20
20
21
21
cargoDeps = rustPlatform.fetchCargoTarball {
22
22
inherit src;
23
23
name = "${pname}-${version}";
24
24
-
hash = "sha256-dRBjN0/EmQlGtQ1iGvSPE30KOHVlkWpjpMU2lpIGUdA=";
24
24
+
hash = "sha256-x/qyNnIUqEgh8fyzn7g4dw7KQxn71l+vlar04PaVI7c=";
25
25
};
26
26
27
27
nativeBuildInputs = with rustPlatform; [
+1
-1
pkgs/by-name/li/libvdwxc/package.nix
···
55
55
lgpl3Plus
56
56
bsd3
57
57
];
58
58
-
homepage = "https://libvdwxc.org/";
58
58
+
homepage = "https://libvdwxc.materialsmodeling.org/";
59
59
platforms = platforms.unix;
60
60
maintainers = [ maintainers.sheepforce ];
61
61
};
+740
pkgs/by-name/ma/markdown2html-converter/Cargo.lock
···
1
1
+
# This file is automatically @generated by Cargo.
2
2
+
# It is not intended for manual editing.
3
3
+
version = 3
4
4
+
5
5
+
[[package]]
6
6
+
name = "aho-corasick"
7
7
+
version = "1.1.3"
8
8
+
source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
10
+
dependencies = [
11
11
+
"memchr",
12
12
+
]
13
13
+
14
14
+
[[package]]
15
15
+
name = "anstream"
16
16
+
version = "0.6.14"
17
17
+
source = "registry+https://github.com/rust-lang/crates.io-index"
18
18
+
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
19
19
+
dependencies = [
20
20
+
"anstyle",
21
21
+
"anstyle-parse",
22
22
+
"anstyle-query",
23
23
+
"anstyle-wincon",
24
24
+
"colorchoice",
25
25
+
"is_terminal_polyfill",
26
26
+
"utf8parse",
27
27
+
]
28
28
+
29
29
+
[[package]]
30
30
+
name = "anstyle"
31
31
+
version = "1.0.7"
32
32
+
source = "registry+https://github.com/rust-lang/crates.io-index"
33
33
+
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
34
34
+
35
35
+
[[package]]
36
36
+
name = "anstyle-parse"
37
37
+
version = "0.2.4"
38
38
+
source = "registry+https://github.com/rust-lang/crates.io-index"
39
39
+
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
40
40
+
dependencies = [
41
41
+
"utf8parse",
42
42
+
]
43
43
+
44
44
+
[[package]]
45
45
+
name = "anstyle-query"
46
46
+
version = "1.0.3"
47
47
+
source = "registry+https://github.com/rust-lang/crates.io-index"
48
48
+
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
49
49
+
dependencies = [
50
50
+
"windows-sys 0.52.0",
51
51
+
]
52
52
+
53
53
+
[[package]]
54
54
+
name = "anstyle-wincon"
55
55
+
version = "3.0.3"
56
56
+
source = "registry+https://github.com/rust-lang/crates.io-index"
57
57
+
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
58
58
+
dependencies = [
59
59
+
"anstyle",
60
60
+
"windows-sys 0.52.0",
61
61
+
]
62
62
+
63
63
+
[[package]]
64
64
+
name = "anyhow"
65
65
+
version = "1.0.86"
66
66
+
source = "registry+https://github.com/rust-lang/crates.io-index"
67
67
+
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
68
68
+
69
69
+
[[package]]
70
70
+
name = "bitflags"
71
71
+
version = "2.5.0"
72
72
+
source = "registry+https://github.com/rust-lang/crates.io-index"
73
73
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
74
74
+
75
75
+
[[package]]
76
76
+
name = "bumpalo"
77
77
+
version = "3.16.0"
78
78
+
source = "registry+https://github.com/rust-lang/crates.io-index"
79
79
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
80
80
+
81
81
+
[[package]]
82
82
+
name = "cfg-if"
83
83
+
version = "1.0.0"
84
84
+
source = "registry+https://github.com/rust-lang/crates.io-index"
85
85
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
86
86
+
87
87
+
[[package]]
88
88
+
name = "clap"
89
89
+
version = "4.5.4"
90
90
+
source = "registry+https://github.com/rust-lang/crates.io-index"
91
91
+
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
92
92
+
dependencies = [
93
93
+
"clap_builder",
94
94
+
"clap_derive",
95
95
+
]
96
96
+
97
97
+
[[package]]
98
98
+
name = "clap_builder"
99
99
+
version = "4.5.2"
100
100
+
source = "registry+https://github.com/rust-lang/crates.io-index"
101
101
+
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
102
102
+
dependencies = [
103
103
+
"anstream",
104
104
+
"anstyle",
105
105
+
"clap_lex",
106
106
+
"strsim 0.11.1",
107
107
+
]
108
108
+
109
109
+
[[package]]
110
110
+
name = "clap_derive"
111
111
+
version = "4.5.4"
112
112
+
source = "registry+https://github.com/rust-lang/crates.io-index"
113
113
+
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
114
114
+
dependencies = [
115
115
+
"heck",
116
116
+
"proc-macro2",
117
117
+
"quote",
118
118
+
"syn 2.0.66",
119
119
+
]
120
120
+
121
121
+
[[package]]
122
122
+
name = "clap_lex"
123
123
+
version = "0.7.0"
124
124
+
source = "registry+https://github.com/rust-lang/crates.io-index"
125
125
+
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
126
126
+
127
127
+
[[package]]
128
128
+
name = "colorchoice"
129
129
+
version = "1.0.1"
130
130
+
source = "registry+https://github.com/rust-lang/crates.io-index"
131
131
+
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
132
132
+
133
133
+
[[package]]
134
134
+
name = "comrak"
135
135
+
version = "0.19.0"
136
136
+
source = "registry+https://github.com/rust-lang/crates.io-index"
137
137
+
checksum = "82c995deda3bfdebd07d0e2af79e9da13e4b1be652b21a746f3f5b24bf0a49ef"
138
138
+
dependencies = [
139
139
+
"derive_builder",
140
140
+
"entities",
141
141
+
"memchr",
142
142
+
"once_cell",
143
143
+
"regex",
144
144
+
"slug",
145
145
+
"typed-arena",
146
146
+
"unicode_categories",
147
147
+
]
148
148
+
149
149
+
[[package]]
150
150
+
name = "concat-with"
151
151
+
version = "0.2.9"
152
152
+
source = "registry+https://github.com/rust-lang/crates.io-index"
153
153
+
checksum = "45527fc9cdf65d432ee7f5f5648a3a598809d543200bd78efa770392fcc22e4f"
154
154
+
155
155
+
[[package]]
156
156
+
name = "cow-utils"
157
157
+
version = "0.1.3"
158
158
+
source = "registry+https://github.com/rust-lang/crates.io-index"
159
159
+
checksum = "417bef24afe1460300965a25ff4a24b8b45ad011948302ec221e8a0a81eb2c79"
160
160
+
161
161
+
[[package]]
162
162
+
name = "darling"
163
163
+
version = "0.14.4"
164
164
+
source = "registry+https://github.com/rust-lang/crates.io-index"
165
165
+
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
166
166
+
dependencies = [
167
167
+
"darling_core",
168
168
+
"darling_macro",
169
169
+
]
170
170
+
171
171
+
[[package]]
172
172
+
name = "darling_core"
173
173
+
version = "0.14.4"
174
174
+
source = "registry+https://github.com/rust-lang/crates.io-index"
175
175
+
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
176
176
+
dependencies = [
177
177
+
"fnv",
178
178
+
"ident_case",
179
179
+
"proc-macro2",
180
180
+
"quote",
181
181
+
"strsim 0.10.0",
182
182
+
"syn 1.0.109",
183
183
+
]
184
184
+
185
185
+
[[package]]
186
186
+
name = "darling_macro"
187
187
+
version = "0.14.4"
188
188
+
source = "registry+https://github.com/rust-lang/crates.io-index"
189
189
+
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
190
190
+
dependencies = [
191
191
+
"darling_core",
192
192
+
"quote",
193
193
+
"syn 1.0.109",
194
194
+
]
195
195
+
196
196
+
[[package]]
197
197
+
name = "derive_builder"
198
198
+
version = "0.12.0"
199
199
+
source = "registry+https://github.com/rust-lang/crates.io-index"
200
200
+
checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
201
201
+
dependencies = [
202
202
+
"derive_builder_macro",
203
203
+
]
204
204
+
205
205
+
[[package]]
206
206
+
name = "derive_builder_core"
207
207
+
version = "0.12.0"
208
208
+
source = "registry+https://github.com/rust-lang/crates.io-index"
209
209
+
checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
210
210
+
dependencies = [
211
211
+
"darling",
212
212
+
"proc-macro2",
213
213
+
"quote",
214
214
+
"syn 1.0.109",
215
215
+
]
216
216
+
217
217
+
[[package]]
218
218
+
name = "derive_builder_macro"
219
219
+
version = "0.12.0"
220
220
+
source = "registry+https://github.com/rust-lang/crates.io-index"
221
221
+
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
222
222
+
dependencies = [
223
223
+
"derive_builder_core",
224
224
+
"syn 1.0.109",
225
225
+
]
226
226
+
227
227
+
[[package]]
228
228
+
name = "deunicode"
229
229
+
version = "1.6.0"
230
230
+
source = "registry+https://github.com/rust-lang/crates.io-index"
231
231
+
checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
232
232
+
233
233
+
[[package]]
234
234
+
name = "educe"
235
235
+
version = "0.5.11"
236
236
+
source = "registry+https://github.com/rust-lang/crates.io-index"
237
237
+
checksum = "e4bd92664bf78c4d3dba9b7cdafce6fa15b13ed3ed16175218196942e99168a8"
238
238
+
dependencies = [
239
239
+
"enum-ordinalize",
240
240
+
"proc-macro2",
241
241
+
"quote",
242
242
+
"syn 2.0.66",
243
243
+
]
244
244
+
245
245
+
[[package]]
246
246
+
name = "entities"
247
247
+
version = "1.0.1"
248
248
+
source = "registry+https://github.com/rust-lang/crates.io-index"
249
249
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
250
250
+
251
251
+
[[package]]
252
252
+
name = "enum-ordinalize"
253
253
+
version = "4.3.0"
254
254
+
source = "registry+https://github.com/rust-lang/crates.io-index"
255
255
+
checksum = "fea0dcfa4e54eeb516fe454635a95753ddd39acda650ce703031c6973e315dd5"
256
256
+
dependencies = [
257
257
+
"enum-ordinalize-derive",
258
258
+
]
259
259
+
260
260
+
[[package]]
261
261
+
name = "enum-ordinalize-derive"
262
262
+
version = "4.3.1"
263
263
+
source = "registry+https://github.com/rust-lang/crates.io-index"
264
264
+
checksum = "0d28318a75d4aead5c4db25382e8ef717932d0346600cacae6357eb5941bc5ff"
265
265
+
dependencies = [
266
266
+
"proc-macro2",
267
267
+
"quote",
268
268
+
"syn 2.0.66",
269
269
+
]
270
270
+
271
271
+
[[package]]
272
272
+
name = "errno"
273
273
+
version = "0.3.9"
274
274
+
source = "registry+https://github.com/rust-lang/crates.io-index"
275
275
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
276
276
+
dependencies = [
277
277
+
"libc",
278
278
+
"windows-sys 0.52.0",
279
279
+
]
280
280
+
281
281
+
[[package]]
282
282
+
name = "fnv"
283
283
+
version = "1.0.7"
284
284
+
source = "registry+https://github.com/rust-lang/crates.io-index"
285
285
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
286
286
+
287
287
+
[[package]]
288
288
+
name = "heck"
289
289
+
version = "0.5.0"
290
290
+
source = "registry+https://github.com/rust-lang/crates.io-index"
291
291
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
292
292
+
293
293
+
[[package]]
294
294
+
name = "html-escape"
295
295
+
version = "0.2.13"
296
296
+
source = "registry+https://github.com/rust-lang/crates.io-index"
297
297
+
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
298
298
+
dependencies = [
299
299
+
"utf8-width",
300
300
+
]
301
301
+
302
302
+
[[package]]
303
303
+
name = "html-minifier"
304
304
+
version = "4.0.0"
305
305
+
source = "registry+https://github.com/rust-lang/crates.io-index"
306
306
+
checksum = "18f74036e4be1b97eaf78bcf795d55002eccf613d5c4705bf78d3b92649ab00f"
307
307
+
dependencies = [
308
308
+
"cow-utils",
309
309
+
"educe",
310
310
+
"html-escape",
311
311
+
"minifier",
312
312
+
]
313
313
+
314
314
+
[[package]]
315
315
+
name = "ident_case"
316
316
+
version = "1.0.1"
317
317
+
source = "registry+https://github.com/rust-lang/crates.io-index"
318
318
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
319
319
+
320
320
+
[[package]]
321
321
+
name = "is_terminal_polyfill"
322
322
+
version = "1.70.0"
323
323
+
source = "registry+https://github.com/rust-lang/crates.io-index"
324
324
+
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
325
325
+
326
326
+
[[package]]
327
327
+
name = "lazy-static-include"
328
328
+
version = "3.2.1"
329
329
+
source = "registry+https://github.com/rust-lang/crates.io-index"
330
330
+
checksum = "67f771f5073e25401d245cf2bfca1e43574ecb1128556213f534a15d751763e3"
331
331
+
dependencies = [
332
332
+
"lazy_static",
333
333
+
"manifest-dir-macros",
334
334
+
"syn 2.0.66",
335
335
+
]
336
336
+
337
337
+
[[package]]
338
338
+
name = "lazy_static"
339
339
+
version = "1.4.0"
340
340
+
source = "registry+https://github.com/rust-lang/crates.io-index"
341
341
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
342
342
+
343
343
+
[[package]]
344
344
+
name = "libc"
345
345
+
version = "0.2.155"
346
346
+
source = "registry+https://github.com/rust-lang/crates.io-index"
347
347
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
348
348
+
349
349
+
[[package]]
350
350
+
name = "linux-raw-sys"
351
351
+
version = "0.4.14"
352
352
+
source = "registry+https://github.com/rust-lang/crates.io-index"
353
353
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
354
354
+
355
355
+
[[package]]
356
356
+
name = "log"
357
357
+
version = "0.4.21"
358
358
+
source = "registry+https://github.com/rust-lang/crates.io-index"
359
359
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
360
360
+
361
361
+
[[package]]
362
362
+
name = "manifest-dir-macros"
363
363
+
version = "0.1.18"
364
364
+
source = "registry+https://github.com/rust-lang/crates.io-index"
365
365
+
checksum = "9c6d40de1ccdbf8bde2eaa0750595478a368f7b3a3f89c426e3454f64e29f593"
366
366
+
dependencies = [
367
367
+
"once_cell",
368
368
+
"proc-macro2",
369
369
+
"quote",
370
370
+
"syn 2.0.66",
371
371
+
]
372
372
+
373
373
+
[[package]]
374
374
+
name = "markdown2html-converter"
375
375
+
version = "1.1.12"
376
376
+
dependencies = [
377
377
+
"anyhow",
378
378
+
"clap",
379
379
+
"comrak",
380
380
+
"concat-with",
381
381
+
"html-escape",
382
382
+
"html-minifier",
383
383
+
"lazy-static-include",
384
384
+
"terminal_size",
385
385
+
]
386
386
+
387
387
+
[[package]]
388
388
+
name = "memchr"
389
389
+
version = "2.7.2"
390
390
+
source = "registry+https://github.com/rust-lang/crates.io-index"
391
391
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
392
392
+
393
393
+
[[package]]
394
394
+
name = "minifier"
395
395
+
version = "0.2.3"
396
396
+
source = "registry+https://github.com/rust-lang/crates.io-index"
397
397
+
checksum = "5394aa376422b4b2b6c02fd9cfcb657e4ec544ae98e43d7d5d785fd0d042fd6d"
398
398
+
399
399
+
[[package]]
400
400
+
name = "once_cell"
401
401
+
version = "1.19.0"
402
402
+
source = "registry+https://github.com/rust-lang/crates.io-index"
403
403
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
404
404
+
405
405
+
[[package]]
406
406
+
name = "proc-macro2"
407
407
+
version = "1.0.84"
408
408
+
source = "registry+https://github.com/rust-lang/crates.io-index"
409
409
+
checksum = "ec96c6a92621310b51366f1e28d05ef11489516e93be030060e5fc12024a49d6"
410
410
+
dependencies = [
411
411
+
"unicode-ident",
412
412
+
]
413
413
+
414
414
+
[[package]]
415
415
+
name = "quote"
416
416
+
version = "1.0.36"
417
417
+
source = "registry+https://github.com/rust-lang/crates.io-index"
418
418
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
419
419
+
dependencies = [
420
420
+
"proc-macro2",
421
421
+
]
422
422
+
423
423
+
[[package]]
424
424
+
name = "regex"
425
425
+
version = "1.10.4"
426
426
+
source = "registry+https://github.com/rust-lang/crates.io-index"
427
427
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
428
428
+
dependencies = [
429
429
+
"aho-corasick",
430
430
+
"memchr",
431
431
+
"regex-automata",
432
432
+
"regex-syntax",
433
433
+
]
434
434
+
435
435
+
[[package]]
436
436
+
name = "regex-automata"
437
437
+
version = "0.4.6"
438
438
+
source = "registry+https://github.com/rust-lang/crates.io-index"
439
439
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
440
440
+
dependencies = [
441
441
+
"aho-corasick",
442
442
+
"memchr",
443
443
+
"regex-syntax",
444
444
+
]
445
445
+
446
446
+
[[package]]
447
447
+
name = "regex-syntax"
448
448
+
version = "0.8.3"
449
449
+
source = "registry+https://github.com/rust-lang/crates.io-index"
450
450
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
451
451
+
452
452
+
[[package]]
453
453
+
name = "rustix"
454
454
+
version = "0.38.34"
455
455
+
source = "registry+https://github.com/rust-lang/crates.io-index"
456
456
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
457
457
+
dependencies = [
458
458
+
"bitflags",
459
459
+
"errno",
460
460
+
"libc",
461
461
+
"linux-raw-sys",
462
462
+
"windows-sys 0.52.0",
463
463
+
]
464
464
+
465
465
+
[[package]]
466
466
+
name = "slug"
467
467
+
version = "0.1.5"
468
468
+
source = "registry+https://github.com/rust-lang/crates.io-index"
469
469
+
checksum = "3bd94acec9c8da640005f8e135a39fc0372e74535e6b368b7a04b875f784c8c4"
470
470
+
dependencies = [
471
471
+
"deunicode",
472
472
+
"wasm-bindgen",
473
473
+
]
474
474
+
475
475
+
[[package]]
476
476
+
name = "strsim"
477
477
+
version = "0.10.0"
478
478
+
source = "registry+https://github.com/rust-lang/crates.io-index"
479
479
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
480
480
+
481
481
+
[[package]]
482
482
+
name = "strsim"
483
483
+
version = "0.11.1"
484
484
+
source = "registry+https://github.com/rust-lang/crates.io-index"
485
485
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
486
486
+
487
487
+
[[package]]
488
488
+
name = "syn"
489
489
+
version = "1.0.109"
490
490
+
source = "registry+https://github.com/rust-lang/crates.io-index"
491
491
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
492
492
+
dependencies = [
493
493
+
"proc-macro2",
494
494
+
"quote",
495
495
+
"unicode-ident",
496
496
+
]
497
497
+
498
498
+
[[package]]
499
499
+
name = "syn"
500
500
+
version = "2.0.66"
501
501
+
source = "registry+https://github.com/rust-lang/crates.io-index"
502
502
+
checksum = "c42f3f41a2de00b01c0aaad383c5a45241efc8b2d1eda5661812fda5f3cdcff5"
503
503
+
dependencies = [
504
504
+
"proc-macro2",
505
505
+
"quote",
506
506
+
"unicode-ident",
507
507
+
]
508
508
+
509
509
+
[[package]]
510
510
+
name = "terminal_size"
511
511
+
version = "0.3.0"
512
512
+
source = "registry+https://github.com/rust-lang/crates.io-index"
513
513
+
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
514
514
+
dependencies = [
515
515
+
"rustix",
516
516
+
"windows-sys 0.48.0",
517
517
+
]
518
518
+
519
519
+
[[package]]
520
520
+
name = "typed-arena"
521
521
+
version = "2.0.2"
522
522
+
source = "registry+https://github.com/rust-lang/crates.io-index"
523
523
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
524
524
+
525
525
+
[[package]]
526
526
+
name = "unicode-ident"
527
527
+
version = "1.0.12"
528
528
+
source = "registry+https://github.com/rust-lang/crates.io-index"
529
529
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
530
530
+
531
531
+
[[package]]
532
532
+
name = "unicode_categories"
533
533
+
version = "0.1.1"
534
534
+
source = "registry+https://github.com/rust-lang/crates.io-index"
535
535
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
536
536
+
537
537
+
[[package]]
538
538
+
name = "utf8-width"
539
539
+
version = "0.1.7"
540
540
+
source = "registry+https://github.com/rust-lang/crates.io-index"
541
541
+
checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
542
542
+
543
543
+
[[package]]
544
544
+
name = "utf8parse"
545
545
+
version = "0.2.1"
546
546
+
source = "registry+https://github.com/rust-lang/crates.io-index"
547
547
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
548
548
+
549
549
+
[[package]]
550
550
+
name = "wasm-bindgen"
551
551
+
version = "0.2.92"
552
552
+
source = "registry+https://github.com/rust-lang/crates.io-index"
553
553
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
554
554
+
dependencies = [
555
555
+
"cfg-if",
556
556
+
"wasm-bindgen-macro",
557
557
+
]
558
558
+
559
559
+
[[package]]
560
560
+
name = "wasm-bindgen-backend"
561
561
+
version = "0.2.92"
562
562
+
source = "registry+https://github.com/rust-lang/crates.io-index"
563
563
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
564
564
+
dependencies = [
565
565
+
"bumpalo",
566
566
+
"log",
567
567
+
"once_cell",
568
568
+
"proc-macro2",
569
569
+
"quote",
570
570
+
"syn 2.0.66",
571
571
+
"wasm-bindgen-shared",
572
572
+
]
573
573
+
574
574
+
[[package]]
575
575
+
name = "wasm-bindgen-macro"
576
576
+
version = "0.2.92"
577
577
+
source = "registry+https://github.com/rust-lang/crates.io-index"
578
578
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
579
579
+
dependencies = [
580
580
+
"quote",
581
581
+
"wasm-bindgen-macro-support",
582
582
+
]
583
583
+
584
584
+
[[package]]
585
585
+
name = "wasm-bindgen-macro-support"
586
586
+
version = "0.2.92"
587
587
+
source = "registry+https://github.com/rust-lang/crates.io-index"
588
588
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
589
589
+
dependencies = [
590
590
+
"proc-macro2",
591
591
+
"quote",
592
592
+
"syn 2.0.66",
593
593
+
"wasm-bindgen-backend",
594
594
+
"wasm-bindgen-shared",
595
595
+
]
596
596
+
597
597
+
[[package]]
598
598
+
name = "wasm-bindgen-shared"
599
599
+
version = "0.2.92"
600
600
+
source = "registry+https://github.com/rust-lang/crates.io-index"
601
601
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
602
602
+
603
603
+
[[package]]
604
604
+
name = "windows-sys"
605
605
+
version = "0.48.0"
606
606
+
source = "registry+https://github.com/rust-lang/crates.io-index"
607
607
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
608
608
+
dependencies = [
609
609
+
"windows-targets 0.48.5",
610
610
+
]
611
611
+
612
612
+
[[package]]
613
613
+
name = "windows-sys"
614
614
+
version = "0.52.0"
615
615
+
source = "registry+https://github.com/rust-lang/crates.io-index"
616
616
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
617
617
+
dependencies = [
618
618
+
"windows-targets 0.52.5",
619
619
+
]
620
620
+
621
621
+
[[package]]
622
622
+
name = "windows-targets"
623
623
+
version = "0.48.5"
624
624
+
source = "registry+https://github.com/rust-lang/crates.io-index"
625
625
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
626
626
+
dependencies = [
627
627
+
"windows_aarch64_gnullvm 0.48.5",
628
628
+
"windows_aarch64_msvc 0.48.5",
629
629
+
"windows_i686_gnu 0.48.5",
630
630
+
"windows_i686_msvc 0.48.5",
631
631
+
"windows_x86_64_gnu 0.48.5",
632
632
+
"windows_x86_64_gnullvm 0.48.5",
633
633
+
"windows_x86_64_msvc 0.48.5",
634
634
+
]
635
635
+
636
636
+
[[package]]
637
637
+
name = "windows-targets"
638
638
+
version = "0.52.5"
639
639
+
source = "registry+https://github.com/rust-lang/crates.io-index"
640
640
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
641
641
+
dependencies = [
642
642
+
"windows_aarch64_gnullvm 0.52.5",
643
643
+
"windows_aarch64_msvc 0.52.5",
644
644
+
"windows_i686_gnu 0.52.5",
645
645
+
"windows_i686_gnullvm",
646
646
+
"windows_i686_msvc 0.52.5",
647
647
+
"windows_x86_64_gnu 0.52.5",
648
648
+
"windows_x86_64_gnullvm 0.52.5",
649
649
+
"windows_x86_64_msvc 0.52.5",
650
650
+
]
651
651
+
652
652
+
[[package]]
653
653
+
name = "windows_aarch64_gnullvm"
654
654
+
version = "0.48.5"
655
655
+
source = "registry+https://github.com/rust-lang/crates.io-index"
656
656
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
657
657
+
658
658
+
[[package]]
659
659
+
name = "windows_aarch64_gnullvm"
660
660
+
version = "0.52.5"
661
661
+
source = "registry+https://github.com/rust-lang/crates.io-index"
662
662
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
663
663
+
664
664
+
[[package]]
665
665
+
name = "windows_aarch64_msvc"
666
666
+
version = "0.48.5"
667
667
+
source = "registry+https://github.com/rust-lang/crates.io-index"
668
668
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
669
669
+
670
670
+
[[package]]
671
671
+
name = "windows_aarch64_msvc"
672
672
+
version = "0.52.5"
673
673
+
source = "registry+https://github.com/rust-lang/crates.io-index"
674
674
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
675
675
+
676
676
+
[[package]]
677
677
+
name = "windows_i686_gnu"
678
678
+
version = "0.48.5"
679
679
+
source = "registry+https://github.com/rust-lang/crates.io-index"
680
680
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
681
681
+
682
682
+
[[package]]
683
683
+
name = "windows_i686_gnu"
684
684
+
version = "0.52.5"
685
685
+
source = "registry+https://github.com/rust-lang/crates.io-index"
686
686
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
687
687
+
688
688
+
[[package]]
689
689
+
name = "windows_i686_gnullvm"
690
690
+
version = "0.52.5"
691
691
+
source = "registry+https://github.com/rust-lang/crates.io-index"
692
692
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
693
693
+
694
694
+
[[package]]
695
695
+
name = "windows_i686_msvc"
696
696
+
version = "0.48.5"
697
697
+
source = "registry+https://github.com/rust-lang/crates.io-index"
698
698
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
699
699
+
700
700
+
[[package]]
701
701
+
name = "windows_i686_msvc"
702
702
+
version = "0.52.5"
703
703
+
source = "registry+https://github.com/rust-lang/crates.io-index"
704
704
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
705
705
+
706
706
+
[[package]]
707
707
+
name = "windows_x86_64_gnu"
708
708
+
version = "0.48.5"
709
709
+
source = "registry+https://github.com/rust-lang/crates.io-index"
710
710
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
711
711
+
712
712
+
[[package]]
713
713
+
name = "windows_x86_64_gnu"
714
714
+
version = "0.52.5"
715
715
+
source = "registry+https://github.com/rust-lang/crates.io-index"
716
716
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
717
717
+
718
718
+
[[package]]
719
719
+
name = "windows_x86_64_gnullvm"
720
720
+
version = "0.48.5"
721
721
+
source = "registry+https://github.com/rust-lang/crates.io-index"
722
722
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
723
723
+
724
724
+
[[package]]
725
725
+
name = "windows_x86_64_gnullvm"
726
726
+
version = "0.52.5"
727
727
+
source = "registry+https://github.com/rust-lang/crates.io-index"
728
728
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
729
729
+
730
730
+
[[package]]
731
731
+
name = "windows_x86_64_msvc"
732
732
+
version = "0.48.5"
733
733
+
source = "registry+https://github.com/rust-lang/crates.io-index"
734
734
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
735
735
+
736
736
+
[[package]]
737
737
+
name = "windows_x86_64_msvc"
738
738
+
version = "0.52.5"
739
739
+
source = "registry+https://github.com/rust-lang/crates.io-index"
740
740
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
+32
pkgs/by-name/ma/markdown2html-converter/package.nix
···
1
1
+
{
2
2
+
lib,
3
3
+
rustPlatform,
4
4
+
fetchFromGitHub,
5
5
+
}:
6
6
+
7
7
+
rustPlatform.buildRustPackage rec {
8
8
+
pname = "markdown2html-converter";
9
9
+
version = "1.1.12";
10
10
+
11
11
+
src = fetchFromGitHub {
12
12
+
owner = "magiclen";
13
13
+
repo = "markdown2html-converter";
14
14
+
rev = "refs/tags/v${version}";
15
15
+
hash = "sha256-C35TCmcskhK3sHbkUp3kEaTA4P7Ls5Rn6ahUbzy7KXY=";
16
16
+
};
17
17
+
18
18
+
cargoLock.lockFile = ./Cargo.lock;
19
19
+
20
20
+
postPatch = ''
21
21
+
ln -s ${./Cargo.lock} Cargo.lock
22
22
+
'';
23
23
+
24
24
+
meta = {
25
25
+
changelog = "https://github.com/magiclen/markdown2html-converter/releases/tag/v${version}";
26
26
+
description = "Tool for converting a Markdown file to a single HTML file with built-in CSS and JS";
27
27
+
homepage = "https://github.com/magiclen/markdown2html-converter";
28
28
+
license = lib.licenses.mit;
29
29
+
mainProgram = "markdown2html-converter";
30
30
+
maintainers = with lib.maintainers; [ tomasajt ];
31
31
+
};
32
32
+
}
+5
-5
pkgs/by-name/mo/mongodb-ce/package.nix
···
15
15
}:
16
16
17
17
let
18
18
-
version = "8.0.3";
18
18
+
version = "8.0.4";
19
19
20
20
srcs = version: {
21
21
"x86_64-linux" = {
22
22
url = "https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu2204-${version}.tgz";
23
23
-
hash = "sha256-AFnfK6ADPMBndL3k068IfY4wyD8Aa0/UZhY2g+jS31M=";
23
23
+
hash = "sha256-N5rwtPrrjVJj7UAk/weBAhV4+7wHRLNowkX6gEWCQVU=";
24
24
};
25
25
"aarch64-linux" = {
26
26
url = "https://fastdl.mongodb.org/linux/mongodb-linux-aarch64-ubuntu2204-${version}.tgz";
27
27
-
hash = "sha256-7FGzHMdr8+1Bkx+3QFmDf/DGw5DxfDFEuzU6yICtOBo=";
27
27
+
hash = "sha256-uBa7/jxfZBNmB0l2jspJW2QQ8VY0GtWxc/tPlkV6UBk=";
28
28
};
29
29
"x86_64-darwin" = {
30
30
url = "https://fastdl.mongodb.org/osx/mongodb-macos-x86_64-${version}.tgz";
31
31
-
hash = "sha256-GUIFG7F/KNyoPu9HGMs0UVw/HyK5T7jwTrSGY55/UUE=";
31
31
+
hash = "sha256-Ya+HIlRPWXPp9aX1AlRgkh/pfKRgxhqNep/6uuARmCo=";
32
32
};
33
33
"aarch64-darwin" = {
34
34
url = "https://fastdl.mongodb.org/osx/mongodb-macos-arm64-${version}.tgz";
35
35
-
hash = "sha256-erTgU4XQ9Jh1ltPKbyyW6zf3hRHAcopGuHCRFw/AH5g=";
35
35
+
hash = "sha256-IZ47PXsxwEn/e890cNOO/3BOVt8qwY1N94Ql4phcz1g=";
36
36
};
37
37
};
38
38
in
-28
pkgs/by-name/ni/nimble/lock.json
···
1
1
-
{
2
2
-
"depends": [
3
3
-
{
4
4
-
"method": "fetchzip",
5
5
-
"path": "/nix/store/6aph9sfwcws7pd2725fwjnibdfrv7qmw-source",
6
6
-
"rev": "f8f6bd34bfa3fe12c64b919059ad856a96efcba0",
7
7
-
"sha256": "11m1rb6rzk70kvskppf97ddzgf5fnh9crjziqc6hib0jgsm5d615",
8
8
-
"srcDir": "src",
9
9
-
"url": "https://github.com/nim-lang/checksums/archive/f8f6bd34bfa3fe12c64b919059ad856a96efcba0.tar.gz",
10
10
-
"subDir": "",
11
11
-
"packages": [
12
12
-
"checksums"
13
13
-
]
14
14
-
},
15
15
-
{
16
16
-
"method": "fetchzip",
17
17
-
"path": "/nix/store/lwg9fm34h5xv0dvxij9r5m2y6pn1zsvx-source",
18
18
-
"rev": "faf1617f44d7632ee9601ebc13887644925dcc01",
19
19
-
"sha256": "1dxbc41wbvkpdp6q3qz1r38lpn32447qkkgyh2s12ym6bx4ynni4",
20
20
-
"srcDir": "src",
21
21
-
"url": "https://github.com/nim-lang/sat/archive/faf1617f44d7632ee9601ebc13887644925dcc01.tar.gz",
22
22
-
"subDir": "",
23
23
-
"packages": [
24
24
-
"sat"
25
25
-
]
26
26
-
}
27
27
-
]
28
28
-
}
+3
-4
pkgs/by-name/ni/nimble/package.nix
···
10
10
buildNimPackage (
11
11
final: prev: {
12
12
pname = "nimble";
13
13
-
version = "0.16.2";
13
13
+
version = "0.16.3";
14
14
15
15
src = fetchFromGitHub {
16
16
owner = "nim-lang";
17
17
repo = "nimble";
18
18
rev = "v${final.version}";
19
19
-
hash = "sha256-MVHf19UbOWk8Zba2scj06PxdYYOJA6OXrVyDQ9Ku6Us=";
19
19
+
hash = "sha256-1tO/6sKPjmu9B6/cF00DeY/mnUHi2Y+hTEZ3WCqKoGw=";
20
20
+
fetchSubmodules = true;
20
21
};
21
21
-
22
22
-
lockFile = ./lock.json;
23
22
24
23
nativeBuildInputs = [ makeWrapper ];
25
24
buildInputs = [ openssl ];
+9
-9
pkgs/by-name/os/osu-lazer-bin/package.nix
···
1
1
{
2
2
lib,
3
3
-
stdenv,
3
3
+
stdenvNoCC,
4
4
fetchurl,
5
5
fetchzip,
6
6
appimageTools,
···
10
10
11
11
let
12
12
pname = "osu-lazer-bin";
13
13
-
version = "2024.1115.3";
13
13
+
version = "2024.1208.0";
14
14
15
15
src =
16
16
{
17
17
aarch64-darwin = fetchzip {
18
18
url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Apple.Silicon.zip";
19
19
-
hash = "sha256-dw+bfuei0Wbk3UNVKZRahZxxsJObTyzJOYEMXYJyUNE=";
19
19
+
hash = "sha256-OgXKJ09OMqeD2ZdNBbEluEyR0bbBllprSAHaIXCtLSA=";
20
20
stripRoot = false;
21
21
};
22
22
x86_64-darwin = fetchzip {
23
23
url = "https://github.com/ppy/osu/releases/download/${version}/osu.app.Intel.zip";
24
24
-
hash = "sha256-EQA2HhoN52VdZsvq8IyocV4zRupVRfdyPpXF3nxZ8rM=";
24
24
+
hash = "sha256-3W6F2ThYTOVKa9/zTA/6X0uMoPy1SYulIYfYw+D7FR8=";
25
25
stripRoot = false;
26
26
};
27
27
x86_64-linux = fetchurl {
28
28
url = "https://github.com/ppy/osu/releases/download/${version}/osu.AppImage";
29
29
-
hash = "sha256-kwZHy0FfOUFIWvyOj0ghlQz05U+Lnzl5TgC4T6bhm7o=";
29
29
+
hash = "sha256-gRUr7jf0+Xbfz8FurPk/o7F67TYisdNySNzVWEMb1es=";
30
30
};
31
31
}
32
32
-
.${stdenv.system} or (throw "osu-lazer-bin: ${stdenv.system} is unsupported.");
32
32
+
.${stdenvNoCC.system} or (throw "osu-lazer-bin: ${stdenvNoCC.system} is unsupported.");
33
33
34
34
meta = {
35
35
description = "Rhythm is just a *click* away (AppImage version for score submission and multiplayer, and binary distribution for Darwin systems)";
···
55
55
56
56
passthru.updateScript = ./update.sh;
57
57
in
58
58
-
if stdenv.hostPlatform.isDarwin then
59
59
-
stdenv.mkDerivation {
58
58
+
if stdenvNoCC.isDarwin then
59
59
+
stdenvNoCC.mkDerivation {
60
60
inherit
61
61
pname
62
62
version
···
99
99
100
100
install -m 444 -D ${contents}/osu!.desktop -t $out/share/applications
101
101
for i in 16 32 48 64 96 128 256 512 1024; do
102
102
-
install -D ${contents}/osu!.png $out/share/icons/hicolor/''${i}x$i/apps/osu!.png
102
102
+
install -D ${contents}/osu.png $out/share/icons/hicolor/''${i}x$i/apps/osu.png
103
103
done
104
104
'';
105
105
}
+1567
-327
pkgs/by-name/os/osu-lazer/deps.nix
···
1
1
# This file was automatically generated by passthru.fetch-deps.
2
2
# Please dont edit it manually, your changes might get overwritten!
3
3
4
4
-
{ fetchNuGet }: [
5
5
-
(fetchNuGet { pname = "AutoMapper"; version = "13.0.1"; hash = "sha256-3rlsVaouPVH3BD0SobUbVojHuZzNUThQnwbteDtWQ2g="; })
6
6
-
(fetchNuGet { pname = "CodeFileSanity"; version = "0.0.37"; hash = "sha256-+BoA4FdDUfeREdc42xbnonh3IBLOjzyrrBosaswbSg4="; })
7
7
-
(fetchNuGet { pname = "DiffPlex"; version = "1.7.2"; hash = "sha256-Vsn81duAmPIPkR40h5bEz7hgtF5Kt5nAAGhQZrQbqxE="; })
8
8
-
(fetchNuGet { pname = "DiscordRichPresence"; version = "1.2.1.24"; hash = "sha256-oRNrlF1/yK0QvrW2+48RsmSg9h9/pDIfA56/bpoHXFU="; })
9
9
-
(fetchNuGet { pname = "FFmpeg.AutoGen"; version = "4.3.0.1"; hash = "sha256-e89+ifalu9T2IpbAl7xji9Rf4AF++490tpJta+sp3Vg="; })
10
10
-
(fetchNuGet { pname = "Fody"; version = "6.8.0"; hash = "sha256-2laYscz0i0LalGTAup7dsh6XlYRZSojYpp8XOwZJJfg="; })
11
11
-
(fetchNuGet { pname = "HidSharpCore"; version = "1.2.1.1"; hash = "sha256-lM4o3FYBon8eQIMt4uiJAs8M0t4MW+joykiDX+lrdv4="; })
12
12
-
(fetchNuGet { pname = "HtmlAgilityPack"; version = "1.11.70"; hash = "sha256-V/SI2N1+jNkwjSQRd2Y/XVVhdOKvSNz3/NeIFE9V3wY="; })
13
13
-
(fetchNuGet { pname = "Humanizer"; version = "2.14.1"; hash = "sha256-1wGwf5KAmDeiH0Dz8KcTdZw+UMkiNsjKOIOt/VJnnqE="; })
14
14
-
(fetchNuGet { pname = "Humanizer.Core"; version = "2.14.1"; hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o="; })
15
15
-
(fetchNuGet { pname = "Humanizer.Core.af"; version = "2.14.1"; hash = "sha256-8CCgI7OweSa53cZWZBXQ8a7VVt/NPP16zHVBZvzU9KQ="; })
16
16
-
(fetchNuGet { pname = "Humanizer.Core.ar"; version = "2.14.1"; hash = "sha256-JRoP+brQgYBZI8OccH/jaM1Z482ZWBiqU2XL3KsIPw8="; })
17
17
-
(fetchNuGet { pname = "Humanizer.Core.az"; version = "2.14.1"; hash = "sha256-ubwkbes9zrrisuXTcT4ZgOAiFsUieC6OLd4pgzxsE40="; })
18
18
-
(fetchNuGet { pname = "Humanizer.Core.bg"; version = "2.14.1"; hash = "sha256-Xv6DP1xxxGVUfP44TZasWpxgQ/DkriljvmIMtHf+nGk="; })
19
19
-
(fetchNuGet { pname = "Humanizer.Core.bn-BD"; version = "2.14.1"; hash = "sha256-6JpReIc3fkExvJIXzk6fUw56wJ78aTEg1dWQ6o+dQow="; })
20
20
-
(fetchNuGet { pname = "Humanizer.Core.cs"; version = "2.14.1"; hash = "sha256-MGL86KxSbz0PkDo9+NRj6h1fDjPZXlxAtYNf0Zreg/4="; })
21
21
-
(fetchNuGet { pname = "Humanizer.Core.da"; version = "2.14.1"; hash = "sha256-Gpw8kJbgz0KQS2mGY5tmrHqpgUO4abD7dSKIy//ONYM="; })
22
22
-
(fetchNuGet { pname = "Humanizer.Core.de"; version = "2.14.1"; hash = "sha256-Eswv8aEQoxI9MZr2CvWtBUn5X9JRZTWQjRzHJkGj80g="; })
23
23
-
(fetchNuGet { pname = "Humanizer.Core.el"; version = "2.14.1"; hash = "sha256-wCK2Uy/AV6FxPUSUM0NMbV14pAP+ss25AaVAHMQIeJA="; })
24
24
-
(fetchNuGet { pname = "Humanizer.Core.es"; version = "2.14.1"; hash = "sha256-iEHiQXKwg0ABDxh//HSrzwaVOlilQBFI96+GYzzTMwQ="; })
25
25
-
(fetchNuGet { pname = "Humanizer.Core.fa"; version = "2.14.1"; hash = "sha256-2Js7k3nvwJvxAjq3yoLn7PUY2S8+vXfgESwU4SbvjaA="; })
26
26
-
(fetchNuGet { pname = "Humanizer.Core.fi-FI"; version = "2.14.1"; hash = "sha256-jOWo43r3dhiBsV9cCoDfqK/YqWj5LejZsnfkG6mlkpA="; })
27
27
-
(fetchNuGet { pname = "Humanizer.Core.fr"; version = "2.14.1"; hash = "sha256-WCbA+f4B3g/ml7KrkHkzpU2Fj38HtWc/ujoVY5F3lk4="; })
28
28
-
(fetchNuGet { pname = "Humanizer.Core.fr-BE"; version = "2.14.1"; hash = "sha256-GydVmoEy+lwEQ1nM39QXSRhYNchqM47p7qhUEimN4Cw="; })
29
29
-
(fetchNuGet { pname = "Humanizer.Core.he"; version = "2.14.1"; hash = "sha256-MMf3qjJ+yzxjMxOR7wMWf+eErxWLqpsdWKFhjNCOsyM="; })
30
30
-
(fetchNuGet { pname = "Humanizer.Core.hr"; version = "2.14.1"; hash = "sha256-kBv2I9ns6L6D4XfXfyZS1VM6+YwF4yUkCmCA5zqvsok="; })
31
31
-
(fetchNuGet { pname = "Humanizer.Core.hu"; version = "2.14.1"; hash = "sha256-vRje+kxqOsl1JCXAE0yDKvauUumzuEhNcnhNsdIdgVM="; })
32
32
-
(fetchNuGet { pname = "Humanizer.Core.hy"; version = "2.14.1"; hash = "sha256-UL7PsK4msT5c96lk70/bVAxN63B71l8VOFtvuJQH9a0="; })
33
33
-
(fetchNuGet { pname = "Humanizer.Core.id"; version = "2.14.1"; hash = "sha256-nIl64gCuZh4D527qI2hfQRvzt1mTJUCDGMIZwpS3C/A="; })
34
34
-
(fetchNuGet { pname = "Humanizer.Core.is"; version = "2.14.1"; hash = "sha256-38vUQ1aVtlhK15kP9ZlDO0Nl0DcOA5iHx6F2SPN1gYM="; })
35
35
-
(fetchNuGet { pname = "Humanizer.Core.it"; version = "2.14.1"; hash = "sha256-4ne0VRNi9OAj3bGCQgCy1BNYKMizoHykJ/lchmCsWdc="; })
36
36
-
(fetchNuGet { pname = "Humanizer.Core.ja"; version = "2.14.1"; hash = "sha256-oAilMM8J6LumV6qv3gSIBNTm7u2L4vV38cQXtME3PhM="; })
37
37
-
(fetchNuGet { pname = "Humanizer.Core.ko-KR"; version = "2.14.1"; hash = "sha256-b70HQl2IWVPATtaYGDyJ+Z6ioPtrM53vXzfTCHYgxpQ="; })
38
38
-
(fetchNuGet { pname = "Humanizer.Core.ku"; version = "2.14.1"; hash = "sha256-8LiEH7MaapMtkHFMj7Y3pG+g0QYuIa5gD3VR9nYQn+k="; })
39
39
-
(fetchNuGet { pname = "Humanizer.Core.lv"; version = "2.14.1"; hash = "sha256-zyCsE5cD++u5shNIqCQUd+66FkUWOl+NfFrs2JduCaQ="; })
40
40
-
(fetchNuGet { pname = "Humanizer.Core.ms-MY"; version = "2.14.1"; hash = "sha256-pSdZLUi9oWo78nBh2DJunPhDR7THdZSZP0msCVbPsrY="; })
41
41
-
(fetchNuGet { pname = "Humanizer.Core.mt"; version = "2.14.1"; hash = "sha256-mkX2reEvNpx9w6gtZw+6bkrnj3Di1qgVDMr9q0IeKCw="; })
42
42
-
(fetchNuGet { pname = "Humanizer.Core.nb"; version = "2.14.1"; hash = "sha256-QvYJHqjO/SrelWYgtm8Sc7axs7J8wbJE+GbTgVw5LYs="; })
43
43
-
(fetchNuGet { pname = "Humanizer.Core.nb-NO"; version = "2.14.1"; hash = "sha256-YW8y2XkmHjwqf2fztNB3rsn3+CgslF1TclITwp0fA9g="; })
44
44
-
(fetchNuGet { pname = "Humanizer.Core.nl"; version = "2.14.1"; hash = "sha256-bQM7aXNQMBY+65NfMVQz/xYz9Ad2JC+ryXoB4lcYgmA="; })
45
45
-
(fetchNuGet { pname = "Humanizer.Core.pl"; version = "2.14.1"; hash = "sha256-IrPxHI4uQvBeMM9/8PaNueKwVkbN+1zFQlNWRjNfXEA="; })
46
46
-
(fetchNuGet { pname = "Humanizer.Core.pt"; version = "2.14.1"; hash = "sha256-XrlC15HNJFmDwLpHIUHb3Bec9A79msQCRB9Dvz8w4l0="; })
47
47
-
(fetchNuGet { pname = "Humanizer.Core.ro"; version = "2.14.1"; hash = "sha256-llXtfq4Tr5V2Q4dVD7J0IKITtpiWrFs50DAtJhcSuRI="; })
48
48
-
(fetchNuGet { pname = "Humanizer.Core.ru"; version = "2.14.1"; hash = "sha256-lD0dB3mkbFfGExwVWZk6fv24MyQQ8Cdv5OrleuZeChg="; })
49
49
-
(fetchNuGet { pname = "Humanizer.Core.sk"; version = "2.14.1"; hash = "sha256-EmyE+wssZwY6tAuEiFXGn5/yzVMZe7QEuTjOcByOXaA="; })
50
50
-
(fetchNuGet { pname = "Humanizer.Core.sl"; version = "2.14.1"; hash = "sha256-sWWxh7KZ8Y3Ps6GbBOHbU2GMsNZfkM+BOnUChf3fz4s="; })
51
51
-
(fetchNuGet { pname = "Humanizer.Core.sr"; version = "2.14.1"; hash = "sha256-/bA3LULRFn5WYmCscr5R5vaFRjeHC0xjNiF7PXEJ8r0="; })
52
52
-
(fetchNuGet { pname = "Humanizer.Core.sr-Latn"; version = "2.14.1"; hash = "sha256-43+o6oj0UNRJKiFoh57MGPSzlsWAq0eRtzlCrewDmVM="; })
53
53
-
(fetchNuGet { pname = "Humanizer.Core.sv"; version = "2.14.1"; hash = "sha256-9lXrHveKDs1y/W3Qxd+MVcohhKEU7zNPx21GBVPp/rA="; })
54
54
-
(fetchNuGet { pname = "Humanizer.Core.th-TH"; version = "2.14.1"; hash = "sha256-ldCsXINSvL2xom0SCtVQy+qX1IN5//EUoyIOwXiJ3k8="; })
55
55
-
(fetchNuGet { pname = "Humanizer.Core.tr"; version = "2.14.1"; hash = "sha256-VZnO1vMXiR7egKEKJ6lBsj7eNgxhFzakFWsYYRW4u2U="; })
56
56
-
(fetchNuGet { pname = "Humanizer.Core.uk"; version = "2.14.1"; hash = "sha256-rdvleUrKbj3c06A0O2MkgAZLtXLro9SPB1YqAGE1Vyg="; })
57
57
-
(fetchNuGet { pname = "Humanizer.Core.uz-Cyrl-UZ"; version = "2.14.1"; hash = "sha256-Qso1Iz9MTLs63x4F00kK31TZAN4AoFaFsuVzM+1z38k="; })
58
58
-
(fetchNuGet { pname = "Humanizer.Core.uz-Latn-UZ"; version = "2.14.1"; hash = "sha256-sVnkZTuEaHfMJIAZmSCqsspnKkYxK9eVBQZnAAqHNW4="; })
59
59
-
(fetchNuGet { pname = "Humanizer.Core.vi"; version = "2.14.1"; hash = "sha256-5wDt72+HdNN3mt/iJkxV9LaH13Jc1qr1vB4Lz8ahIPs="; })
60
60
-
(fetchNuGet { pname = "Humanizer.Core.zh-CN"; version = "2.14.1"; hash = "sha256-Z3qfFWyovcVT4Hqy51lgW2xGwyfI//Yfv90E0Liy1sw="; })
61
61
-
(fetchNuGet { pname = "Humanizer.Core.zh-Hans"; version = "2.14.1"; hash = "sha256-BTGkMEkQYJKRp858EU7hwNOdsHRT+w6vAMa6H8JIyX4="; })
62
62
-
(fetchNuGet { pname = "Humanizer.Core.zh-Hant"; version = "2.14.1"; hash = "sha256-N3D1z5aoGwAZ6+ZxrWMtXgacvQcgDG+aLrQQI9uysmM="; })
63
63
-
(fetchNuGet { pname = "JetBrains.Annotations"; version = "2023.3.0"; hash = "sha256-/Eykez68qYMO5mlmUelzAke8aJehyp8fspO5Z+yt5G4="; })
64
64
-
(fetchNuGet { pname = "JetBrains.ReSharper.GlobalTools"; version = "2023.3.3"; hash = "sha256-Nn3imJvnqLe02gR1GyUHYH4+XkrNnhLy9dyCjJCkB7M="; })
65
65
-
(fetchNuGet { pname = "managed-midi"; version = "1.10.1"; hash = "sha256-iuqpyp8vM7ZjtcM9KNqx9se/UhQHsYrQ+lxL4EntyXU="; })
66
66
-
(fetchNuGet { pname = "Markdig"; version = "0.23.0"; hash = "sha256-4Kjeb54eyas0pCMbTHGPK13vW9zEnFyZ5VStwwtClq8="; })
67
67
-
(fetchNuGet { pname = "MessagePack"; version = "2.5.187"; hash = "sha256-3sBINhdkGdKPKTKxE4YuLGFHg6stAEHUIboR1g7eXgA="; })
68
68
-
(fetchNuGet { pname = "MessagePack.Annotations"; version = "2.5.187"; hash = "sha256-SQCJa6u8coWMptbR9iQJLjoi/YkT9t0kJNbojh9vUPw="; })
69
69
-
(fetchNuGet { pname = "Microsoft.AspNetCore.Connections.Abstractions"; version = "8.0.10"; hash = "sha256-xnc9qaYB07MAlqCswm6kUX0HMAKcBhxWXClPN2bB8ZA="; })
70
70
-
(fetchNuGet { pname = "Microsoft.AspNetCore.Http.Connections.Client"; version = "8.0.10"; hash = "sha256-yp0hgu8kyTE2zU156TWmRUpW24SAaKJm7he4MnEuiG8="; })
71
71
-
(fetchNuGet { pname = "Microsoft.AspNetCore.Http.Connections.Common"; version = "8.0.10"; hash = "sha256-ulLp+Rni007Wq9n5w2BA8DX7uG1HhYNF/KV5TN3SKSs="; })
72
72
-
(fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Client"; version = "8.0.10"; hash = "sha256-GEiMdjLvuc0Xmxj9/zKo3b4Y0Vh5jAjfZqPs6vwj5o0="; })
73
73
-
(fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Client.Core"; version = "8.0.10"; hash = "sha256-vTk+Smuu0Pi/MmmHZtIjdyBsZuC0gWsL/63ovmtMRWQ="; })
74
74
-
(fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Common"; version = "8.0.10"; hash = "sha256-LlOfWupgG9pXpNXOfHo3/tmS9ZZy3hziAEqI1X42sh4="; })
75
75
-
(fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Protocols.Json"; version = "8.0.10"; hash = "sha256-ZWDnjvZLr0FK91cyeJxtAJk2Cf+YW+6SZTW+zEIozGc="; })
76
76
-
(fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Protocols.MessagePack"; version = "8.0.10"; hash = "sha256-xgxjqns/uNbzisoPX1cAmqMMrRCHxcon+l8I5TLUKGo="; })
77
77
-
(fetchNuGet { pname = "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson"; version = "8.0.10"; hash = "sha256-HgRvpIaMuEUMJGGuUCxxEigHv/Tlb2/Pd+OQJBHE5DU="; })
78
78
-
(fetchNuGet { pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers"; version = "3.3.4"; hash = "sha256-YPTHTZ8xRPMLADdcVYRO/eq3O9uZjsD+OsGRZE+0+e8="; })
79
79
-
(fetchNuGet { pname = "Microsoft.CSharp"; version = "4.5.0"; hash = "sha256-dAhj/CgXG5VIy2dop1xplUsLje7uBPFjxasz9rdFIgY="; })
80
80
-
(fetchNuGet { pname = "Microsoft.Data.Sqlite.Core"; version = "8.0.10"; hash = "sha256-YBjY88KAC4ShfcGXcNHL6y1A9NH2xvk4d/qTMfuLuoE="; })
81
81
-
(fetchNuGet { pname = "Microsoft.Diagnostics.NETCore.Client"; version = "0.2.61701"; hash = "sha256-ITNO2LJYyWhYs3A/iqfoaW6ddvkuuBVXQ5YSKQ8wgcU="; })
82
82
-
(fetchNuGet { pname = "Microsoft.Diagnostics.Runtime"; version = "2.0.161401"; hash = "sha256-ke9rovup7UFVz2T6HYtHawwrs/XARLDQOwCysC2qDAs="; })
83
83
-
(fetchNuGet { pname = "Microsoft.DotNet.PlatformAbstractions"; version = "2.0.3"; hash = "sha256-qRoDjAl3I8hYH6tQw06UVn5cf55avtTCjRDUzjUJAgg="; })
84
84
-
(fetchNuGet { pname = "Microsoft.Extensions.Configuration.Abstractions"; version = "8.0.0"; hash = "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o="; })
85
85
-
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "6.0.0-rc.1.21451.13"; hash = "sha256-zJQsAVTfA46hUV5q67BslsVn9yehYBclD06wg2UhyWQ="; })
86
86
-
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection"; version = "8.0.1"; hash = "sha256-O9g0jWS+jfGoT3yqKwZYJGL+jGSIeSbwmvomKDC3hTU="; })
87
87
-
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "6.0.0"; hash = "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4="; })
88
88
-
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "6.0.0-rc.1.21451.13"; hash = "sha256-oTYhI+lMwaQ7l9CfDHeNMBAdfofv4kHC0vqBZ7oJr4U="; })
89
89
-
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "8.0.0"; hash = "sha256-75KzEGWjbRELczJpCiJub+ltNUMMbz5A/1KQU+5dgP8="; })
90
90
-
(fetchNuGet { pname = "Microsoft.Extensions.DependencyInjection.Abstractions"; version = "8.0.2"; hash = "sha256-UfLfEQAkXxDaVPC7foE/J3FVEXd31Pu6uQIhTic3JgY="; })
91
91
-
(fetchNuGet { pname = "Microsoft.Extensions.DependencyModel"; version = "2.0.3"; hash = "sha256-itpwRYzmJZUt2kYJrrcq2IOwqqOskdbE3HMmD8GV/jY="; })
92
92
-
(fetchNuGet { pname = "Microsoft.Extensions.Features"; version = "8.0.10"; hash = "sha256-mJXz6jSbr1xG8L3cILyODzX21uh5o4Qy9yWYgZ6okxM="; })
93
93
-
(fetchNuGet { pname = "Microsoft.Extensions.Logging"; version = "8.0.1"; hash = "sha256-vkfVw4tQEg86Xg18v6QO0Qb4Ysz0Njx57d1XcNuj6IU="; })
94
94
-
(fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "8.0.0"; hash = "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4="; })
95
95
-
(fetchNuGet { pname = "Microsoft.Extensions.Logging.Abstractions"; version = "8.0.2"; hash = "sha256-cHpe8X2BgYa5DzulZfq24rg8O2K5Lmq2OiLhoyAVgJc="; })
96
96
-
(fetchNuGet { pname = "Microsoft.Extensions.ObjectPool"; version = "5.0.11"; hash = "sha256-xNqhEqOm7tI3nxdlbAJ9NSm5/WbkRSUCrdDM+syJ9EQ="; })
97
97
-
(fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "6.0.0"; hash = "sha256-DxnEgGiCXpkrxFkxXtOXqwaiAtoIjA8VSSWCcsW0FwE="; })
98
98
-
(fetchNuGet { pname = "Microsoft.Extensions.Options"; version = "8.0.2"; hash = "sha256-AjcldddddtN/9aH9pg7ClEZycWtFHLi9IPe1GGhNQys="; })
99
99
-
(fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "6.0.0"; hash = "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4="; })
100
100
-
(fetchNuGet { pname = "Microsoft.Extensions.Primitives"; version = "8.0.0"; hash = "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo="; })
101
101
-
(fetchNuGet { pname = "Microsoft.NET.StringTools"; version = "17.6.3"; hash = "sha256-H2Qw8x47WyFOd/VmgRmGMc+uXySgUv68UISgK8Frsjw="; })
102
102
-
(fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.0.1"; hash = "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU="; })
103
103
-
(fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "1.1.0"; hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM="; })
104
104
-
(fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "2.0.0"; hash = "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro="; })
105
105
-
(fetchNuGet { pname = "Microsoft.NETCore.Platforms"; version = "5.0.0"; hash = "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c="; })
106
106
-
(fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.0.1"; hash = "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4="; })
107
107
-
(fetchNuGet { pname = "Microsoft.NETCore.Targets"; version = "1.1.0"; hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ="; })
108
108
-
(fetchNuGet { pname = "Microsoft.Toolkit.HighPerformance"; version = "7.1.2"; hash = "sha256-qzNmWXboGnrGTRESKFv0WZ5oxRg30XDODxpRgCsoiaI="; })
109
109
-
(fetchNuGet { pname = "Microsoft.Win32.Primitives"; version = "4.3.0"; hash = "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg="; })
110
110
-
(fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "4.5.0"; hash = "sha256-WMBXsIb0DgPFPaFkNVxY9b9vcMxPqtgFgijKYMJfV/0="; })
111
111
-
(fetchNuGet { pname = "Microsoft.Win32.Registry"; version = "5.0.0"; hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA="; })
112
112
-
(fetchNuGet { pname = "MongoDB.Bson"; version = "2.19.1"; hash = "sha256-HUdPLxxzJNYQm22NEmwJoq0B6LtRK8d4NBstqi0t9uw="; })
113
113
-
(fetchNuGet { pname = "NativeLibraryLoader"; version = "1.0.13"; hash = "sha256-ENubvwbFy0ZB8I88xHTRkkjG8lrQ98jQ33IQoe4rcaM="; })
114
114
-
(fetchNuGet { pname = "NETStandard.Library"; version = "1.6.1"; hash = "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw="; })
115
115
-
(fetchNuGet { pname = "NETStandard.Library"; version = "2.0.0"; hash = "sha256-Pp7fRylai8JrE1O+9TGfIEJrAOmnWTJRLWE+qJBahK0="; })
116
116
-
(fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.1"; hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo="; })
117
117
-
(fetchNuGet { pname = "Newtonsoft.Json"; version = "13.0.3"; hash = "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc="; })
118
118
-
(fetchNuGet { pname = "NuGet.Common"; version = "5.11.0"; hash = "sha256-IzeAfwDJpgTceOZyXHDzlUtMonmKOhfabpLVkpk2rqo="; })
119
119
-
(fetchNuGet { pname = "NuGet.Configuration"; version = "5.11.0"; hash = "sha256-dJS5EgM26Aq2ncNxF7p7iLMgdYNKg3/t+TL5fmBeN+k="; })
120
120
-
(fetchNuGet { pname = "NuGet.DependencyResolver.Core"; version = "5.11.0"; hash = "sha256-2cZjxu3X83EpNervpq0v2KAwAO+3khDkPyt0irbrlHo="; })
121
121
-
(fetchNuGet { pname = "NuGet.Frameworks"; version = "5.11.0"; hash = "sha256-n+hxcrf+sXM80Tv9YH9x4+hwTslVidFq4tjBNPAzYnM="; })
122
122
-
(fetchNuGet { pname = "NuGet.LibraryModel"; version = "5.11.0"; hash = "sha256-fgWFdWQiYfHgPmydGwMAGBda39S39iN3XgSAZgjtbKI="; })
123
123
-
(fetchNuGet { pname = "NuGet.Packaging"; version = "5.11.0"; hash = "sha256-u4cQk7izZ+ULh9iO5pndqg+8cL7g2MbMXmd4i6C2r2c="; })
124
124
-
(fetchNuGet { pname = "NuGet.ProjectModel"; version = "5.11.0"; hash = "sha256-Bdwsy96KpU44Dr6JVKPOhOmiZYZ/uMKQ0Ug2nKZiDcQ="; })
125
125
-
(fetchNuGet { pname = "NuGet.Protocol"; version = "5.11.0"; hash = "sha256-q11PcqNtfTKavfr1SPtmJTEx3qwHrXW+MrCw6Y3aNxA="; })
126
126
-
(fetchNuGet { pname = "NuGet.Versioning"; version = "5.11.0"; hash = "sha256-eBfn91Kr7Vv+js8kvKrnai2W3ZN7dY+7u9ivHGwoIxA="; })
127
127
-
(fetchNuGet { pname = "NuGet.Versioning"; version = "6.12.1"; hash = "sha256-f/ejCuzCAwKs4N4Ec6yf2RovrhBT0nj0hRDP+03/Iy4="; })
128
128
-
(fetchNuGet { pname = "NUnit"; version = "3.14.0"; hash = "sha256-CuP/q5HovPWfAW3Cty/QxRi7VpjykJ3TDLq5TENI6KY="; })
129
129
-
(fetchNuGet { pname = "NVika"; version = "3.0.0"; hash = "sha256-zgg8aUuIFQ4EZHScy+YHmkwDE9K5vzUJF8s9aiJNFuw="; })
130
130
-
(fetchNuGet { pname = "OpenTabletDriver"; version = "0.6.4"; hash = "sha256-tTk8ezYrMs/Kj+snMvWq9Ae7WLU4pq5NpFHEZV8WjJM="; })
131
131
-
(fetchNuGet { pname = "OpenTabletDriver.Configurations"; version = "0.6.4"; hash = "sha256-9QqvSck5Ofn3clWQzwGoTHX6k5d1nUxjD56UeIBx+1A="; })
132
132
-
(fetchNuGet { pname = "OpenTabletDriver.Native"; version = "0.6.4"; hash = "sha256-4vNnamnIVNpVBOPXyyJcbj0pe/aixGLmvXzq3vkUXMs="; })
133
133
-
(fetchNuGet { pname = "OpenTabletDriver.Plugin"; version = "0.6.4"; hash = "sha256-9jORi42+oYFdNEin9lYWMBGrktyTBMAl5sfr1jxAbVE="; })
134
134
-
(fetchNuGet { pname = "PolySharp"; version = "1.10.0"; hash = "sha256-30IBYsy7zYtEHDZGw6K9asFq2dXbW+CrBMpMCEdkERs="; })
135
135
-
(fetchNuGet { pname = "ppy.LocalisationAnalyser"; version = "2024.802.0"; hash = "sha256-vyRWbdPUp5n8hJPJReU9LUy2o/bwwLT1po9f2M16tMA="; })
136
136
-
(fetchNuGet { pname = "ppy.LocalisationAnalyser.Tools"; version = "2024.802.0"; hash = "sha256-bniBSY8rS005OHO/ixn2NFM0/KIMiawHyMSXhlAEqwc="; })
137
137
-
(fetchNuGet { pname = "ppy.ManagedBass"; version = "2022.1216.0"; hash = "sha256-yG3IWNixzv+kFgYw6yAkjw9PWMpyR0tvrkFsgWGQ1qY="; })
138
138
-
(fetchNuGet { pname = "ppy.ManagedBass.Fx"; version = "2022.1216.0"; hash = "sha256-VfIbFhCDsCRZW5bCbt8MSmE2kAlcKxxx6vdFOus4he8="; })
139
139
-
(fetchNuGet { pname = "ppy.ManagedBass.Mix"; version = "2022.1216.0"; hash = "sha256-qUEGJHoYfDvHrpuXdVaiSoV2iVVh9X0yEB41u96+q6A="; })
140
140
-
(fetchNuGet { pname = "ppy.ManagedBass.Wasapi"; version = "2022.1216.0"; hash = "sha256-HzhypEVJA+6h3aBB95zNeGbmzEIRc5435Eh9nYpjVkA="; })
141
141
-
(fetchNuGet { pname = "ppy.osu.Framework"; version = "2024.1115.0"; hash = "sha256-liRLzcqMRtWNau6g5GCMyy/SMSr1P9OrFbX4bQ/suj4="; })
142
142
-
(fetchNuGet { pname = "ppy.osu.Framework.NativeLibs"; version = "2024.809.1-nativelibs"; hash = "sha256-F7xd66bCEDgEjYgqmx21lYde+ebCsX/E2fuqWXH4xyU="; })
143
143
-
(fetchNuGet { pname = "ppy.osu.Framework.SourceGeneration"; version = "2023.720.0"; hash = "sha256-XXV/qBJ9vEVF15fcOlDyoJ8j47azuSJaXHEgsn3fOwA="; })
144
144
-
(fetchNuGet { pname = "ppy.osu.Game.Resources"; version = "2024.1106.0"; hash = "sha256-U9Esfl6U08//21VwWr4CBt1CPYGsB9I7ssfBGkQkLOI="; })
145
145
-
(fetchNuGet { pname = "ppy.osuTK.NS20"; version = "1.0.211"; hash = "sha256-Xu4uiYs1pqIXcBWeTBIc8OIqbLmH6MvaY6Dim4ZNikg="; })
146
146
-
(fetchNuGet { pname = "ppy.SDL2-CS"; version = "1.0.741-alpha"; hash = "sha256-sdX+MoMlIPUyi4yEUVHtqxKWF/VK04e2VaUavmgBEJU="; })
147
147
-
(fetchNuGet { pname = "ppy.SDL3-CS"; version = "2024.1022.0"; hash = "sha256-+i2YGAK9AqWpGsAcJSvVTSnGpZhItamrPiwDo9Mm4bk="; })
148
148
-
(fetchNuGet { pname = "ppy.Veldrid"; version = "4.9.62-gca0239da6b"; hash = "sha256-mGlMQbp2/ewA7PzamEeMA1pbboC73iAIARhK4MPrwO4="; })
149
149
-
(fetchNuGet { pname = "ppy.Veldrid.MetalBindings"; version = "4.9.62-gca0239da6b"; hash = "sha256-8jkbU2QV4HV8RU1vnSNtP8kNEhDWbTb3Dr2cl8w/T6A="; })
150
150
-
(fetchNuGet { pname = "ppy.Veldrid.OpenGLBindings"; version = "4.9.62-gca0239da6b"; hash = "sha256-I81to2x5D4LlIJN80d5DbqcU0jPTVSPoc0tvL15YG6I="; })
151
151
-
(fetchNuGet { pname = "ppy.Veldrid.SPIRV"; version = "1.0.15-gfbb03d21c2"; hash = "sha256-rnl6+U4E3BJVYTWtEjOx7fDVcJJNBP8MOisoGVLT7vA="; })
152
152
-
(fetchNuGet { pname = "ppy.Vk"; version = "1.0.26"; hash = "sha256-YA+U8RhOrGdtw3tlluiv1+M7FIMB0zQMnPVY8ynOxvE="; })
153
153
-
(fetchNuGet { pname = "Realm"; version = "11.5.0"; hash = "sha256-ykC2fyOh4XeRJyLoO3jQQC4sZcFhSms7wswSO6Iu8mQ="; })
154
154
-
(fetchNuGet { pname = "Realm.PlatformHelpers"; version = "11.5.0"; hash = "sha256-6QUO6jQC3VwxKsNY24WSgLNtOwcaGjQDtP0S4DSt670="; })
155
155
-
(fetchNuGet { pname = "Remotion.Linq"; version = "2.2.0"; hash = "sha256-rpPp2xyHj2JsTy6k3FAhljvl85PNa3R9jrVy3UG0hvg="; })
156
156
-
(fetchNuGet { pname = "runtime.any.System.Collections"; version = "4.3.0"; hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8="; })
157
157
-
(fetchNuGet { pname = "runtime.any.System.Diagnostics.Tools"; version = "4.3.0"; hash = "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I="; })
158
158
-
(fetchNuGet { pname = "runtime.any.System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI="; })
159
159
-
(fetchNuGet { pname = "runtime.any.System.Globalization"; version = "4.3.0"; hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU="; })
160
160
-
(fetchNuGet { pname = "runtime.any.System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4="; })
161
161
-
(fetchNuGet { pname = "runtime.any.System.IO"; version = "4.3.0"; hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE="; })
162
162
-
(fetchNuGet { pname = "runtime.any.System.Reflection"; version = "4.3.0"; hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk="; })
163
163
-
(fetchNuGet { pname = "runtime.any.System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8="; })
164
164
-
(fetchNuGet { pname = "runtime.any.System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ="; })
165
165
-
(fetchNuGet { pname = "runtime.any.System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4="; })
166
166
-
(fetchNuGet { pname = "runtime.any.System.Runtime"; version = "4.3.0"; hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM="; })
167
167
-
(fetchNuGet { pname = "runtime.any.System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4="; })
168
168
-
(fetchNuGet { pname = "runtime.any.System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA="; })
169
169
-
(fetchNuGet { pname = "runtime.any.System.Text.Encoding"; version = "4.3.0"; hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs="; })
170
170
-
(fetchNuGet { pname = "runtime.any.System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM="; })
171
171
-
(fetchNuGet { pname = "runtime.any.System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4="; })
172
172
-
(fetchNuGet { pname = "runtime.any.System.Threading.Timer"; version = "4.3.0"; hash = "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs="; })
173
173
-
(fetchNuGet { pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps="; })
174
174
-
(fetchNuGet { pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I="; })
175
175
-
(fetchNuGet { pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA="; })
176
176
-
(fetchNuGet { pname = "runtime.native.System"; version = "4.0.0"; hash = "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894="; })
177
177
-
(fetchNuGet { pname = "runtime.native.System"; version = "4.3.0"; hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y="; })
178
178
-
(fetchNuGet { pname = "runtime.native.System.IO.Compression"; version = "4.3.0"; hash = "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8="; })
179
179
-
(fetchNuGet { pname = "runtime.native.System.Net.Http"; version = "4.3.0"; hash = "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg="; })
180
180
-
(fetchNuGet { pname = "runtime.native.System.Net.Security"; version = "4.3.0"; hash = "sha256-I8vYld/7WtU2/rrD4XfSRgpO/DY3qXghG14VQjiU2DY="; })
181
181
-
(fetchNuGet { pname = "runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw="; })
182
182
-
(fetchNuGet { pname = "runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I="; })
183
183
-
(fetchNuGet { pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM="; })
184
184
-
(fetchNuGet { pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4="; })
185
185
-
(fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple"; version = "4.3.0"; hash = "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM="; })
186
186
-
(fetchNuGet { pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0="; })
187
187
-
(fetchNuGet { pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4="; })
188
188
-
(fetchNuGet { pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g="; })
189
189
-
(fetchNuGet { pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc="; })
190
190
-
(fetchNuGet { pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw="; })
191
191
-
(fetchNuGet { pname = "runtime.unix.Microsoft.Win32.Primitives"; version = "4.3.0"; hash = "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg="; })
192
192
-
(fetchNuGet { pname = "runtime.unix.System.Console"; version = "4.3.0"; hash = "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190="; })
193
193
-
(fetchNuGet { pname = "runtime.unix.System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI="; })
194
194
-
(fetchNuGet { pname = "runtime.unix.System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I="; })
195
195
-
(fetchNuGet { pname = "runtime.unix.System.Net.Primitives"; version = "4.3.0"; hash = "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0="; })
196
196
-
(fetchNuGet { pname = "runtime.unix.System.Net.Sockets"; version = "4.3.0"; hash = "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4="; })
197
197
-
(fetchNuGet { pname = "runtime.unix.System.Private.Uri"; version = "4.3.0"; hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs="; })
198
198
-
(fetchNuGet { pname = "runtime.unix.System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4="; })
199
199
-
(fetchNuGet { pname = "Sentry"; version = "4.13.0"; hash = "sha256-JeyxQFOic72eQ41Guy4NbPy/A4wXvA812229vpLcLCM="; })
200
200
-
(fetchNuGet { pname = "SharpCompress"; version = "0.38.0"; hash = "sha256-bQL3kazuqbuqn+Csy9RYMMUsNMtqkGXF7x32s787UBM="; })
201
201
-
(fetchNuGet { pname = "SharpFNT"; version = "2.0.0"; hash = "sha256-oNeQKFY4LcTdc3s78WxzODYNylrZmSg3BpMtmOBj6q0="; })
202
202
-
(fetchNuGet { pname = "SharpGen.Runtime"; version = "2.0.0-beta.13"; hash = "sha256-CB4681QJaYoL3MCFn4SwgCWxtFf7T/oZQQ6+pLT5oIg="; })
203
203
-
(fetchNuGet { pname = "SharpGen.Runtime.COM"; version = "2.0.0-beta.13"; hash = "sha256-xoQQrf8RIeNwx4aZjXDECd2ROZCj3SFk8q+eJ64cu9I="; })
204
204
-
(fetchNuGet { pname = "SixLabors.ImageSharp"; version = "3.1.5"; hash = "sha256-3UehX9T+I81nfgv2dTHlpoPgYzXFk7kHr1mmlQOCBfw="; })
205
205
-
(fetchNuGet { pname = "SQLitePCLRaw.bundle_e_sqlite3"; version = "2.1.10"; hash = "sha256-kZIWjH/TVTXRIsHPZSl7zoC4KAMBMWmgFYGLrQ15Occ="; })
206
206
-
(fetchNuGet { pname = "SQLitePCLRaw.core"; version = "2.1.10"; hash = "sha256-gpZcYwiJVCVwCyJu0R6hYxyMB39VhJDmYh9LxcIVAA8="; })
207
207
-
(fetchNuGet { pname = "SQLitePCLRaw.core"; version = "2.1.6"; hash = "sha256-RxWjm52PdmMV98dgDy0BCpF988+BssRZUgALLv7TH/E="; })
208
208
-
(fetchNuGet { pname = "SQLitePCLRaw.lib.e_sqlite3"; version = "2.1.10"; hash = "sha256-m2v2RQWol+1MNGZsx+G2N++T9BNtQGLLHXUjcwkdCnc="; })
209
209
-
(fetchNuGet { pname = "SQLitePCLRaw.provider.e_sqlite3"; version = "2.1.10"; hash = "sha256-MLs3jiETLZ7k/TgkHynZegCWuAbgHaDQKTPB0iNv7Fg="; })
210
210
-
(fetchNuGet { pname = "StbiSharp"; version = "1.1.0"; hash = "sha256-oP64y/hYgoYo+heDFzmt6sWukTF0lDDFkB16eyoQfHE="; })
211
211
-
(fetchNuGet { pname = "System.AppContext"; version = "4.1.0"; hash = "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs="; })
212
212
-
(fetchNuGet { pname = "System.AppContext"; version = "4.3.0"; hash = "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg="; })
213
213
-
(fetchNuGet { pname = "System.Buffers"; version = "4.3.0"; hash = "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk="; })
214
214
-
(fetchNuGet { pname = "System.Buffers"; version = "4.5.1"; hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI="; })
215
215
-
(fetchNuGet { pname = "System.Collections"; version = "4.0.11"; hash = "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0="; })
216
216
-
(fetchNuGet { pname = "System.Collections"; version = "4.3.0"; hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc="; })
217
217
-
(fetchNuGet { pname = "System.Collections.Concurrent"; version = "4.3.0"; hash = "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI="; })
218
218
-
(fetchNuGet { pname = "System.Collections.Immutable"; version = "1.7.1"; hash = "sha256-WMMAUqoxT3J1gW9DI8v31VAuhwqTc4Posose5jq1BNo="; })
219
219
-
(fetchNuGet { pname = "System.ComponentModel.Annotations"; version = "5.0.0"; hash = "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg="; })
220
220
-
(fetchNuGet { pname = "System.Console"; version = "4.3.0"; hash = "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo="; })
221
221
-
(fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.0.11"; hash = "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4="; })
222
222
-
(fetchNuGet { pname = "System.Diagnostics.Debug"; version = "4.3.0"; hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM="; })
223
223
-
(fetchNuGet { pname = "System.Diagnostics.DiagnosticSource"; version = "4.3.0"; hash = "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw="; })
224
224
-
(fetchNuGet { pname = "System.Diagnostics.Tools"; version = "4.3.0"; hash = "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y="; })
225
225
-
(fetchNuGet { pname = "System.Diagnostics.Tracing"; version = "4.3.0"; hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q="; })
226
226
-
(fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.0.11"; hash = "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4="; })
227
227
-
(fetchNuGet { pname = "System.Dynamic.Runtime"; version = "4.3.0"; hash = "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU="; })
228
228
-
(fetchNuGet { pname = "System.Formats.Asn1"; version = "5.0.0"; hash = "sha256-9nL3dN4w/dZ49W1pCkTjRqZm6Dh0mMVExNungcBHrKs="; })
229
229
-
(fetchNuGet { pname = "System.Globalization"; version = "4.0.11"; hash = "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw="; })
230
230
-
(fetchNuGet { pname = "System.Globalization"; version = "4.3.0"; hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI="; })
231
231
-
(fetchNuGet { pname = "System.Globalization.Calendars"; version = "4.3.0"; hash = "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc="; })
232
232
-
(fetchNuGet { pname = "System.Globalization.Extensions"; version = "4.3.0"; hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk="; })
233
233
-
(fetchNuGet { pname = "System.IO"; version = "4.1.0"; hash = "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw="; })
234
234
-
(fetchNuGet { pname = "System.IO"; version = "4.3.0"; hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY="; })
235
235
-
(fetchNuGet { pname = "System.IO.Compression"; version = "4.3.0"; hash = "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA="; })
236
236
-
(fetchNuGet { pname = "System.IO.Compression.ZipFile"; version = "4.3.0"; hash = "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs="; })
237
237
-
(fetchNuGet { pname = "System.IO.FileSystem"; version = "4.0.1"; hash = "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0="; })
238
238
-
(fetchNuGet { pname = "System.IO.FileSystem"; version = "4.3.0"; hash = "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw="; })
239
239
-
(fetchNuGet { pname = "System.IO.FileSystem.Primitives"; version = "4.3.0"; hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg="; })
240
240
-
(fetchNuGet { pname = "System.IO.Packaging"; version = "8.0.1"; hash = "sha256-xf0BAfqQvITompBsvfpxiLts/6sRQEzdjNA3f/q/vY4="; })
241
241
-
(fetchNuGet { pname = "System.IO.Pipelines"; version = "8.0.0"; hash = "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE="; })
242
242
-
(fetchNuGet { pname = "System.Linq"; version = "4.1.0"; hash = "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794="; })
243
243
-
(fetchNuGet { pname = "System.Linq"; version = "4.3.0"; hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A="; })
244
244
-
(fetchNuGet { pname = "System.Linq.Expressions"; version = "4.1.0"; hash = "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4="; })
245
245
-
(fetchNuGet { pname = "System.Linq.Expressions"; version = "4.3.0"; hash = "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8="; })
246
246
-
(fetchNuGet { pname = "System.Linq.Queryable"; version = "4.0.1"; hash = "sha256-XOFRO+lyoxsWtIUJfg5JCqv9Gx35ASOc94WIR8ZMVoY="; })
247
247
-
(fetchNuGet { pname = "System.Memory"; version = "4.5.3"; hash = "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk="; })
248
248
-
(fetchNuGet { pname = "System.Memory"; version = "4.5.4"; hash = "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E="; })
249
249
-
(fetchNuGet { pname = "System.Memory"; version = "4.5.5"; hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI="; })
250
250
-
(fetchNuGet { pname = "System.Net.Http"; version = "4.3.0"; hash = "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q="; })
251
251
-
(fetchNuGet { pname = "System.Net.NameResolution"; version = "4.3.0"; hash = "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c="; })
252
252
-
(fetchNuGet { pname = "System.Net.Primitives"; version = "4.3.0"; hash = "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE="; })
253
253
-
(fetchNuGet { pname = "System.Net.Security"; version = "4.3.0"; hash = "sha256-B7laE1z1+ldbo6JkjlDjZynG5JiMZ/3uNHPHMP6LRak="; })
254
254
-
(fetchNuGet { pname = "System.Net.Sockets"; version = "4.3.0"; hash = "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus="; })
255
255
-
(fetchNuGet { pname = "System.Net.WebHeaderCollection"; version = "4.3.0"; hash = "sha256-wpRP3D/2YjpFmqU7Q42L/+/hChEVMlwU1sjysGVrQ1c="; })
256
256
-
(fetchNuGet { pname = "System.Net.WebSockets"; version = "4.3.0"; hash = "sha256-l3h3cF1cCC9zMhWLKSDnZBZvFADUd0Afe2+iAwBA0r0="; })
257
257
-
(fetchNuGet { pname = "System.Net.WebSockets.Client"; version = "4.3.2"; hash = "sha256-MwNKwIIpBJhC4Na6EYWMmVyPCa064Yp1aL0opx1FfoA="; })
258
258
-
(fetchNuGet { pname = "System.Numerics.Tensors"; version = "8.0.0"; hash = "sha256-rXTD0dhqJyk5oK54MIdsq3qJ1NbeTByxyrdHq2thv0w="; })
259
259
-
(fetchNuGet { pname = "System.ObjectModel"; version = "4.0.12"; hash = "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s="; })
260
260
-
(fetchNuGet { pname = "System.ObjectModel"; version = "4.3.0"; hash = "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q="; })
261
261
-
(fetchNuGet { pname = "System.Private.Uri"; version = "4.3.0"; hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM="; })
262
262
-
(fetchNuGet { pname = "System.Reflection"; version = "4.1.0"; hash = "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs="; })
263
263
-
(fetchNuGet { pname = "System.Reflection"; version = "4.3.0"; hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY="; })
264
264
-
(fetchNuGet { pname = "System.Reflection.Emit"; version = "4.0.1"; hash = "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk="; })
265
265
-
(fetchNuGet { pname = "System.Reflection.Emit"; version = "4.3.0"; hash = "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU="; })
266
266
-
(fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.0.1"; hash = "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0="; })
267
267
-
(fetchNuGet { pname = "System.Reflection.Emit.ILGeneration"; version = "4.3.0"; hash = "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA="; })
268
268
-
(fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.0.1"; hash = "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g="; })
269
269
-
(fetchNuGet { pname = "System.Reflection.Emit.Lightweight"; version = "4.3.0"; hash = "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I="; })
270
270
-
(fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.0.1"; hash = "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ="; })
271
271
-
(fetchNuGet { pname = "System.Reflection.Extensions"; version = "4.3.0"; hash = "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk="; })
272
272
-
(fetchNuGet { pname = "System.Reflection.Metadata"; version = "1.8.1"; hash = "sha256-UpaoRYSGqMCk00NmMbCTYsqwMKJbEI8vg0TxlOqgvZ8="; })
273
273
-
(fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.0.1"; hash = "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0="; })
274
274
-
(fetchNuGet { pname = "System.Reflection.Primitives"; version = "4.3.0"; hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM="; })
275
275
-
(fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.1.0"; hash = "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4="; })
276
276
-
(fetchNuGet { pname = "System.Reflection.TypeExtensions"; version = "4.3.0"; hash = "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng="; })
277
277
-
(fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.0.1"; hash = "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw="; })
278
278
-
(fetchNuGet { pname = "System.Resources.ResourceManager"; version = "4.3.0"; hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo="; })
279
279
-
(fetchNuGet { pname = "System.Runtime"; version = "4.1.0"; hash = "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo="; })
280
280
-
(fetchNuGet { pname = "System.Runtime"; version = "4.3.0"; hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg="; })
281
281
-
(fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "4.7.1"; hash = "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U="; })
282
282
-
(fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0"; hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I="; })
283
283
-
(fetchNuGet { pname = "System.Runtime.CompilerServices.Unsafe"; version = "6.0.0-rc.1.21451.13"; hash = "sha256-BgiqR6Y555tJEBEqDT5+yHCyQy5Wv9bLKlKWcQFiq2w="; })
284
284
-
(fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.1.0"; hash = "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc="; })
285
285
-
(fetchNuGet { pname = "System.Runtime.Extensions"; version = "4.3.0"; hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o="; })
286
286
-
(fetchNuGet { pname = "System.Runtime.Handles"; version = "4.3.0"; hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms="; })
287
287
-
(fetchNuGet { pname = "System.Runtime.InteropServices"; version = "4.3.0"; hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI="; })
288
288
-
(fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.0.0"; hash = "sha256-5j53amb76A3SPiE3B0llT2XPx058+CgE7OXL4bLalT4="; })
289
289
-
(fetchNuGet { pname = "System.Runtime.InteropServices.RuntimeInformation"; version = "4.3.0"; hash = "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA="; })
290
290
-
(fetchNuGet { pname = "System.Runtime.Numerics"; version = "4.3.0"; hash = "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc="; })
291
291
-
(fetchNuGet { pname = "System.Security.AccessControl"; version = "4.5.0"; hash = "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM="; })
292
292
-
(fetchNuGet { pname = "System.Security.AccessControl"; version = "5.0.0"; hash = "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54="; })
293
293
-
(fetchNuGet { pname = "System.Security.Claims"; version = "4.3.0"; hash = "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks="; })
294
294
-
(fetchNuGet { pname = "System.Security.Cryptography.Algorithms"; version = "4.3.0"; hash = "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8="; })
295
295
-
(fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "4.3.0"; hash = "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw="; })
296
296
-
(fetchNuGet { pname = "System.Security.Cryptography.Cng"; version = "5.0.0"; hash = "sha256-nOJP3vdmQaYA07TI373OvZX6uWshETipvi5KpL7oExo="; })
297
297
-
(fetchNuGet { pname = "System.Security.Cryptography.Csp"; version = "4.3.0"; hash = "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ="; })
298
298
-
(fetchNuGet { pname = "System.Security.Cryptography.Encoding"; version = "4.3.0"; hash = "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss="; })
299
299
-
(fetchNuGet { pname = "System.Security.Cryptography.OpenSsl"; version = "4.3.0"; hash = "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4="; })
300
300
-
(fetchNuGet { pname = "System.Security.Cryptography.Pkcs"; version = "5.0.0"; hash = "sha256-kq/tvYQSa24mKSvikFK2fKUAnexSL4PO4LkPppqtYkE="; })
301
301
-
(fetchNuGet { pname = "System.Security.Cryptography.Primitives"; version = "4.3.0"; hash = "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318="; })
302
302
-
(fetchNuGet { pname = "System.Security.Cryptography.ProtectedData"; version = "4.4.0"; hash = "sha256-Ri53QmFX8I8UH0x4PikQ1ZA07ZSnBUXStd5rBfGWFOE="; })
303
303
-
(fetchNuGet { pname = "System.Security.Cryptography.X509Certificates"; version = "4.3.0"; hash = "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0="; })
304
304
-
(fetchNuGet { pname = "System.Security.Principal"; version = "4.3.0"; hash = "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk="; })
305
305
-
(fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.3.0"; hash = "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE="; })
306
306
-
(fetchNuGet { pname = "System.Security.Principal.Windows"; version = "4.5.0"; hash = "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY="; })
307
307
-
(fetchNuGet { pname = "System.Security.Principal.Windows"; version = "5.0.0"; hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y="; })
308
308
-
(fetchNuGet { pname = "System.Text.Encoding"; version = "4.0.11"; hash = "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc="; })
309
309
-
(fetchNuGet { pname = "System.Text.Encoding"; version = "4.3.0"; hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg="; })
310
310
-
(fetchNuGet { pname = "System.Text.Encoding.Extensions"; version = "4.3.0"; hash = "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc="; })
311
311
-
(fetchNuGet { pname = "System.Text.RegularExpressions"; version = "4.3.0"; hash = "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0="; })
312
312
-
(fetchNuGet { pname = "System.Threading"; version = "4.0.11"; hash = "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac="; })
313
313
-
(fetchNuGet { pname = "System.Threading"; version = "4.3.0"; hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc="; })
314
314
-
(fetchNuGet { pname = "System.Threading.Channels"; version = "6.0.0"; hash = "sha256-klGYnsyrjvXaGeqgfnMf/dTAMNtcHY+zM4Xh6v2JfuE="; })
315
315
-
(fetchNuGet { pname = "System.Threading.Channels"; version = "8.0.0"; hash = "sha256-c5TYoLNXDLroLIPnlfyMHk7nZ70QAckc/c7V199YChg="; })
316
316
-
(fetchNuGet { pname = "System.Threading.Tasks"; version = "4.0.11"; hash = "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs="; })
317
317
-
(fetchNuGet { pname = "System.Threading.Tasks"; version = "4.3.0"; hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w="; })
318
318
-
(fetchNuGet { pname = "System.Threading.Tasks.Extensions"; version = "4.3.0"; hash = "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc="; })
319
319
-
(fetchNuGet { pname = "System.Threading.ThreadPool"; version = "4.3.0"; hash = "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg="; })
320
320
-
(fetchNuGet { pname = "System.Threading.Timer"; version = "4.3.0"; hash = "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s="; })
321
321
-
(fetchNuGet { pname = "System.Xml.ReaderWriter"; version = "4.3.0"; hash = "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA="; })
322
322
-
(fetchNuGet { pname = "System.Xml.XDocument"; version = "4.3.0"; hash = "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI="; })
323
323
-
(fetchNuGet { pname = "TagLibSharp"; version = "2.3.0"; hash = "sha256-PD9bVZiPaeC8hNx2D+uDUf701cCaMi2IRi5oPTNN+/w="; })
324
324
-
(fetchNuGet { pname = "Velopack"; version = "0.0.915"; hash = "sha256-L31qPk7/MLexF+5FP4gdNfwAWB6kNlvMFL2nfkQBSQU="; })
325
325
-
(fetchNuGet { pname = "Vortice.D3DCompiler"; version = "2.4.2"; hash = "sha256-LXdgts8lKbTU67c1W001XRbq5nenzf8XcYCRxc75jR8="; })
326
326
-
(fetchNuGet { pname = "Vortice.Direct3D11"; version = "2.4.2"; hash = "sha256-hU4qzLKhv4QxiP2c9s4IZUGgeQxsOjRhgurrlXXq/qM="; })
327
327
-
(fetchNuGet { pname = "Vortice.DirectX"; version = "2.4.2"; hash = "sha256-LOIxdET0ynaJz70fakVwDYU0qm+1P0SfD1+I9P320oc="; })
328
328
-
(fetchNuGet { pname = "Vortice.DXGI"; version = "2.4.2"; hash = "sha256-/5r4f9iM/wxZLsauQDbq6DoTTdvuuhbcmNgaxVK1ep8="; })
329
329
-
(fetchNuGet { pname = "Vortice.Mathematics"; version = "1.4.25"; hash = "sha256-Mr/HVvwIeeDJtMNToP6kh2hyqud2zT31913HdhB4hm4="; })
330
330
-
(fetchNuGet { pname = "ZstdSharp.Port"; version = "0.8.1"; hash = "sha256-PeQvyz3lUrK+t+n1dFtNXCLztQtAfkqUuM6mOqBZHLg="; })
4
4
+
{ fetchNuGet }:
5
5
+
[
6
6
+
(fetchNuGet {
7
7
+
pname = "AutoMapper";
8
8
+
version = "13.0.1";
9
9
+
hash = "sha256-3rlsVaouPVH3BD0SobUbVojHuZzNUThQnwbteDtWQ2g=";
10
10
+
})
11
11
+
(fetchNuGet {
12
12
+
pname = "CodeFileSanity";
13
13
+
version = "0.0.37";
14
14
+
hash = "sha256-+BoA4FdDUfeREdc42xbnonh3IBLOjzyrrBosaswbSg4=";
15
15
+
})
16
16
+
(fetchNuGet {
17
17
+
pname = "DiffPlex";
18
18
+
version = "1.7.2";
19
19
+
hash = "sha256-Vsn81duAmPIPkR40h5bEz7hgtF5Kt5nAAGhQZrQbqxE=";
20
20
+
})
21
21
+
(fetchNuGet {
22
22
+
pname = "DiscordRichPresence";
23
23
+
version = "1.2.1.24";
24
24
+
hash = "sha256-oRNrlF1/yK0QvrW2+48RsmSg9h9/pDIfA56/bpoHXFU=";
25
25
+
})
26
26
+
(fetchNuGet {
27
27
+
pname = "FFmpeg.AutoGen";
28
28
+
version = "4.3.0.1";
29
29
+
hash = "sha256-e89+ifalu9T2IpbAl7xji9Rf4AF++490tpJta+sp3Vg=";
30
30
+
})
31
31
+
(fetchNuGet {
32
32
+
pname = "Fody";
33
33
+
version = "6.8.0";
34
34
+
hash = "sha256-2laYscz0i0LalGTAup7dsh6XlYRZSojYpp8XOwZJJfg=";
35
35
+
})
36
36
+
(fetchNuGet {
37
37
+
pname = "HidSharpCore";
38
38
+
version = "1.2.1.1";
39
39
+
hash = "sha256-lM4o3FYBon8eQIMt4uiJAs8M0t4MW+joykiDX+lrdv4=";
40
40
+
})
41
41
+
(fetchNuGet {
42
42
+
pname = "HtmlAgilityPack";
43
43
+
version = "1.11.70";
44
44
+
hash = "sha256-V/SI2N1+jNkwjSQRd2Y/XVVhdOKvSNz3/NeIFE9V3wY=";
45
45
+
})
46
46
+
(fetchNuGet {
47
47
+
pname = "Humanizer";
48
48
+
version = "2.14.1";
49
49
+
hash = "sha256-1wGwf5KAmDeiH0Dz8KcTdZw+UMkiNsjKOIOt/VJnnqE=";
50
50
+
})
51
51
+
(fetchNuGet {
52
52
+
pname = "Humanizer.Core";
53
53
+
version = "2.14.1";
54
54
+
hash = "sha256-EXvojddPu+9JKgOG9NSQgUTfWq1RpOYw7adxDPKDJ6o=";
55
55
+
})
56
56
+
(fetchNuGet {
57
57
+
pname = "Humanizer.Core.af";
58
58
+
version = "2.14.1";
59
59
+
hash = "sha256-8CCgI7OweSa53cZWZBXQ8a7VVt/NPP16zHVBZvzU9KQ=";
60
60
+
})
61
61
+
(fetchNuGet {
62
62
+
pname = "Humanizer.Core.ar";
63
63
+
version = "2.14.1";
64
64
+
hash = "sha256-JRoP+brQgYBZI8OccH/jaM1Z482ZWBiqU2XL3KsIPw8=";
65
65
+
})
66
66
+
(fetchNuGet {
67
67
+
pname = "Humanizer.Core.az";
68
68
+
version = "2.14.1";
69
69
+
hash = "sha256-ubwkbes9zrrisuXTcT4ZgOAiFsUieC6OLd4pgzxsE40=";
70
70
+
})
71
71
+
(fetchNuGet {
72
72
+
pname = "Humanizer.Core.bg";
73
73
+
version = "2.14.1";
74
74
+
hash = "sha256-Xv6DP1xxxGVUfP44TZasWpxgQ/DkriljvmIMtHf+nGk=";
75
75
+
})
76
76
+
(fetchNuGet {
77
77
+
pname = "Humanizer.Core.bn-BD";
78
78
+
version = "2.14.1";
79
79
+
hash = "sha256-6JpReIc3fkExvJIXzk6fUw56wJ78aTEg1dWQ6o+dQow=";
80
80
+
})
81
81
+
(fetchNuGet {
82
82
+
pname = "Humanizer.Core.cs";
83
83
+
version = "2.14.1";
84
84
+
hash = "sha256-MGL86KxSbz0PkDo9+NRj6h1fDjPZXlxAtYNf0Zreg/4=";
85
85
+
})
86
86
+
(fetchNuGet {
87
87
+
pname = "Humanizer.Core.da";
88
88
+
version = "2.14.1";
89
89
+
hash = "sha256-Gpw8kJbgz0KQS2mGY5tmrHqpgUO4abD7dSKIy//ONYM=";
90
90
+
})
91
91
+
(fetchNuGet {
92
92
+
pname = "Humanizer.Core.de";
93
93
+
version = "2.14.1";
94
94
+
hash = "sha256-Eswv8aEQoxI9MZr2CvWtBUn5X9JRZTWQjRzHJkGj80g=";
95
95
+
})
96
96
+
(fetchNuGet {
97
97
+
pname = "Humanizer.Core.el";
98
98
+
version = "2.14.1";
99
99
+
hash = "sha256-wCK2Uy/AV6FxPUSUM0NMbV14pAP+ss25AaVAHMQIeJA=";
100
100
+
})
101
101
+
(fetchNuGet {
102
102
+
pname = "Humanizer.Core.es";
103
103
+
version = "2.14.1";
104
104
+
hash = "sha256-iEHiQXKwg0ABDxh//HSrzwaVOlilQBFI96+GYzzTMwQ=";
105
105
+
})
106
106
+
(fetchNuGet {
107
107
+
pname = "Humanizer.Core.fa";
108
108
+
version = "2.14.1";
109
109
+
hash = "sha256-2Js7k3nvwJvxAjq3yoLn7PUY2S8+vXfgESwU4SbvjaA=";
110
110
+
})
111
111
+
(fetchNuGet {
112
112
+
pname = "Humanizer.Core.fi-FI";
113
113
+
version = "2.14.1";
114
114
+
hash = "sha256-jOWo43r3dhiBsV9cCoDfqK/YqWj5LejZsnfkG6mlkpA=";
115
115
+
})
116
116
+
(fetchNuGet {
117
117
+
pname = "Humanizer.Core.fr";
118
118
+
version = "2.14.1";
119
119
+
hash = "sha256-WCbA+f4B3g/ml7KrkHkzpU2Fj38HtWc/ujoVY5F3lk4=";
120
120
+
})
121
121
+
(fetchNuGet {
122
122
+
pname = "Humanizer.Core.fr-BE";
123
123
+
version = "2.14.1";
124
124
+
hash = "sha256-GydVmoEy+lwEQ1nM39QXSRhYNchqM47p7qhUEimN4Cw=";
125
125
+
})
126
126
+
(fetchNuGet {
127
127
+
pname = "Humanizer.Core.he";
128
128
+
version = "2.14.1";
129
129
+
hash = "sha256-MMf3qjJ+yzxjMxOR7wMWf+eErxWLqpsdWKFhjNCOsyM=";
130
130
+
})
131
131
+
(fetchNuGet {
132
132
+
pname = "Humanizer.Core.hr";
133
133
+
version = "2.14.1";
134
134
+
hash = "sha256-kBv2I9ns6L6D4XfXfyZS1VM6+YwF4yUkCmCA5zqvsok=";
135
135
+
})
136
136
+
(fetchNuGet {
137
137
+
pname = "Humanizer.Core.hu";
138
138
+
version = "2.14.1";
139
139
+
hash = "sha256-vRje+kxqOsl1JCXAE0yDKvauUumzuEhNcnhNsdIdgVM=";
140
140
+
})
141
141
+
(fetchNuGet {
142
142
+
pname = "Humanizer.Core.hy";
143
143
+
version = "2.14.1";
144
144
+
hash = "sha256-UL7PsK4msT5c96lk70/bVAxN63B71l8VOFtvuJQH9a0=";
145
145
+
})
146
146
+
(fetchNuGet {
147
147
+
pname = "Humanizer.Core.id";
148
148
+
version = "2.14.1";
149
149
+
hash = "sha256-nIl64gCuZh4D527qI2hfQRvzt1mTJUCDGMIZwpS3C/A=";
150
150
+
})
151
151
+
(fetchNuGet {
152
152
+
pname = "Humanizer.Core.is";
153
153
+
version = "2.14.1";
154
154
+
hash = "sha256-38vUQ1aVtlhK15kP9ZlDO0Nl0DcOA5iHx6F2SPN1gYM=";
155
155
+
})
156
156
+
(fetchNuGet {
157
157
+
pname = "Humanizer.Core.it";
158
158
+
version = "2.14.1";
159
159
+
hash = "sha256-4ne0VRNi9OAj3bGCQgCy1BNYKMizoHykJ/lchmCsWdc=";
160
160
+
})
161
161
+
(fetchNuGet {
162
162
+
pname = "Humanizer.Core.ja";
163
163
+
version = "2.14.1";
164
164
+
hash = "sha256-oAilMM8J6LumV6qv3gSIBNTm7u2L4vV38cQXtME3PhM=";
165
165
+
})
166
166
+
(fetchNuGet {
167
167
+
pname = "Humanizer.Core.ko-KR";
168
168
+
version = "2.14.1";
169
169
+
hash = "sha256-b70HQl2IWVPATtaYGDyJ+Z6ioPtrM53vXzfTCHYgxpQ=";
170
170
+
})
171
171
+
(fetchNuGet {
172
172
+
pname = "Humanizer.Core.ku";
173
173
+
version = "2.14.1";
174
174
+
hash = "sha256-8LiEH7MaapMtkHFMj7Y3pG+g0QYuIa5gD3VR9nYQn+k=";
175
175
+
})
176
176
+
(fetchNuGet {
177
177
+
pname = "Humanizer.Core.lv";
178
178
+
version = "2.14.1";
179
179
+
hash = "sha256-zyCsE5cD++u5shNIqCQUd+66FkUWOl+NfFrs2JduCaQ=";
180
180
+
})
181
181
+
(fetchNuGet {
182
182
+
pname = "Humanizer.Core.ms-MY";
183
183
+
version = "2.14.1";
184
184
+
hash = "sha256-pSdZLUi9oWo78nBh2DJunPhDR7THdZSZP0msCVbPsrY=";
185
185
+
})
186
186
+
(fetchNuGet {
187
187
+
pname = "Humanizer.Core.mt";
188
188
+
version = "2.14.1";
189
189
+
hash = "sha256-mkX2reEvNpx9w6gtZw+6bkrnj3Di1qgVDMr9q0IeKCw=";
190
190
+
})
191
191
+
(fetchNuGet {
192
192
+
pname = "Humanizer.Core.nb";
193
193
+
version = "2.14.1";
194
194
+
hash = "sha256-QvYJHqjO/SrelWYgtm8Sc7axs7J8wbJE+GbTgVw5LYs=";
195
195
+
})
196
196
+
(fetchNuGet {
197
197
+
pname = "Humanizer.Core.nb-NO";
198
198
+
version = "2.14.1";
199
199
+
hash = "sha256-YW8y2XkmHjwqf2fztNB3rsn3+CgslF1TclITwp0fA9g=";
200
200
+
})
201
201
+
(fetchNuGet {
202
202
+
pname = "Humanizer.Core.nl";
203
203
+
version = "2.14.1";
204
204
+
hash = "sha256-bQM7aXNQMBY+65NfMVQz/xYz9Ad2JC+ryXoB4lcYgmA=";
205
205
+
})
206
206
+
(fetchNuGet {
207
207
+
pname = "Humanizer.Core.pl";
208
208
+
version = "2.14.1";
209
209
+
hash = "sha256-IrPxHI4uQvBeMM9/8PaNueKwVkbN+1zFQlNWRjNfXEA=";
210
210
+
})
211
211
+
(fetchNuGet {
212
212
+
pname = "Humanizer.Core.pt";
213
213
+
version = "2.14.1";
214
214
+
hash = "sha256-XrlC15HNJFmDwLpHIUHb3Bec9A79msQCRB9Dvz8w4l0=";
215
215
+
})
216
216
+
(fetchNuGet {
217
217
+
pname = "Humanizer.Core.ro";
218
218
+
version = "2.14.1";
219
219
+
hash = "sha256-llXtfq4Tr5V2Q4dVD7J0IKITtpiWrFs50DAtJhcSuRI=";
220
220
+
})
221
221
+
(fetchNuGet {
222
222
+
pname = "Humanizer.Core.ru";
223
223
+
version = "2.14.1";
224
224
+
hash = "sha256-lD0dB3mkbFfGExwVWZk6fv24MyQQ8Cdv5OrleuZeChg=";
225
225
+
})
226
226
+
(fetchNuGet {
227
227
+
pname = "Humanizer.Core.sk";
228
228
+
version = "2.14.1";
229
229
+
hash = "sha256-EmyE+wssZwY6tAuEiFXGn5/yzVMZe7QEuTjOcByOXaA=";
230
230
+
})
231
231
+
(fetchNuGet {
232
232
+
pname = "Humanizer.Core.sl";
233
233
+
version = "2.14.1";
234
234
+
hash = "sha256-sWWxh7KZ8Y3Ps6GbBOHbU2GMsNZfkM+BOnUChf3fz4s=";
235
235
+
})
236
236
+
(fetchNuGet {
237
237
+
pname = "Humanizer.Core.sr";
238
238
+
version = "2.14.1";
239
239
+
hash = "sha256-/bA3LULRFn5WYmCscr5R5vaFRjeHC0xjNiF7PXEJ8r0=";
240
240
+
})
241
241
+
(fetchNuGet {
242
242
+
pname = "Humanizer.Core.sr-Latn";
243
243
+
version = "2.14.1";
244
244
+
hash = "sha256-43+o6oj0UNRJKiFoh57MGPSzlsWAq0eRtzlCrewDmVM=";
245
245
+
})
246
246
+
(fetchNuGet {
247
247
+
pname = "Humanizer.Core.sv";
248
248
+
version = "2.14.1";
249
249
+
hash = "sha256-9lXrHveKDs1y/W3Qxd+MVcohhKEU7zNPx21GBVPp/rA=";
250
250
+
})
251
251
+
(fetchNuGet {
252
252
+
pname = "Humanizer.Core.th-TH";
253
253
+
version = "2.14.1";
254
254
+
hash = "sha256-ldCsXINSvL2xom0SCtVQy+qX1IN5//EUoyIOwXiJ3k8=";
255
255
+
})
256
256
+
(fetchNuGet {
257
257
+
pname = "Humanizer.Core.tr";
258
258
+
version = "2.14.1";
259
259
+
hash = "sha256-VZnO1vMXiR7egKEKJ6lBsj7eNgxhFzakFWsYYRW4u2U=";
260
260
+
})
261
261
+
(fetchNuGet {
262
262
+
pname = "Humanizer.Core.uk";
263
263
+
version = "2.14.1";
264
264
+
hash = "sha256-rdvleUrKbj3c06A0O2MkgAZLtXLro9SPB1YqAGE1Vyg=";
265
265
+
})
266
266
+
(fetchNuGet {
267
267
+
pname = "Humanizer.Core.uz-Cyrl-UZ";
268
268
+
version = "2.14.1";
269
269
+
hash = "sha256-Qso1Iz9MTLs63x4F00kK31TZAN4AoFaFsuVzM+1z38k=";
270
270
+
})
271
271
+
(fetchNuGet {
272
272
+
pname = "Humanizer.Core.uz-Latn-UZ";
273
273
+
version = "2.14.1";
274
274
+
hash = "sha256-sVnkZTuEaHfMJIAZmSCqsspnKkYxK9eVBQZnAAqHNW4=";
275
275
+
})
276
276
+
(fetchNuGet {
277
277
+
pname = "Humanizer.Core.vi";
278
278
+
version = "2.14.1";
279
279
+
hash = "sha256-5wDt72+HdNN3mt/iJkxV9LaH13Jc1qr1vB4Lz8ahIPs=";
280
280
+
})
281
281
+
(fetchNuGet {
282
282
+
pname = "Humanizer.Core.zh-CN";
283
283
+
version = "2.14.1";
284
284
+
hash = "sha256-Z3qfFWyovcVT4Hqy51lgW2xGwyfI//Yfv90E0Liy1sw=";
285
285
+
})
286
286
+
(fetchNuGet {
287
287
+
pname = "Humanizer.Core.zh-Hans";
288
288
+
version = "2.14.1";
289
289
+
hash = "sha256-BTGkMEkQYJKRp858EU7hwNOdsHRT+w6vAMa6H8JIyX4=";
290
290
+
})
291
291
+
(fetchNuGet {
292
292
+
pname = "Humanizer.Core.zh-Hant";
293
293
+
version = "2.14.1";
294
294
+
hash = "sha256-N3D1z5aoGwAZ6+ZxrWMtXgacvQcgDG+aLrQQI9uysmM=";
295
295
+
})
296
296
+
(fetchNuGet {
297
297
+
pname = "JetBrains.Annotations";
298
298
+
version = "2023.3.0";
299
299
+
hash = "sha256-/Eykez68qYMO5mlmUelzAke8aJehyp8fspO5Z+yt5G4=";
300
300
+
})
301
301
+
(fetchNuGet {
302
302
+
pname = "JetBrains.ReSharper.GlobalTools";
303
303
+
version = "2023.3.3";
304
304
+
hash = "sha256-Nn3imJvnqLe02gR1GyUHYH4+XkrNnhLy9dyCjJCkB7M=";
305
305
+
})
306
306
+
(fetchNuGet {
307
307
+
pname = "managed-midi";
308
308
+
version = "1.10.1";
309
309
+
hash = "sha256-iuqpyp8vM7ZjtcM9KNqx9se/UhQHsYrQ+lxL4EntyXU=";
310
310
+
})
311
311
+
(fetchNuGet {
312
312
+
pname = "Markdig";
313
313
+
version = "0.23.0";
314
314
+
hash = "sha256-4Kjeb54eyas0pCMbTHGPK13vW9zEnFyZ5VStwwtClq8=";
315
315
+
})
316
316
+
(fetchNuGet {
317
317
+
pname = "MessagePack";
318
318
+
version = "2.5.187";
319
319
+
hash = "sha256-3sBINhdkGdKPKTKxE4YuLGFHg6stAEHUIboR1g7eXgA=";
320
320
+
})
321
321
+
(fetchNuGet {
322
322
+
pname = "MessagePack.Annotations";
323
323
+
version = "2.5.187";
324
324
+
hash = "sha256-SQCJa6u8coWMptbR9iQJLjoi/YkT9t0kJNbojh9vUPw=";
325
325
+
})
326
326
+
(fetchNuGet {
327
327
+
pname = "Microsoft.AspNetCore.Connections.Abstractions";
328
328
+
version = "8.0.10";
329
329
+
hash = "sha256-xnc9qaYB07MAlqCswm6kUX0HMAKcBhxWXClPN2bB8ZA=";
330
330
+
})
331
331
+
(fetchNuGet {
332
332
+
pname = "Microsoft.AspNetCore.Http.Connections.Client";
333
333
+
version = "8.0.10";
334
334
+
hash = "sha256-yp0hgu8kyTE2zU156TWmRUpW24SAaKJm7he4MnEuiG8=";
335
335
+
})
336
336
+
(fetchNuGet {
337
337
+
pname = "Microsoft.AspNetCore.Http.Connections.Common";
338
338
+
version = "8.0.10";
339
339
+
hash = "sha256-ulLp+Rni007Wq9n5w2BA8DX7uG1HhYNF/KV5TN3SKSs=";
340
340
+
})
341
341
+
(fetchNuGet {
342
342
+
pname = "Microsoft.AspNetCore.SignalR.Client";
343
343
+
version = "8.0.10";
344
344
+
hash = "sha256-GEiMdjLvuc0Xmxj9/zKo3b4Y0Vh5jAjfZqPs6vwj5o0=";
345
345
+
})
346
346
+
(fetchNuGet {
347
347
+
pname = "Microsoft.AspNetCore.SignalR.Client.Core";
348
348
+
version = "8.0.10";
349
349
+
hash = "sha256-vTk+Smuu0Pi/MmmHZtIjdyBsZuC0gWsL/63ovmtMRWQ=";
350
350
+
})
351
351
+
(fetchNuGet {
352
352
+
pname = "Microsoft.AspNetCore.SignalR.Common";
353
353
+
version = "8.0.10";
354
354
+
hash = "sha256-LlOfWupgG9pXpNXOfHo3/tmS9ZZy3hziAEqI1X42sh4=";
355
355
+
})
356
356
+
(fetchNuGet {
357
357
+
pname = "Microsoft.AspNetCore.SignalR.Protocols.Json";
358
358
+
version = "8.0.10";
359
359
+
hash = "sha256-ZWDnjvZLr0FK91cyeJxtAJk2Cf+YW+6SZTW+zEIozGc=";
360
360
+
})
361
361
+
(fetchNuGet {
362
362
+
pname = "Microsoft.AspNetCore.SignalR.Protocols.MessagePack";
363
363
+
version = "8.0.10";
364
364
+
hash = "sha256-xgxjqns/uNbzisoPX1cAmqMMrRCHxcon+l8I5TLUKGo=";
365
365
+
})
366
366
+
(fetchNuGet {
367
367
+
pname = "Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson";
368
368
+
version = "8.0.10";
369
369
+
hash = "sha256-HgRvpIaMuEUMJGGuUCxxEigHv/Tlb2/Pd+OQJBHE5DU=";
370
370
+
})
371
371
+
(fetchNuGet {
372
372
+
pname = "Microsoft.CodeAnalysis.BannedApiAnalyzers";
373
373
+
version = "3.3.4";
374
374
+
hash = "sha256-YPTHTZ8xRPMLADdcVYRO/eq3O9uZjsD+OsGRZE+0+e8=";
375
375
+
})
376
376
+
(fetchNuGet {
377
377
+
pname = "Microsoft.CSharp";
378
378
+
version = "4.5.0";
379
379
+
hash = "sha256-dAhj/CgXG5VIy2dop1xplUsLje7uBPFjxasz9rdFIgY=";
380
380
+
})
381
381
+
(fetchNuGet {
382
382
+
pname = "Microsoft.Data.Sqlite.Core";
383
383
+
version = "8.0.10";
384
384
+
hash = "sha256-YBjY88KAC4ShfcGXcNHL6y1A9NH2xvk4d/qTMfuLuoE=";
385
385
+
})
386
386
+
(fetchNuGet {
387
387
+
pname = "Microsoft.Diagnostics.NETCore.Client";
388
388
+
version = "0.2.61701";
389
389
+
hash = "sha256-ITNO2LJYyWhYs3A/iqfoaW6ddvkuuBVXQ5YSKQ8wgcU=";
390
390
+
})
391
391
+
(fetchNuGet {
392
392
+
pname = "Microsoft.Diagnostics.Runtime";
393
393
+
version = "2.0.161401";
394
394
+
hash = "sha256-ke9rovup7UFVz2T6HYtHawwrs/XARLDQOwCysC2qDAs=";
395
395
+
})
396
396
+
(fetchNuGet {
397
397
+
pname = "Microsoft.DotNet.PlatformAbstractions";
398
398
+
version = "2.0.3";
399
399
+
hash = "sha256-qRoDjAl3I8hYH6tQw06UVn5cf55avtTCjRDUzjUJAgg=";
400
400
+
})
401
401
+
(fetchNuGet {
402
402
+
pname = "Microsoft.Extensions.Configuration.Abstractions";
403
403
+
version = "8.0.0";
404
404
+
hash = "sha256-4eBpDkf7MJozTZnOwQvwcfgRKQGcNXe0K/kF+h5Rl8o=";
405
405
+
})
406
406
+
(fetchNuGet {
407
407
+
pname = "Microsoft.Extensions.DependencyInjection";
408
408
+
version = "6.0.0-rc.1.21451.13";
409
409
+
hash = "sha256-zJQsAVTfA46hUV5q67BslsVn9yehYBclD06wg2UhyWQ=";
410
410
+
})
411
411
+
(fetchNuGet {
412
412
+
pname = "Microsoft.Extensions.DependencyInjection";
413
413
+
version = "8.0.1";
414
414
+
hash = "sha256-O9g0jWS+jfGoT3yqKwZYJGL+jGSIeSbwmvomKDC3hTU=";
415
415
+
})
416
416
+
(fetchNuGet {
417
417
+
pname = "Microsoft.Extensions.DependencyInjection.Abstractions";
418
418
+
version = "6.0.0";
419
419
+
hash = "sha256-SZke0jNKIqJvvukdta+MgIlGsrP2EdPkkS8lfLg7Ju4=";
420
420
+
})
421
421
+
(fetchNuGet {
422
422
+
pname = "Microsoft.Extensions.DependencyInjection.Abstractions";
423
423
+
version = "6.0.0-rc.1.21451.13";
424
424
+
hash = "sha256-oTYhI+lMwaQ7l9CfDHeNMBAdfofv4kHC0vqBZ7oJr4U=";
425
425
+
})
426
426
+
(fetchNuGet {
427
427
+
pname = "Microsoft.Extensions.DependencyInjection.Abstractions";
428
428
+
version = "8.0.0";
429
429
+
hash = "sha256-75KzEGWjbRELczJpCiJub+ltNUMMbz5A/1KQU+5dgP8=";
430
430
+
})
431
431
+
(fetchNuGet {
432
432
+
pname = "Microsoft.Extensions.DependencyInjection.Abstractions";
433
433
+
version = "8.0.2";
434
434
+
hash = "sha256-UfLfEQAkXxDaVPC7foE/J3FVEXd31Pu6uQIhTic3JgY=";
435
435
+
})
436
436
+
(fetchNuGet {
437
437
+
pname = "Microsoft.Extensions.DependencyModel";
438
438
+
version = "2.0.3";
439
439
+
hash = "sha256-itpwRYzmJZUt2kYJrrcq2IOwqqOskdbE3HMmD8GV/jY=";
440
440
+
})
441
441
+
(fetchNuGet {
442
442
+
pname = "Microsoft.Extensions.Features";
443
443
+
version = "8.0.10";
444
444
+
hash = "sha256-mJXz6jSbr1xG8L3cILyODzX21uh5o4Qy9yWYgZ6okxM=";
445
445
+
})
446
446
+
(fetchNuGet {
447
447
+
pname = "Microsoft.Extensions.Logging";
448
448
+
version = "8.0.1";
449
449
+
hash = "sha256-vkfVw4tQEg86Xg18v6QO0Qb4Ysz0Njx57d1XcNuj6IU=";
450
450
+
})
451
451
+
(fetchNuGet {
452
452
+
pname = "Microsoft.Extensions.Logging.Abstractions";
453
453
+
version = "8.0.0";
454
454
+
hash = "sha256-Jmddjeg8U5S+iBTwRlVAVLeIHxc4yrrNgqVMOB7EjM4=";
455
455
+
})
456
456
+
(fetchNuGet {
457
457
+
pname = "Microsoft.Extensions.Logging.Abstractions";
458
458
+
version = "8.0.2";
459
459
+
hash = "sha256-cHpe8X2BgYa5DzulZfq24rg8O2K5Lmq2OiLhoyAVgJc=";
460
460
+
})
461
461
+
(fetchNuGet {
462
462
+
pname = "Microsoft.Extensions.ObjectPool";
463
463
+
version = "5.0.11";
464
464
+
hash = "sha256-xNqhEqOm7tI3nxdlbAJ9NSm5/WbkRSUCrdDM+syJ9EQ=";
465
465
+
})
466
466
+
(fetchNuGet {
467
467
+
pname = "Microsoft.Extensions.Options";
468
468
+
version = "6.0.0";
469
469
+
hash = "sha256-DxnEgGiCXpkrxFkxXtOXqwaiAtoIjA8VSSWCcsW0FwE=";
470
470
+
})
471
471
+
(fetchNuGet {
472
472
+
pname = "Microsoft.Extensions.Options";
473
473
+
version = "8.0.2";
474
474
+
hash = "sha256-AjcldddddtN/9aH9pg7ClEZycWtFHLi9IPe1GGhNQys=";
475
475
+
})
476
476
+
(fetchNuGet {
477
477
+
pname = "Microsoft.Extensions.Primitives";
478
478
+
version = "6.0.0";
479
479
+
hash = "sha256-AgvysszpQ11AiTBJFkvSy8JnwIWTj15Pfek7T7ThUc4=";
480
480
+
})
481
481
+
(fetchNuGet {
482
482
+
pname = "Microsoft.Extensions.Primitives";
483
483
+
version = "8.0.0";
484
484
+
hash = "sha256-FU8qj3DR8bDdc1c+WeGZx/PCZeqqndweZM9epcpXjSo=";
485
485
+
})
486
486
+
(fetchNuGet {
487
487
+
pname = "Microsoft.NET.StringTools";
488
488
+
version = "17.6.3";
489
489
+
hash = "sha256-H2Qw8x47WyFOd/VmgRmGMc+uXySgUv68UISgK8Frsjw=";
490
490
+
})
491
491
+
(fetchNuGet {
492
492
+
pname = "Microsoft.NETCore.Platforms";
493
493
+
version = "1.0.1";
494
494
+
hash = "sha256-mZotlGZqtrqDSoBrZhsxFe6fuOv5/BIo0w2Z2x0zVAU=";
495
495
+
})
496
496
+
(fetchNuGet {
497
497
+
pname = "Microsoft.NETCore.Platforms";
498
498
+
version = "1.1.0";
499
499
+
hash = "sha256-FeM40ktcObQJk4nMYShB61H/E8B7tIKfl9ObJ0IOcCM=";
500
500
+
})
501
501
+
(fetchNuGet {
502
502
+
pname = "Microsoft.NETCore.Platforms";
503
503
+
version = "2.0.0";
504
504
+
hash = "sha256-IEvBk6wUXSdyCnkj6tHahOJv290tVVT8tyemYcR0Yro=";
505
505
+
})
506
506
+
(fetchNuGet {
507
507
+
pname = "Microsoft.NETCore.Platforms";
508
508
+
version = "5.0.0";
509
509
+
hash = "sha256-LIcg1StDcQLPOABp4JRXIs837d7z0ia6+++3SF3jl1c=";
510
510
+
})
511
511
+
(fetchNuGet {
512
512
+
pname = "Microsoft.NETCore.Targets";
513
513
+
version = "1.0.1";
514
514
+
hash = "sha256-lxxw/Gy32xHi0fLgFWNj4YTFBSBkjx5l6ucmbTyf7V4=";
515
515
+
})
516
516
+
(fetchNuGet {
517
517
+
pname = "Microsoft.NETCore.Targets";
518
518
+
version = "1.1.0";
519
519
+
hash = "sha256-0AqQ2gMS8iNlYkrD+BxtIg7cXMnr9xZHtKAuN4bjfaQ=";
520
520
+
})
521
521
+
(fetchNuGet {
522
522
+
pname = "Microsoft.Toolkit.HighPerformance";
523
523
+
version = "7.1.2";
524
524
+
hash = "sha256-qzNmWXboGnrGTRESKFv0WZ5oxRg30XDODxpRgCsoiaI=";
525
525
+
})
526
526
+
(fetchNuGet {
527
527
+
pname = "Microsoft.Win32.Primitives";
528
528
+
version = "4.3.0";
529
529
+
hash = "sha256-mBNDmPXNTW54XLnPAUwBRvkIORFM7/j0D0I2SyQPDEg=";
530
530
+
})
531
531
+
(fetchNuGet {
532
532
+
pname = "Microsoft.Win32.Registry";
533
533
+
version = "4.5.0";
534
534
+
hash = "sha256-WMBXsIb0DgPFPaFkNVxY9b9vcMxPqtgFgijKYMJfV/0=";
535
535
+
})
536
536
+
(fetchNuGet {
537
537
+
pname = "Microsoft.Win32.Registry";
538
538
+
version = "5.0.0";
539
539
+
hash = "sha256-9kylPGfKZc58yFqNKa77stomcoNnMeERXozWJzDcUIA=";
540
540
+
})
541
541
+
(fetchNuGet {
542
542
+
pname = "MongoDB.Bson";
543
543
+
version = "2.19.1";
544
544
+
hash = "sha256-HUdPLxxzJNYQm22NEmwJoq0B6LtRK8d4NBstqi0t9uw=";
545
545
+
})
546
546
+
(fetchNuGet {
547
547
+
pname = "NativeLibraryLoader";
548
548
+
version = "1.0.13";
549
549
+
hash = "sha256-ENubvwbFy0ZB8I88xHTRkkjG8lrQ98jQ33IQoe4rcaM=";
550
550
+
})
551
551
+
(fetchNuGet {
552
552
+
pname = "NETStandard.Library";
553
553
+
version = "1.6.1";
554
554
+
hash = "sha256-iNan1ix7RtncGWC9AjAZ2sk70DoxOsmEOgQ10fXm4Pw=";
555
555
+
})
556
556
+
(fetchNuGet {
557
557
+
pname = "NETStandard.Library";
558
558
+
version = "2.0.0";
559
559
+
hash = "sha256-Pp7fRylai8JrE1O+9TGfIEJrAOmnWTJRLWE+qJBahK0=";
560
560
+
})
561
561
+
(fetchNuGet {
562
562
+
pname = "Newtonsoft.Json";
563
563
+
version = "13.0.1";
564
564
+
hash = "sha256-K2tSVW4n4beRPzPu3rlVaBEMdGvWSv/3Q1fxaDh4Mjo=";
565
565
+
})
566
566
+
(fetchNuGet {
567
567
+
pname = "Newtonsoft.Json";
568
568
+
version = "13.0.3";
569
569
+
hash = "sha256-hy/BieY4qxBWVVsDqqOPaLy1QobiIapkbrESm6v2PHc=";
570
570
+
})
571
571
+
(fetchNuGet {
572
572
+
pname = "NuGet.Versioning";
573
573
+
version = "6.12.1";
574
574
+
hash = "sha256-f/ejCuzCAwKs4N4Ec6yf2RovrhBT0nj0hRDP+03/Iy4=";
575
575
+
})
576
576
+
(fetchNuGet {
577
577
+
pname = "NUnit";
578
578
+
version = "3.14.0";
579
579
+
hash = "sha256-CuP/q5HovPWfAW3Cty/QxRi7VpjykJ3TDLq5TENI6KY=";
580
580
+
})
581
581
+
(fetchNuGet {
582
582
+
pname = "NVika";
583
583
+
version = "3.0.0";
584
584
+
hash = "sha256-zgg8aUuIFQ4EZHScy+YHmkwDE9K5vzUJF8s9aiJNFuw=";
585
585
+
})
586
586
+
(fetchNuGet {
587
587
+
pname = "OpenTabletDriver";
588
588
+
version = "0.6.4";
589
589
+
hash = "sha256-tTk8ezYrMs/Kj+snMvWq9Ae7WLU4pq5NpFHEZV8WjJM=";
590
590
+
})
591
591
+
(fetchNuGet {
592
592
+
pname = "OpenTabletDriver.Configurations";
593
593
+
version = "0.6.4";
594
594
+
hash = "sha256-9QqvSck5Ofn3clWQzwGoTHX6k5d1nUxjD56UeIBx+1A=";
595
595
+
})
596
596
+
(fetchNuGet {
597
597
+
pname = "OpenTabletDriver.Native";
598
598
+
version = "0.6.4";
599
599
+
hash = "sha256-4vNnamnIVNpVBOPXyyJcbj0pe/aixGLmvXzq3vkUXMs=";
600
600
+
})
601
601
+
(fetchNuGet {
602
602
+
pname = "OpenTabletDriver.Plugin";
603
603
+
version = "0.6.4";
604
604
+
hash = "sha256-9jORi42+oYFdNEin9lYWMBGrktyTBMAl5sfr1jxAbVE=";
605
605
+
})
606
606
+
(fetchNuGet {
607
607
+
pname = "PolySharp";
608
608
+
version = "1.10.0";
609
609
+
hash = "sha256-30IBYsy7zYtEHDZGw6K9asFq2dXbW+CrBMpMCEdkERs=";
610
610
+
})
611
611
+
(fetchNuGet {
612
612
+
pname = "ppy.LocalisationAnalyser";
613
613
+
version = "2024.802.0";
614
614
+
hash = "sha256-vyRWbdPUp5n8hJPJReU9LUy2o/bwwLT1po9f2M16tMA=";
615
615
+
})
616
616
+
(fetchNuGet {
617
617
+
pname = "ppy.LocalisationAnalyser.Tools";
618
618
+
version = "2024.802.0";
619
619
+
hash = "sha256-bniBSY8rS005OHO/ixn2NFM0/KIMiawHyMSXhlAEqwc=";
620
620
+
})
621
621
+
(fetchNuGet {
622
622
+
pname = "ppy.ManagedBass";
623
623
+
version = "2022.1216.0";
624
624
+
hash = "sha256-yG3IWNixzv+kFgYw6yAkjw9PWMpyR0tvrkFsgWGQ1qY=";
625
625
+
})
626
626
+
(fetchNuGet {
627
627
+
pname = "ppy.ManagedBass.Fx";
628
628
+
version = "2022.1216.0";
629
629
+
hash = "sha256-VfIbFhCDsCRZW5bCbt8MSmE2kAlcKxxx6vdFOus4he8=";
630
630
+
})
631
631
+
(fetchNuGet {
632
632
+
pname = "ppy.ManagedBass.Mix";
633
633
+
version = "2022.1216.0";
634
634
+
hash = "sha256-qUEGJHoYfDvHrpuXdVaiSoV2iVVh9X0yEB41u96+q6A=";
635
635
+
})
636
636
+
(fetchNuGet {
637
637
+
pname = "ppy.ManagedBass.Wasapi";
638
638
+
version = "2022.1216.0";
639
639
+
hash = "sha256-HzhypEVJA+6h3aBB95zNeGbmzEIRc5435Eh9nYpjVkA=";
640
640
+
})
641
641
+
(fetchNuGet {
642
642
+
pname = "ppy.osu.Framework";
643
643
+
version = "2024.1206.0";
644
644
+
hash = "sha256-2XouXC/uahqY1ldHvNWyobxGYXEQJky65g8EL7fL5Zw=";
645
645
+
})
646
646
+
(fetchNuGet {
647
647
+
pname = "ppy.osu.Framework.NativeLibs";
648
648
+
version = "2024.809.1-nativelibs";
649
649
+
hash = "sha256-F7xd66bCEDgEjYgqmx21lYde+ebCsX/E2fuqWXH4xyU=";
650
650
+
})
651
651
+
(fetchNuGet {
652
652
+
pname = "ppy.osu.Framework.SourceGeneration";
653
653
+
version = "2024.1128.0";
654
654
+
hash = "sha256-7ovye7QXFeFr68IxmwIAWA9Fgm686NTYVTUXGQWtKPM=";
655
655
+
})
656
656
+
(fetchNuGet {
657
657
+
pname = "ppy.osu.Game.Resources";
658
658
+
version = "2024.1202.0";
659
659
+
hash = "sha256-OwsEEF4WSH7HQ5HOl3EB36RJ19stn966DtmfnOtpBJk=";
660
660
+
})
661
661
+
(fetchNuGet {
662
662
+
pname = "ppy.osuTK.NS20";
663
663
+
version = "1.0.211";
664
664
+
hash = "sha256-Xu4uiYs1pqIXcBWeTBIc8OIqbLmH6MvaY6Dim4ZNikg=";
665
665
+
})
666
666
+
(fetchNuGet {
667
667
+
pname = "ppy.SDL2-CS";
668
668
+
version = "1.0.741-alpha";
669
669
+
hash = "sha256-sdX+MoMlIPUyi4yEUVHtqxKWF/VK04e2VaUavmgBEJU=";
670
670
+
})
671
671
+
(fetchNuGet {
672
672
+
pname = "ppy.SDL3-CS";
673
673
+
version = "2024.1128.0";
674
674
+
hash = "sha256-iiIBD2MeSMMxw7jn0QBrnD6fu457x9d3jKYe0upxoA4=";
675
675
+
})
676
676
+
(fetchNuGet {
677
677
+
pname = "ppy.Veldrid";
678
678
+
version = "4.9.62-gca0239da6b";
679
679
+
hash = "sha256-mGlMQbp2/ewA7PzamEeMA1pbboC73iAIARhK4MPrwO4=";
680
680
+
})
681
681
+
(fetchNuGet {
682
682
+
pname = "ppy.Veldrid.MetalBindings";
683
683
+
version = "4.9.62-gca0239da6b";
684
684
+
hash = "sha256-8jkbU2QV4HV8RU1vnSNtP8kNEhDWbTb3Dr2cl8w/T6A=";
685
685
+
})
686
686
+
(fetchNuGet {
687
687
+
pname = "ppy.Veldrid.OpenGLBindings";
688
688
+
version = "4.9.62-gca0239da6b";
689
689
+
hash = "sha256-I81to2x5D4LlIJN80d5DbqcU0jPTVSPoc0tvL15YG6I=";
690
690
+
})
691
691
+
(fetchNuGet {
692
692
+
pname = "ppy.Veldrid.SPIRV";
693
693
+
version = "1.0.15-gfbb03d21c2";
694
694
+
hash = "sha256-rnl6+U4E3BJVYTWtEjOx7fDVcJJNBP8MOisoGVLT7vA=";
695
695
+
})
696
696
+
(fetchNuGet {
697
697
+
pname = "ppy.Vk";
698
698
+
version = "1.0.26";
699
699
+
hash = "sha256-YA+U8RhOrGdtw3tlluiv1+M7FIMB0zQMnPVY8ynOxvE=";
700
700
+
})
701
701
+
(fetchNuGet {
702
702
+
pname = "Realm";
703
703
+
version = "11.5.0";
704
704
+
hash = "sha256-ykC2fyOh4XeRJyLoO3jQQC4sZcFhSms7wswSO6Iu8mQ=";
705
705
+
})
706
706
+
(fetchNuGet {
707
707
+
pname = "Realm.PlatformHelpers";
708
708
+
version = "11.5.0";
709
709
+
hash = "sha256-6QUO6jQC3VwxKsNY24WSgLNtOwcaGjQDtP0S4DSt670=";
710
710
+
})
711
711
+
(fetchNuGet {
712
712
+
pname = "Remotion.Linq";
713
713
+
version = "2.2.0";
714
714
+
hash = "sha256-rpPp2xyHj2JsTy6k3FAhljvl85PNa3R9jrVy3UG0hvg=";
715
715
+
})
716
716
+
(fetchNuGet {
717
717
+
pname = "runtime.any.System.Collections";
718
718
+
version = "4.3.0";
719
719
+
hash = "sha256-4PGZqyWhZ6/HCTF2KddDsbmTTjxs2oW79YfkberDZS8=";
720
720
+
})
721
721
+
(fetchNuGet {
722
722
+
pname = "runtime.any.System.Diagnostics.Tools";
723
723
+
version = "4.3.0";
724
724
+
hash = "sha256-8yLKFt2wQxkEf7fNfzB+cPUCjYn2qbqNgQ1+EeY2h/I=";
725
725
+
})
726
726
+
(fetchNuGet {
727
727
+
pname = "runtime.any.System.Diagnostics.Tracing";
728
728
+
version = "4.3.0";
729
729
+
hash = "sha256-dsmTLGvt8HqRkDWP8iKVXJCS+akAzENGXKPV18W2RgI=";
730
730
+
})
731
731
+
(fetchNuGet {
732
732
+
pname = "runtime.any.System.Globalization";
733
733
+
version = "4.3.0";
734
734
+
hash = "sha256-PaiITTFI2FfPylTEk7DwzfKeiA/g/aooSU1pDcdwWLU=";
735
735
+
})
736
736
+
(fetchNuGet {
737
737
+
pname = "runtime.any.System.Globalization.Calendars";
738
738
+
version = "4.3.0";
739
739
+
hash = "sha256-AYh39tgXJVFu8aLi9Y/4rK8yWMaza4S4eaxjfcuEEL4=";
740
740
+
})
741
741
+
(fetchNuGet {
742
742
+
pname = "runtime.any.System.IO";
743
743
+
version = "4.3.0";
744
744
+
hash = "sha256-vej7ySRhyvM3pYh/ITMdC25ivSd0WLZAaIQbYj/6HVE=";
745
745
+
})
746
746
+
(fetchNuGet {
747
747
+
pname = "runtime.any.System.Reflection";
748
748
+
version = "4.3.0";
749
749
+
hash = "sha256-ns6f++lSA+bi1xXgmW1JkWFb2NaMD+w+YNTfMvyAiQk=";
750
750
+
})
751
751
+
(fetchNuGet {
752
752
+
pname = "runtime.any.System.Reflection.Extensions";
753
753
+
version = "4.3.0";
754
754
+
hash = "sha256-Y2AnhOcJwJVYv7Rp6Jz6ma0fpITFqJW+8rsw106K2X8=";
755
755
+
})
756
756
+
(fetchNuGet {
757
757
+
pname = "runtime.any.System.Reflection.Primitives";
758
758
+
version = "4.3.0";
759
759
+
hash = "sha256-LkPXtiDQM3BcdYkAm5uSNOiz3uF4J45qpxn5aBiqNXQ=";
760
760
+
})
761
761
+
(fetchNuGet {
762
762
+
pname = "runtime.any.System.Resources.ResourceManager";
763
763
+
version = "4.3.0";
764
764
+
hash = "sha256-9EvnmZslLgLLhJ00o5MWaPuJQlbUFcUF8itGQNVkcQ4=";
765
765
+
})
766
766
+
(fetchNuGet {
767
767
+
pname = "runtime.any.System.Runtime";
768
768
+
version = "4.3.0";
769
769
+
hash = "sha256-qwhNXBaJ1DtDkuRacgHwnZmOZ1u9q7N8j0cWOLYOELM=";
770
770
+
})
771
771
+
(fetchNuGet {
772
772
+
pname = "runtime.any.System.Runtime.Handles";
773
773
+
version = "4.3.0";
774
774
+
hash = "sha256-PQRACwnSUuxgVySO1840KvqCC9F8iI9iTzxNW0RcBS4=";
775
775
+
})
776
776
+
(fetchNuGet {
777
777
+
pname = "runtime.any.System.Runtime.InteropServices";
778
778
+
version = "4.3.0";
779
779
+
hash = "sha256-Kaw5PnLYIiqWbsoF3VKJhy7pkpoGsUwn4ZDCKscbbzA=";
780
780
+
})
781
781
+
(fetchNuGet {
782
782
+
pname = "runtime.any.System.Text.Encoding";
783
783
+
version = "4.3.0";
784
784
+
hash = "sha256-Q18B9q26MkWZx68exUfQT30+0PGmpFlDgaF0TnaIGCs=";
785
785
+
})
786
786
+
(fetchNuGet {
787
787
+
pname = "runtime.any.System.Text.Encoding.Extensions";
788
788
+
version = "4.3.0";
789
789
+
hash = "sha256-6MYj0RmLh4EVqMtO/MRqBi0HOn5iG4x9JimgCCJ+EFM=";
790
790
+
})
791
791
+
(fetchNuGet {
792
792
+
pname = "runtime.any.System.Threading.Tasks";
793
793
+
version = "4.3.0";
794
794
+
hash = "sha256-agdOM0NXupfHbKAQzQT8XgbI9B8hVEh+a/2vqeHctg4=";
795
795
+
})
796
796
+
(fetchNuGet {
797
797
+
pname = "runtime.any.System.Threading.Timer";
798
798
+
version = "4.3.0";
799
799
+
hash = "sha256-BgHxXCIbicVZtpgMimSXixhFC3V+p5ODqeljDjO8hCs=";
800
800
+
})
801
801
+
(fetchNuGet {
802
802
+
pname = "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl";
803
803
+
version = "4.3.0";
804
804
+
hash = "sha256-LXUPLX3DJxsU1Pd3UwjO1PO9NM2elNEDXeu2Mu/vNps=";
805
805
+
})
806
806
+
(fetchNuGet {
807
807
+
pname = "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl";
808
808
+
version = "4.3.0";
809
809
+
hash = "sha256-qeSqaUI80+lqw5MK4vMpmO0CZaqrmYktwp6L+vQAb0I=";
810
810
+
})
811
811
+
(fetchNuGet {
812
812
+
pname = "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl";
813
813
+
version = "4.3.0";
814
814
+
hash = "sha256-SrHqT9wrCBsxILWtaJgGKd6Odmxm8/Mh7Kh0CUkZVzA=";
815
815
+
})
816
816
+
(fetchNuGet {
817
817
+
pname = "runtime.native.System";
818
818
+
version = "4.0.0";
819
819
+
hash = "sha256-bmaM0ovT4X4aqDJOR255Yda/u3fmHZskU++lMnsy894=";
820
820
+
})
821
821
+
(fetchNuGet {
822
822
+
pname = "runtime.native.System";
823
823
+
version = "4.3.0";
824
824
+
hash = "sha256-ZBZaodnjvLXATWpXXakFgcy6P+gjhshFXmglrL5xD5Y=";
825
825
+
})
826
826
+
(fetchNuGet {
827
827
+
pname = "runtime.native.System.IO.Compression";
828
828
+
version = "4.3.0";
829
829
+
hash = "sha256-DWnXs4vlKoU6WxxvCArTJupV6sX3iBbZh8SbqfHace8=";
830
830
+
})
831
831
+
(fetchNuGet {
832
832
+
pname = "runtime.native.System.Net.Http";
833
833
+
version = "4.3.0";
834
834
+
hash = "sha256-c556PyheRwpYhweBjSfIwEyZHnAUB8jWioyKEcp/2dg=";
835
835
+
})
836
836
+
(fetchNuGet {
837
837
+
pname = "runtime.native.System.Net.Security";
838
838
+
version = "4.3.0";
839
839
+
hash = "sha256-I8vYld/7WtU2/rrD4XfSRgpO/DY3qXghG14VQjiU2DY=";
840
840
+
})
841
841
+
(fetchNuGet {
842
842
+
pname = "runtime.native.System.Security.Cryptography.Apple";
843
843
+
version = "4.3.0";
844
844
+
hash = "sha256-2IhBv0i6pTcOyr8FFIyfPEaaCHUmJZ8DYwLUwJ+5waw=";
845
845
+
})
846
846
+
(fetchNuGet {
847
847
+
pname = "runtime.native.System.Security.Cryptography.OpenSsl";
848
848
+
version = "4.3.0";
849
849
+
hash = "sha256-Jy01KhtcCl2wjMpZWH+X3fhHcVn+SyllWFY8zWlz/6I=";
850
850
+
})
851
851
+
(fetchNuGet {
852
852
+
pname = "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl";
853
853
+
version = "4.3.0";
854
854
+
hash = "sha256-wyv00gdlqf8ckxEdV7E+Ql9hJIoPcmYEuyeWb5Oz3mM=";
855
855
+
})
856
856
+
(fetchNuGet {
857
857
+
pname = "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl";
858
858
+
version = "4.3.0";
859
859
+
hash = "sha256-zi+b4sCFrA9QBiSGDD7xPV27r3iHGlV99gpyVUjRmc4=";
860
860
+
})
861
861
+
(fetchNuGet {
862
862
+
pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple";
863
863
+
version = "4.3.0";
864
864
+
hash = "sha256-serkd4A7F6eciPiPJtUyJyxzdAtupEcWIZQ9nptEzIM=";
865
865
+
})
866
866
+
(fetchNuGet {
867
867
+
pname = "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl";
868
868
+
version = "4.3.0";
869
869
+
hash = "sha256-gybQU6mPgaWV3rBG2dbH6tT3tBq8mgze3PROdsuWnX0=";
870
870
+
})
871
871
+
(fetchNuGet {
872
872
+
pname = "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl";
873
873
+
version = "4.3.0";
874
874
+
hash = "sha256-VsP72GVveWnGUvS/vjOQLv1U80H2K8nZ4fDAmI61Hm4=";
875
875
+
})
876
876
+
(fetchNuGet {
877
877
+
pname = "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl";
878
878
+
version = "4.3.0";
879
879
+
hash = "sha256-4yKGa/IrNCKuQ3zaDzILdNPD32bNdy6xr5gdJigyF5g=";
880
880
+
})
881
881
+
(fetchNuGet {
882
882
+
pname = "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl";
883
883
+
version = "4.3.0";
884
884
+
hash = "sha256-HmdJhhRsiVoOOCcUvAwdjpMRiyuSwdcgEv2j9hxi+Zc=";
885
885
+
})
886
886
+
(fetchNuGet {
887
887
+
pname = "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl";
888
888
+
version = "4.3.0";
889
889
+
hash = "sha256-pVFUKuPPIx0edQKjzRon3zKq8zhzHEzko/lc01V/jdw=";
890
890
+
})
891
891
+
(fetchNuGet {
892
892
+
pname = "runtime.unix.Microsoft.Win32.Primitives";
893
893
+
version = "4.3.0";
894
894
+
hash = "sha256-LZb23lRXzr26tRS5aA0xyB08JxiblPDoA7HBvn6awXg=";
895
895
+
})
896
896
+
(fetchNuGet {
897
897
+
pname = "runtime.unix.System.Console";
898
898
+
version = "4.3.0";
899
899
+
hash = "sha256-AHkdKShTRHttqfMjmi+lPpTuCrM5vd/WRy6Kbtie190=";
900
900
+
})
901
901
+
(fetchNuGet {
902
902
+
pname = "runtime.unix.System.Diagnostics.Debug";
903
903
+
version = "4.3.0";
904
904
+
hash = "sha256-ReoazscfbGH+R6s6jkg5sIEHWNEvjEoHtIsMbpc7+tI=";
905
905
+
})
906
906
+
(fetchNuGet {
907
907
+
pname = "runtime.unix.System.IO.FileSystem";
908
908
+
version = "4.3.0";
909
909
+
hash = "sha256-Pf4mRl6YDK2x2KMh0WdyNgv0VUNdSKVDLlHqozecy5I=";
910
910
+
})
911
911
+
(fetchNuGet {
912
912
+
pname = "runtime.unix.System.Net.Primitives";
913
913
+
version = "4.3.0";
914
914
+
hash = "sha256-pHJ+I6i16MV6m77uhTC6GPY6jWGReE3SSP3fVB59ti0=";
915
915
+
})
916
916
+
(fetchNuGet {
917
917
+
pname = "runtime.unix.System.Net.Sockets";
918
918
+
version = "4.3.0";
919
919
+
hash = "sha256-IvgOeA2JuBjKl5yAVGjPYMPDzs9phb3KANs95H9v1w4=";
920
920
+
})
921
921
+
(fetchNuGet {
922
922
+
pname = "runtime.unix.System.Private.Uri";
923
923
+
version = "4.3.0";
924
924
+
hash = "sha256-c5tXWhE/fYbJVl9rXs0uHh3pTsg44YD1dJvyOA0WoMs=";
925
925
+
})
926
926
+
(fetchNuGet {
927
927
+
pname = "runtime.unix.System.Runtime.Extensions";
928
928
+
version = "4.3.0";
929
929
+
hash = "sha256-l8S9gt6dk3qYG6HYonHtdlYtBKyPb29uQ6NDjmrt3V4=";
930
930
+
})
931
931
+
(fetchNuGet {
932
932
+
pname = "Sentry";
933
933
+
version = "4.13.0";
934
934
+
hash = "sha256-JeyxQFOic72eQ41Guy4NbPy/A4wXvA812229vpLcLCM=";
935
935
+
})
936
936
+
(fetchNuGet {
937
937
+
pname = "SharpCompress";
938
938
+
version = "0.38.0";
939
939
+
hash = "sha256-bQL3kazuqbuqn+Csy9RYMMUsNMtqkGXF7x32s787UBM=";
940
940
+
})
941
941
+
(fetchNuGet {
942
942
+
pname = "SharpFNT";
943
943
+
version = "2.0.0";
944
944
+
hash = "sha256-oNeQKFY4LcTdc3s78WxzODYNylrZmSg3BpMtmOBj6q0=";
945
945
+
})
946
946
+
(fetchNuGet {
947
947
+
pname = "SharpGen.Runtime";
948
948
+
version = "2.0.0-beta.13";
949
949
+
hash = "sha256-CB4681QJaYoL3MCFn4SwgCWxtFf7T/oZQQ6+pLT5oIg=";
950
950
+
})
951
951
+
(fetchNuGet {
952
952
+
pname = "SharpGen.Runtime.COM";
953
953
+
version = "2.0.0-beta.13";
954
954
+
hash = "sha256-xoQQrf8RIeNwx4aZjXDECd2ROZCj3SFk8q+eJ64cu9I=";
955
955
+
})
956
956
+
(fetchNuGet {
957
957
+
pname = "SixLabors.ImageSharp";
958
958
+
version = "3.1.5";
959
959
+
hash = "sha256-3UehX9T+I81nfgv2dTHlpoPgYzXFk7kHr1mmlQOCBfw=";
960
960
+
})
961
961
+
(fetchNuGet {
962
962
+
pname = "SQLitePCLRaw.bundle_e_sqlite3";
963
963
+
version = "2.1.10";
964
964
+
hash = "sha256-kZIWjH/TVTXRIsHPZSl7zoC4KAMBMWmgFYGLrQ15Occ=";
965
965
+
})
966
966
+
(fetchNuGet {
967
967
+
pname = "SQLitePCLRaw.core";
968
968
+
version = "2.1.10";
969
969
+
hash = "sha256-gpZcYwiJVCVwCyJu0R6hYxyMB39VhJDmYh9LxcIVAA8=";
970
970
+
})
971
971
+
(fetchNuGet {
972
972
+
pname = "SQLitePCLRaw.core";
973
973
+
version = "2.1.6";
974
974
+
hash = "sha256-RxWjm52PdmMV98dgDy0BCpF988+BssRZUgALLv7TH/E=";
975
975
+
})
976
976
+
(fetchNuGet {
977
977
+
pname = "SQLitePCLRaw.lib.e_sqlite3";
978
978
+
version = "2.1.10";
979
979
+
hash = "sha256-m2v2RQWol+1MNGZsx+G2N++T9BNtQGLLHXUjcwkdCnc=";
980
980
+
})
981
981
+
(fetchNuGet {
982
982
+
pname = "SQLitePCLRaw.provider.e_sqlite3";
983
983
+
version = "2.1.10";
984
984
+
hash = "sha256-MLs3jiETLZ7k/TgkHynZegCWuAbgHaDQKTPB0iNv7Fg=";
985
985
+
})
986
986
+
(fetchNuGet {
987
987
+
pname = "StbiSharp";
988
988
+
version = "1.1.0";
989
989
+
hash = "sha256-oP64y/hYgoYo+heDFzmt6sWukTF0lDDFkB16eyoQfHE=";
990
990
+
})
991
991
+
(fetchNuGet {
992
992
+
pname = "System.AppContext";
993
993
+
version = "4.1.0";
994
994
+
hash = "sha256-v6YfyfrKmhww+EYHUq6cwYUMj00MQ6SOfJtcGVRlYzs=";
995
995
+
})
996
996
+
(fetchNuGet {
997
997
+
pname = "System.AppContext";
998
998
+
version = "4.3.0";
999
999
+
hash = "sha256-yg95LNQOwFlA1tWxXdQkVyJqT4AnoDc+ACmrNvzGiZg=";
1000
1000
+
})
1001
1001
+
(fetchNuGet {
1002
1002
+
pname = "System.Buffers";
1003
1003
+
version = "4.3.0";
1004
1004
+
hash = "sha256-XqZWb4Kd04960h4U9seivjKseGA/YEIpdplfHYHQ9jk=";
1005
1005
+
})
1006
1006
+
(fetchNuGet {
1007
1007
+
pname = "System.Buffers";
1008
1008
+
version = "4.5.1";
1009
1009
+
hash = "sha256-wws90sfi9M7kuCPWkv1CEYMJtCqx9QB/kj0ymlsNaxI=";
1010
1010
+
})
1011
1011
+
(fetchNuGet {
1012
1012
+
pname = "System.Collections";
1013
1013
+
version = "4.0.11";
1014
1014
+
hash = "sha256-puoFMkx4Z55C1XPxNw3np8nzNGjH+G24j43yTIsDRL0=";
1015
1015
+
})
1016
1016
+
(fetchNuGet {
1017
1017
+
pname = "System.Collections";
1018
1018
+
version = "4.3.0";
1019
1019
+
hash = "sha256-afY7VUtD6w/5mYqrce8kQrvDIfS2GXDINDh73IjxJKc=";
1020
1020
+
})
1021
1021
+
(fetchNuGet {
1022
1022
+
pname = "System.Collections.Concurrent";
1023
1023
+
version = "4.3.0";
1024
1024
+
hash = "sha256-KMY5DfJnDeIsa13DpqvyN8NkReZEMAFnlmNglVoFIXI=";
1025
1025
+
})
1026
1026
+
(fetchNuGet {
1027
1027
+
pname = "System.Collections.Immutable";
1028
1028
+
version = "1.7.1";
1029
1029
+
hash = "sha256-WMMAUqoxT3J1gW9DI8v31VAuhwqTc4Posose5jq1BNo=";
1030
1030
+
})
1031
1031
+
(fetchNuGet {
1032
1032
+
pname = "System.ComponentModel.Annotations";
1033
1033
+
version = "5.0.0";
1034
1034
+
hash = "sha256-0pST1UHgpeE6xJrYf5R+U7AwIlH3rVC3SpguilI/MAg=";
1035
1035
+
})
1036
1036
+
(fetchNuGet {
1037
1037
+
pname = "System.Console";
1038
1038
+
version = "4.3.0";
1039
1039
+
hash = "sha256-Xh3PPBZr0pDbDaK8AEHbdGz7ePK6Yi1ZyRWI1JM6mbo=";
1040
1040
+
})
1041
1041
+
(fetchNuGet {
1042
1042
+
pname = "System.Diagnostics.Debug";
1043
1043
+
version = "4.0.11";
1044
1044
+
hash = "sha256-P+rSQJVoN6M56jQbs76kZ9G3mAWFdtF27P/RijN8sj4=";
1045
1045
+
})
1046
1046
+
(fetchNuGet {
1047
1047
+
pname = "System.Diagnostics.Debug";
1048
1048
+
version = "4.3.0";
1049
1049
+
hash = "sha256-fkA79SjPbSeiEcrbbUsb70u9B7wqbsdM9s1LnoKj0gM=";
1050
1050
+
})
1051
1051
+
(fetchNuGet {
1052
1052
+
pname = "System.Diagnostics.DiagnosticSource";
1053
1053
+
version = "4.3.0";
1054
1054
+
hash = "sha256-OFJRb0ygep0Z3yDBLwAgM/Tkfs4JCDtsNhwDH9cd1Xw=";
1055
1055
+
})
1056
1056
+
(fetchNuGet {
1057
1057
+
pname = "System.Diagnostics.Tools";
1058
1058
+
version = "4.3.0";
1059
1059
+
hash = "sha256-gVOv1SK6Ape0FQhCVlNOd9cvQKBvMxRX9K0JPVi8w0Y=";
1060
1060
+
})
1061
1061
+
(fetchNuGet {
1062
1062
+
pname = "System.Diagnostics.Tracing";
1063
1063
+
version = "4.3.0";
1064
1064
+
hash = "sha256-hCETZpHHGVhPYvb4C0fh4zs+8zv4GPoixagkLZjpa9Q=";
1065
1065
+
})
1066
1066
+
(fetchNuGet {
1067
1067
+
pname = "System.Dynamic.Runtime";
1068
1068
+
version = "4.0.11";
1069
1069
+
hash = "sha256-qWqFVxuXioesVftv2RVJZOnmojUvRjb7cS3Oh3oTit4=";
1070
1070
+
})
1071
1071
+
(fetchNuGet {
1072
1072
+
pname = "System.Dynamic.Runtime";
1073
1073
+
version = "4.3.0";
1074
1074
+
hash = "sha256-k75gjOYimIQtLBD5NDzwwi3ZMUBPRW3jmc3evDMMJbU=";
1075
1075
+
})
1076
1076
+
(fetchNuGet {
1077
1077
+
pname = "System.Globalization";
1078
1078
+
version = "4.0.11";
1079
1079
+
hash = "sha256-rbSgc2PIEc2c2rN6LK3qCREAX3DqA2Nq1WcLrZYsDBw=";
1080
1080
+
})
1081
1081
+
(fetchNuGet {
1082
1082
+
pname = "System.Globalization";
1083
1083
+
version = "4.3.0";
1084
1084
+
hash = "sha256-caL0pRmFSEsaoeZeWN5BTQtGrAtaQPwFi8YOZPZG5rI=";
1085
1085
+
})
1086
1086
+
(fetchNuGet {
1087
1087
+
pname = "System.Globalization.Calendars";
1088
1088
+
version = "4.3.0";
1089
1089
+
hash = "sha256-uNOD0EOVFgnS2fMKvMiEtI9aOw00+Pfy/H+qucAQlPc=";
1090
1090
+
})
1091
1091
+
(fetchNuGet {
1092
1092
+
pname = "System.Globalization.Extensions";
1093
1093
+
version = "4.3.0";
1094
1094
+
hash = "sha256-mmJWA27T0GRVuFP9/sj+4TrR4GJWrzNIk2PDrbr7RQk=";
1095
1095
+
})
1096
1096
+
(fetchNuGet {
1097
1097
+
pname = "System.IO";
1098
1098
+
version = "4.1.0";
1099
1099
+
hash = "sha256-V6oyQFwWb8NvGxAwvzWnhPxy9dKOfj/XBM3tEC5aHrw=";
1100
1100
+
})
1101
1101
+
(fetchNuGet {
1102
1102
+
pname = "System.IO";
1103
1103
+
version = "4.3.0";
1104
1104
+
hash = "sha256-ruynQHekFP5wPrDiVyhNiRIXeZ/I9NpjK5pU+HPDiRY=";
1105
1105
+
})
1106
1106
+
(fetchNuGet {
1107
1107
+
pname = "System.IO.Compression";
1108
1108
+
version = "4.3.0";
1109
1109
+
hash = "sha256-f5PrQlQgj5Xj2ZnHxXW8XiOivaBvfqDao9Sb6AVinyA=";
1110
1110
+
})
1111
1111
+
(fetchNuGet {
1112
1112
+
pname = "System.IO.Compression.ZipFile";
1113
1113
+
version = "4.3.0";
1114
1114
+
hash = "sha256-WQl+JgWs+GaRMeiahTFUbrhlXIHapzcpTFXbRvAtvvs=";
1115
1115
+
})
1116
1116
+
(fetchNuGet {
1117
1117
+
pname = "System.IO.FileSystem";
1118
1118
+
version = "4.0.1";
1119
1119
+
hash = "sha256-4VKXFgcGYCTWVXjAlniAVq0dO3o5s8KHylg2wg2/7k0=";
1120
1120
+
})
1121
1121
+
(fetchNuGet {
1122
1122
+
pname = "System.IO.FileSystem";
1123
1123
+
version = "4.3.0";
1124
1124
+
hash = "sha256-vNIYnvlayuVj0WfRfYKpDrhDptlhp1pN8CYmlVd2TXw=";
1125
1125
+
})
1126
1126
+
(fetchNuGet {
1127
1127
+
pname = "System.IO.FileSystem.Primitives";
1128
1128
+
version = "4.3.0";
1129
1129
+
hash = "sha256-LMnfg8Vwavs9cMnq9nNH8IWtAtSfk0/Fy4s4Rt9r1kg=";
1130
1130
+
})
1131
1131
+
(fetchNuGet {
1132
1132
+
pname = "System.IO.Packaging";
1133
1133
+
version = "8.0.1";
1134
1134
+
hash = "sha256-xf0BAfqQvITompBsvfpxiLts/6sRQEzdjNA3f/q/vY4=";
1135
1135
+
})
1136
1136
+
(fetchNuGet {
1137
1137
+
pname = "System.IO.Pipelines";
1138
1138
+
version = "8.0.0";
1139
1139
+
hash = "sha256-LdpB1s4vQzsOODaxiKstLks57X9DTD5D6cPx8DE1wwE=";
1140
1140
+
})
1141
1141
+
(fetchNuGet {
1142
1142
+
pname = "System.Linq";
1143
1143
+
version = "4.1.0";
1144
1144
+
hash = "sha256-ZQpFtYw5N1F1aX0jUK3Tw+XvM5tnlnshkTCNtfVA794=";
1145
1145
+
})
1146
1146
+
(fetchNuGet {
1147
1147
+
pname = "System.Linq";
1148
1148
+
version = "4.3.0";
1149
1149
+
hash = "sha256-R5uiSL3l6a3XrXSSL6jz+q/PcyVQzEAByiuXZNSqD/A=";
1150
1150
+
})
1151
1151
+
(fetchNuGet {
1152
1152
+
pname = "System.Linq.Expressions";
1153
1153
+
version = "4.1.0";
1154
1154
+
hash = "sha256-7zqB+FXgkvhtlBzpcZyd81xczWP0D3uWssyAGw3t7b4=";
1155
1155
+
})
1156
1156
+
(fetchNuGet {
1157
1157
+
pname = "System.Linq.Expressions";
1158
1158
+
version = "4.3.0";
1159
1159
+
hash = "sha256-+3pvhZY7rip8HCbfdULzjlC9FPZFpYoQxhkcuFm2wk8=";
1160
1160
+
})
1161
1161
+
(fetchNuGet {
1162
1162
+
pname = "System.Linq.Queryable";
1163
1163
+
version = "4.0.1";
1164
1164
+
hash = "sha256-XOFRO+lyoxsWtIUJfg5JCqv9Gx35ASOc94WIR8ZMVoY=";
1165
1165
+
})
1166
1166
+
(fetchNuGet {
1167
1167
+
pname = "System.Memory";
1168
1168
+
version = "4.5.3";
1169
1169
+
hash = "sha256-Cvl7RbRbRu9qKzeRBWjavUkseT2jhZBUWV1SPipUWFk=";
1170
1170
+
})
1171
1171
+
(fetchNuGet {
1172
1172
+
pname = "System.Memory";
1173
1173
+
version = "4.5.4";
1174
1174
+
hash = "sha256-3sCEfzO4gj5CYGctl9ZXQRRhwAraMQfse7yzKoRe65E=";
1175
1175
+
})
1176
1176
+
(fetchNuGet {
1177
1177
+
pname = "System.Memory";
1178
1178
+
version = "4.5.5";
1179
1179
+
hash = "sha256-EPQ9o1Kin7KzGI5O3U3PUQAZTItSbk9h/i4rViN3WiI=";
1180
1180
+
})
1181
1181
+
(fetchNuGet {
1182
1182
+
pname = "System.Net.Http";
1183
1183
+
version = "4.3.0";
1184
1184
+
hash = "sha256-UoBB7WPDp2Bne/fwxKF0nE8grJ6FzTMXdT/jfsphj8Q=";
1185
1185
+
})
1186
1186
+
(fetchNuGet {
1187
1187
+
pname = "System.Net.NameResolution";
1188
1188
+
version = "4.3.0";
1189
1189
+
hash = "sha256-eGZwCBExWsnirWBHyp2sSSSXp6g7I6v53qNmwPgtJ5c=";
1190
1190
+
})
1191
1191
+
(fetchNuGet {
1192
1192
+
pname = "System.Net.Primitives";
1193
1193
+
version = "4.3.0";
1194
1194
+
hash = "sha256-MY7Z6vOtFMbEKaLW9nOSZeAjcWpwCtdO7/W1mkGZBzE=";
1195
1195
+
})
1196
1196
+
(fetchNuGet {
1197
1197
+
pname = "System.Net.Security";
1198
1198
+
version = "4.3.0";
1199
1199
+
hash = "sha256-B7laE1z1+ldbo6JkjlDjZynG5JiMZ/3uNHPHMP6LRak=";
1200
1200
+
})
1201
1201
+
(fetchNuGet {
1202
1202
+
pname = "System.Net.Sockets";
1203
1203
+
version = "4.3.0";
1204
1204
+
hash = "sha256-il7dr5VT/QWDg/0cuh+4Es2u8LY//+qqiY9BZmYxSus=";
1205
1205
+
})
1206
1206
+
(fetchNuGet {
1207
1207
+
pname = "System.Net.WebHeaderCollection";
1208
1208
+
version = "4.3.0";
1209
1209
+
hash = "sha256-wpRP3D/2YjpFmqU7Q42L/+/hChEVMlwU1sjysGVrQ1c=";
1210
1210
+
})
1211
1211
+
(fetchNuGet {
1212
1212
+
pname = "System.Net.WebSockets";
1213
1213
+
version = "4.3.0";
1214
1214
+
hash = "sha256-l3h3cF1cCC9zMhWLKSDnZBZvFADUd0Afe2+iAwBA0r0=";
1215
1215
+
})
1216
1216
+
(fetchNuGet {
1217
1217
+
pname = "System.Net.WebSockets.Client";
1218
1218
+
version = "4.3.2";
1219
1219
+
hash = "sha256-MwNKwIIpBJhC4Na6EYWMmVyPCa064Yp1aL0opx1FfoA=";
1220
1220
+
})
1221
1221
+
(fetchNuGet {
1222
1222
+
pname = "System.Numerics.Tensors";
1223
1223
+
version = "8.0.0";
1224
1224
+
hash = "sha256-rXTD0dhqJyk5oK54MIdsq3qJ1NbeTByxyrdHq2thv0w=";
1225
1225
+
})
1226
1226
+
(fetchNuGet {
1227
1227
+
pname = "System.ObjectModel";
1228
1228
+
version = "4.0.12";
1229
1229
+
hash = "sha256-MudZ/KYcvYsn2cST3EE049mLikrNkmE7QoUoYKKby+s=";
1230
1230
+
})
1231
1231
+
(fetchNuGet {
1232
1232
+
pname = "System.ObjectModel";
1233
1233
+
version = "4.3.0";
1234
1234
+
hash = "sha256-gtmRkWP2Kwr3nHtDh0yYtce38z1wrGzb6fjm4v8wN6Q=";
1235
1235
+
})
1236
1236
+
(fetchNuGet {
1237
1237
+
pname = "System.Private.Uri";
1238
1238
+
version = "4.3.0";
1239
1239
+
hash = "sha256-fVfgcoP4AVN1E5wHZbKBIOPYZ/xBeSIdsNF+bdukIRM=";
1240
1240
+
})
1241
1241
+
(fetchNuGet {
1242
1242
+
pname = "System.Reflection";
1243
1243
+
version = "4.1.0";
1244
1244
+
hash = "sha256-idZHGH2Yl/hha1CM4VzLhsaR8Ljo/rV7TYe7mwRJSMs=";
1245
1245
+
})
1246
1246
+
(fetchNuGet {
1247
1247
+
pname = "System.Reflection";
1248
1248
+
version = "4.3.0";
1249
1249
+
hash = "sha256-NQSZRpZLvtPWDlvmMIdGxcVuyUnw92ZURo0hXsEshXY=";
1250
1250
+
})
1251
1251
+
(fetchNuGet {
1252
1252
+
pname = "System.Reflection.Emit";
1253
1253
+
version = "4.0.1";
1254
1254
+
hash = "sha256-F1MvYoQWHCY89/O4JBwswogitqVvKuVfILFqA7dmuHk=";
1255
1255
+
})
1256
1256
+
(fetchNuGet {
1257
1257
+
pname = "System.Reflection.Emit";
1258
1258
+
version = "4.3.0";
1259
1259
+
hash = "sha256-5LhkDmhy2FkSxulXR+bsTtMzdU3VyyuZzsxp7/DwyIU=";
1260
1260
+
})
1261
1261
+
(fetchNuGet {
1262
1262
+
pname = "System.Reflection.Emit.ILGeneration";
1263
1263
+
version = "4.0.1";
1264
1264
+
hash = "sha256-YG+eJBG5P+5adsHiw/lhJwvREnvdHw6CJyS8ZV4Ujd0=";
1265
1265
+
})
1266
1266
+
(fetchNuGet {
1267
1267
+
pname = "System.Reflection.Emit.ILGeneration";
1268
1268
+
version = "4.3.0";
1269
1269
+
hash = "sha256-mKRknEHNls4gkRwrEgi39B+vSaAz/Gt3IALtS98xNnA=";
1270
1270
+
})
1271
1271
+
(fetchNuGet {
1272
1272
+
pname = "System.Reflection.Emit.Lightweight";
1273
1273
+
version = "4.0.1";
1274
1274
+
hash = "sha256-uVvNOnL64CPqsgZP2OLqNmxdkZl6Q0fTmKmv9gcBi+g=";
1275
1275
+
})
1276
1276
+
(fetchNuGet {
1277
1277
+
pname = "System.Reflection.Emit.Lightweight";
1278
1278
+
version = "4.3.0";
1279
1279
+
hash = "sha256-rKx4a9yZKcajloSZHr4CKTVJ6Vjh95ni+zszPxWjh2I=";
1280
1280
+
})
1281
1281
+
(fetchNuGet {
1282
1282
+
pname = "System.Reflection.Extensions";
1283
1283
+
version = "4.0.1";
1284
1284
+
hash = "sha256-NsfmzM9G/sN3H8X2cdnheTGRsh7zbRzvegnjDzDH/FQ=";
1285
1285
+
})
1286
1286
+
(fetchNuGet {
1287
1287
+
pname = "System.Reflection.Extensions";
1288
1288
+
version = "4.3.0";
1289
1289
+
hash = "sha256-mMOCYzUenjd4rWIfq7zIX9PFYk/daUyF0A8l1hbydAk=";
1290
1290
+
})
1291
1291
+
(fetchNuGet {
1292
1292
+
pname = "System.Reflection.Metadata";
1293
1293
+
version = "1.8.1";
1294
1294
+
hash = "sha256-UpaoRYSGqMCk00NmMbCTYsqwMKJbEI8vg0TxlOqgvZ8=";
1295
1295
+
})
1296
1296
+
(fetchNuGet {
1297
1297
+
pname = "System.Reflection.Primitives";
1298
1298
+
version = "4.0.1";
1299
1299
+
hash = "sha256-SFSfpWEyCBMAOerrMCOiKnpT+UAWTvRcmoRquJR6Vq0=";
1300
1300
+
})
1301
1301
+
(fetchNuGet {
1302
1302
+
pname = "System.Reflection.Primitives";
1303
1303
+
version = "4.3.0";
1304
1304
+
hash = "sha256-5ogwWB4vlQTl3jjk1xjniG2ozbFIjZTL9ug0usZQuBM=";
1305
1305
+
})
1306
1306
+
(fetchNuGet {
1307
1307
+
pname = "System.Reflection.TypeExtensions";
1308
1308
+
version = "4.1.0";
1309
1309
+
hash = "sha256-R0YZowmFda+xzKNR4kKg7neFoE30KfZwp/IwfRSKVK4=";
1310
1310
+
})
1311
1311
+
(fetchNuGet {
1312
1312
+
pname = "System.Reflection.TypeExtensions";
1313
1313
+
version = "4.3.0";
1314
1314
+
hash = "sha256-4U4/XNQAnddgQIHIJq3P2T80hN0oPdU2uCeghsDTWng=";
1315
1315
+
})
1316
1316
+
(fetchNuGet {
1317
1317
+
pname = "System.Resources.ResourceManager";
1318
1318
+
version = "4.0.1";
1319
1319
+
hash = "sha256-cZ2/3/fczLjEpn6j3xkgQV9ouOVjy4Kisgw5xWw9kSw=";
1320
1320
+
})
1321
1321
+
(fetchNuGet {
1322
1322
+
pname = "System.Resources.ResourceManager";
1323
1323
+
version = "4.3.0";
1324
1324
+
hash = "sha256-idiOD93xbbrbwwSnD4mORA9RYi/D/U48eRUsn/WnWGo=";
1325
1325
+
})
1326
1326
+
(fetchNuGet {
1327
1327
+
pname = "System.Runtime";
1328
1328
+
version = "4.1.0";
1329
1329
+
hash = "sha256-FViNGM/4oWtlP6w0JC0vJU+k9efLKZ+yaXrnEeabDQo=";
1330
1330
+
})
1331
1331
+
(fetchNuGet {
1332
1332
+
pname = "System.Runtime";
1333
1333
+
version = "4.3.0";
1334
1334
+
hash = "sha256-51813WXpBIsuA6fUtE5XaRQjcWdQ2/lmEokJt97u0Rg=";
1335
1335
+
})
1336
1336
+
(fetchNuGet {
1337
1337
+
pname = "System.Runtime.CompilerServices.Unsafe";
1338
1338
+
version = "4.7.1";
1339
1339
+
hash = "sha256-UvyoDV8O0oY3HPG1GbA56YVdvwTGEfjYR5gW1O7IK4U=";
1340
1340
+
})
1341
1341
+
(fetchNuGet {
1342
1342
+
pname = "System.Runtime.CompilerServices.Unsafe";
1343
1343
+
version = "6.0.0";
1344
1344
+
hash = "sha256-bEG1PnDp7uKYz/OgLOWs3RWwQSVYm+AnPwVmAmcgp2I=";
1345
1345
+
})
1346
1346
+
(fetchNuGet {
1347
1347
+
pname = "System.Runtime.CompilerServices.Unsafe";
1348
1348
+
version = "6.0.0-rc.1.21451.13";
1349
1349
+
hash = "sha256-BgiqR6Y555tJEBEqDT5+yHCyQy5Wv9bLKlKWcQFiq2w=";
1350
1350
+
})
1351
1351
+
(fetchNuGet {
1352
1352
+
pname = "System.Runtime.Extensions";
1353
1353
+
version = "4.1.0";
1354
1354
+
hash = "sha256-X7DZ5CbPY7jHs20YZ7bmcXs9B5Mxptu/HnBUvUnNhGc=";
1355
1355
+
})
1356
1356
+
(fetchNuGet {
1357
1357
+
pname = "System.Runtime.Extensions";
1358
1358
+
version = "4.3.0";
1359
1359
+
hash = "sha256-wLDHmozr84v1W2zYCWYxxj0FR0JDYHSVRaRuDm0bd/o=";
1360
1360
+
})
1361
1361
+
(fetchNuGet {
1362
1362
+
pname = "System.Runtime.Handles";
1363
1363
+
version = "4.3.0";
1364
1364
+
hash = "sha256-KJ5aXoGpB56Y6+iepBkdpx/AfaJDAitx4vrkLqR7gms=";
1365
1365
+
})
1366
1366
+
(fetchNuGet {
1367
1367
+
pname = "System.Runtime.InteropServices";
1368
1368
+
version = "4.3.0";
1369
1369
+
hash = "sha256-8sDH+WUJfCR+7e4nfpftj/+lstEiZixWUBueR2zmHgI=";
1370
1370
+
})
1371
1371
+
(fetchNuGet {
1372
1372
+
pname = "System.Runtime.InteropServices.RuntimeInformation";
1373
1373
+
version = "4.0.0";
1374
1374
+
hash = "sha256-5j53amb76A3SPiE3B0llT2XPx058+CgE7OXL4bLalT4=";
1375
1375
+
})
1376
1376
+
(fetchNuGet {
1377
1377
+
pname = "System.Runtime.InteropServices.RuntimeInformation";
1378
1378
+
version = "4.3.0";
1379
1379
+
hash = "sha256-MYpl6/ZyC6hjmzWRIe+iDoldOMW1mfbwXsduAnXIKGA=";
1380
1380
+
})
1381
1381
+
(fetchNuGet {
1382
1382
+
pname = "System.Runtime.Numerics";
1383
1383
+
version = "4.3.0";
1384
1384
+
hash = "sha256-P5jHCgMbgFMYiONvzmaKFeOqcAIDPu/U8bOVrNPYKqc=";
1385
1385
+
})
1386
1386
+
(fetchNuGet {
1387
1387
+
pname = "System.Security.AccessControl";
1388
1388
+
version = "4.5.0";
1389
1389
+
hash = "sha256-AFsKPb/nTk2/mqH/PYpaoI8PLsiKKimaXf+7Mb5VfPM=";
1390
1390
+
})
1391
1391
+
(fetchNuGet {
1392
1392
+
pname = "System.Security.AccessControl";
1393
1393
+
version = "5.0.0";
1394
1394
+
hash = "sha256-ueSG+Yn82evxyGBnE49N4D+ngODDXgornlBtQ3Omw54=";
1395
1395
+
})
1396
1396
+
(fetchNuGet {
1397
1397
+
pname = "System.Security.Claims";
1398
1398
+
version = "4.3.0";
1399
1399
+
hash = "sha256-Fua/rDwAqq4UByRVomAxMPmDBGd5eImRqHVQIeSxbks=";
1400
1400
+
})
1401
1401
+
(fetchNuGet {
1402
1402
+
pname = "System.Security.Cryptography.Algorithms";
1403
1403
+
version = "4.3.0";
1404
1404
+
hash = "sha256-tAJvNSlczYBJ3Ed24Ae27a55tq/n4D3fubNQdwcKWA8=";
1405
1405
+
})
1406
1406
+
(fetchNuGet {
1407
1407
+
pname = "System.Security.Cryptography.Cng";
1408
1408
+
version = "4.3.0";
1409
1409
+
hash = "sha256-u17vy6wNhqok91SrVLno2M1EzLHZm6VMca85xbVChsw=";
1410
1410
+
})
1411
1411
+
(fetchNuGet {
1412
1412
+
pname = "System.Security.Cryptography.Csp";
1413
1413
+
version = "4.3.0";
1414
1414
+
hash = "sha256-oefdTU/Z2PWU9nlat8uiRDGq/PGZoSPRgkML11pmvPQ=";
1415
1415
+
})
1416
1416
+
(fetchNuGet {
1417
1417
+
pname = "System.Security.Cryptography.Encoding";
1418
1418
+
version = "4.3.0";
1419
1419
+
hash = "sha256-Yuge89N6M+NcblcvXMeyHZ6kZDfwBv3LPMDiF8HhJss=";
1420
1420
+
})
1421
1421
+
(fetchNuGet {
1422
1422
+
pname = "System.Security.Cryptography.OpenSsl";
1423
1423
+
version = "4.3.0";
1424
1424
+
hash = "sha256-DL+D2sc2JrQiB4oAcUggTFyD8w3aLEjJfod5JPe+Oz4=";
1425
1425
+
})
1426
1426
+
(fetchNuGet {
1427
1427
+
pname = "System.Security.Cryptography.Primitives";
1428
1428
+
version = "4.3.0";
1429
1429
+
hash = "sha256-fnFi7B3SnVj5a+BbgXnbjnGNvWrCEU6Hp/wjsjWz318=";
1430
1430
+
})
1431
1431
+
(fetchNuGet {
1432
1432
+
pname = "System.Security.Cryptography.X509Certificates";
1433
1433
+
version = "4.3.0";
1434
1434
+
hash = "sha256-MG3V/owDh273GCUPsGGraNwaVpcydupl3EtPXj6TVG0=";
1435
1435
+
})
1436
1436
+
(fetchNuGet {
1437
1437
+
pname = "System.Security.Principal";
1438
1438
+
version = "4.3.0";
1439
1439
+
hash = "sha256-rjudVUHdo8pNJg2EVEn0XxxwNo5h2EaYo+QboPkXlYk=";
1440
1440
+
})
1441
1441
+
(fetchNuGet {
1442
1442
+
pname = "System.Security.Principal.Windows";
1443
1443
+
version = "4.3.0";
1444
1444
+
hash = "sha256-mbdLVUcEwe78p3ZnB6jYsizNEqxMaCAWI3tEQNhRQAE=";
1445
1445
+
})
1446
1446
+
(fetchNuGet {
1447
1447
+
pname = "System.Security.Principal.Windows";
1448
1448
+
version = "4.5.0";
1449
1449
+
hash = "sha256-BkUYNguz0e4NJp1kkW7aJBn3dyH9STwB5N8XqnlCsmY=";
1450
1450
+
})
1451
1451
+
(fetchNuGet {
1452
1452
+
pname = "System.Security.Principal.Windows";
1453
1453
+
version = "5.0.0";
1454
1454
+
hash = "sha256-CBOQwl9veFkrKK2oU8JFFEiKIh/p+aJO+q9Tc2Q/89Y=";
1455
1455
+
})
1456
1456
+
(fetchNuGet {
1457
1457
+
pname = "System.Text.Encoding";
1458
1458
+
version = "4.0.11";
1459
1459
+
hash = "sha256-PEailOvG05CVgPTyKLtpAgRydlSHmtd5K0Y8GSHY2Lc=";
1460
1460
+
})
1461
1461
+
(fetchNuGet {
1462
1462
+
pname = "System.Text.Encoding";
1463
1463
+
version = "4.3.0";
1464
1464
+
hash = "sha256-GctHVGLZAa/rqkBNhsBGnsiWdKyv6VDubYpGkuOkBLg=";
1465
1465
+
})
1466
1466
+
(fetchNuGet {
1467
1467
+
pname = "System.Text.Encoding.Extensions";
1468
1468
+
version = "4.3.0";
1469
1469
+
hash = "sha256-vufHXg8QAKxHlujPHHcrtGwAqFmsCD6HKjfDAiHyAYc=";
1470
1470
+
})
1471
1471
+
(fetchNuGet {
1472
1472
+
pname = "System.Text.RegularExpressions";
1473
1473
+
version = "4.3.0";
1474
1474
+
hash = "sha256-VLCk1D1kcN2wbAe3d0YQM/PqCsPHOuqlBY1yd2Yo+K0=";
1475
1475
+
})
1476
1476
+
(fetchNuGet {
1477
1477
+
pname = "System.Threading";
1478
1478
+
version = "4.0.11";
1479
1479
+
hash = "sha256-mob1Zv3qLQhQ1/xOLXZmYqpniNUMCfn02n8ZkaAhqac=";
1480
1480
+
})
1481
1481
+
(fetchNuGet {
1482
1482
+
pname = "System.Threading";
1483
1483
+
version = "4.3.0";
1484
1484
+
hash = "sha256-ZDQ3dR4pzVwmaqBg4hacZaVenQ/3yAF/uV7BXZXjiWc=";
1485
1485
+
})
1486
1486
+
(fetchNuGet {
1487
1487
+
pname = "System.Threading.Channels";
1488
1488
+
version = "6.0.0";
1489
1489
+
hash = "sha256-klGYnsyrjvXaGeqgfnMf/dTAMNtcHY+zM4Xh6v2JfuE=";
1490
1490
+
})
1491
1491
+
(fetchNuGet {
1492
1492
+
pname = "System.Threading.Channels";
1493
1493
+
version = "8.0.0";
1494
1494
+
hash = "sha256-c5TYoLNXDLroLIPnlfyMHk7nZ70QAckc/c7V199YChg=";
1495
1495
+
})
1496
1496
+
(fetchNuGet {
1497
1497
+
pname = "System.Threading.Tasks";
1498
1498
+
version = "4.0.11";
1499
1499
+
hash = "sha256-5SLxzFg1df6bTm2t09xeI01wa5qQglqUwwJNlQPJIVs=";
1500
1500
+
})
1501
1501
+
(fetchNuGet {
1502
1502
+
pname = "System.Threading.Tasks";
1503
1503
+
version = "4.3.0";
1504
1504
+
hash = "sha256-Z5rXfJ1EXp3G32IKZGiZ6koMjRu0n8C1NGrwpdIen4w=";
1505
1505
+
})
1506
1506
+
(fetchNuGet {
1507
1507
+
pname = "System.Threading.Tasks.Extensions";
1508
1508
+
version = "4.3.0";
1509
1509
+
hash = "sha256-X2hQ5j+fxcmnm88Le/kSavjiGOmkcumBGTZKBLvorPc=";
1510
1510
+
})
1511
1511
+
(fetchNuGet {
1512
1512
+
pname = "System.Threading.ThreadPool";
1513
1513
+
version = "4.3.0";
1514
1514
+
hash = "sha256-wW0QdvssRoaOfQLazTGSnwYTurE4R8FxDx70pYkL+gg=";
1515
1515
+
})
1516
1516
+
(fetchNuGet {
1517
1517
+
pname = "System.Threading.Timer";
1518
1518
+
version = "4.3.0";
1519
1519
+
hash = "sha256-pmhslmhQhP32TWbBzoITLZ4BoORBqYk25OWbru04p9s=";
1520
1520
+
})
1521
1521
+
(fetchNuGet {
1522
1522
+
pname = "System.Xml.ReaderWriter";
1523
1523
+
version = "4.3.0";
1524
1524
+
hash = "sha256-QQ8KgU0lu4F5Unh+TbechO//zaAGZ4MfgvW72Cn1hzA=";
1525
1525
+
})
1526
1526
+
(fetchNuGet {
1527
1527
+
pname = "System.Xml.XDocument";
1528
1528
+
version = "4.3.0";
1529
1529
+
hash = "sha256-rWtdcmcuElNOSzCehflyKwHkDRpiOhJJs8CeQ0l1CCI=";
1530
1530
+
})
1531
1531
+
(fetchNuGet {
1532
1532
+
pname = "TagLibSharp";
1533
1533
+
version = "2.3.0";
1534
1534
+
hash = "sha256-PD9bVZiPaeC8hNx2D+uDUf701cCaMi2IRi5oPTNN+/w=";
1535
1535
+
})
1536
1536
+
(fetchNuGet {
1537
1537
+
pname = "Velopack";
1538
1538
+
version = "0.0.915";
1539
1539
+
hash = "sha256-L31qPk7/MLexF+5FP4gdNfwAWB6kNlvMFL2nfkQBSQU=";
1540
1540
+
})
1541
1541
+
(fetchNuGet {
1542
1542
+
pname = "Vortice.D3DCompiler";
1543
1543
+
version = "2.4.2";
1544
1544
+
hash = "sha256-LXdgts8lKbTU67c1W001XRbq5nenzf8XcYCRxc75jR8=";
1545
1545
+
})
1546
1546
+
(fetchNuGet {
1547
1547
+
pname = "Vortice.Direct3D11";
1548
1548
+
version = "2.4.2";
1549
1549
+
hash = "sha256-hU4qzLKhv4QxiP2c9s4IZUGgeQxsOjRhgurrlXXq/qM=";
1550
1550
+
})
1551
1551
+
(fetchNuGet {
1552
1552
+
pname = "Vortice.DirectX";
1553
1553
+
version = "2.4.2";
1554
1554
+
hash = "sha256-LOIxdET0ynaJz70fakVwDYU0qm+1P0SfD1+I9P320oc=";
1555
1555
+
})
1556
1556
+
(fetchNuGet {
1557
1557
+
pname = "Vortice.DXGI";
1558
1558
+
version = "2.4.2";
1559
1559
+
hash = "sha256-/5r4f9iM/wxZLsauQDbq6DoTTdvuuhbcmNgaxVK1ep8=";
1560
1560
+
})
1561
1561
+
(fetchNuGet {
1562
1562
+
pname = "Vortice.Mathematics";
1563
1563
+
version = "1.4.25";
1564
1564
+
hash = "sha256-Mr/HVvwIeeDJtMNToP6kh2hyqud2zT31913HdhB4hm4=";
1565
1565
+
})
1566
1566
+
(fetchNuGet {
1567
1567
+
pname = "ZstdSharp.Port";
1568
1568
+
version = "0.8.1";
1569
1569
+
hash = "sha256-PeQvyz3lUrK+t+n1dFtNXCLztQtAfkqUuM6mOqBZHLg=";
1570
1570
+
})
331
1571
]
+5
-5
pkgs/by-name/os/osu-lazer/package.nix
···
21
21
22
22
buildDotnetModule rec {
23
23
pname = "osu-lazer";
24
24
-
version = "2024.1115.3";
24
24
+
version = "2024.1208.0";
25
25
26
26
src = fetchFromGitHub {
27
27
owner = "ppy";
28
28
repo = "osu";
29
29
-
rev = version;
30
30
-
hash = "sha256-AZN/zgHV6ydImOd1zUjYqXJqq5o0XGnvNvTTL/mIrHg=";
29
29
+
tag = version;
30
30
+
hash = "sha256-cMPVtzoTxIUVZNNAqF+H0873ZsXGluFEXwNDp7zOq8c=";
31
31
};
32
32
33
33
projectFile = "osu.Desktop/osu.Desktop.csproj";
···
74
74
--set OSU_EXTERNAL_UPDATE_PROVIDER 1
75
75
76
76
for i in 16 32 48 64 96 128 256 512 1024; do
77
77
-
install -D ./assets/lazer.png $out/share/icons/hicolor/''${i}x$i/apps/osu!.png
77
77
+
install -D ./assets/lazer.png $out/share/icons/hicolor/''${i}x$i/apps/osu.png
78
78
done
79
79
80
80
ln -sft $out/lib/${pname} ${SDL2}/lib/libSDL2${stdenvNoCC.hostPlatform.extensions.sharedLibrary}
···
88
88
desktopName = "osu!";
89
89
name = "osu";
90
90
exec = "osu!";
91
91
-
icon = "osu!";
91
91
+
icon = "osu";
92
92
comment = "Rhythm is just a *click* away (no score submission or multiplayer, see osu-lazer-bin)";
93
93
type = "Application";
94
94
categories = [ "Game" ];
+3
-3
pkgs/by-name/py/pyflyby/package.nix
···
4
4
fetchFromGitHub,
5
5
}:
6
6
let
7
7
-
version = "1.9.8";
7
7
+
version = "1.9.10";
8
8
in
9
9
python3.pkgs.buildPythonApplication rec {
10
10
inherit version;
···
14
14
src = fetchFromGitHub {
15
15
owner = "deshaw";
16
16
repo = "pyflyby";
17
17
-
rev = "refs/tags/${version}";
18
18
-
hash = "sha256-lMOLdPirPrld/DfX7YPdFJ+4K451aATz4vql4z+lLO0=";
17
17
+
tag = version;
18
18
+
hash = "sha256-Q0Z429DUB0PpPNGajuMQBi4K6cotAC8hXP1bo69O7y8=";
19
19
};
20
20
21
21
build-system = with python3.pkgs; [
+2
-2
pkgs/by-name/rd/rdma-core/package.nix
···
16
16
17
17
stdenv.mkDerivation (finalAttrs: {
18
18
pname = "rdma-core";
19
19
-
version = "54.0";
19
19
+
version = "55.0";
20
20
21
21
src = fetchFromGitHub {
22
22
owner = "linux-rdma";
23
23
repo = "rdma-core";
24
24
rev = "v${finalAttrs.version}";
25
25
-
hash = "sha256-nxpqF9I8GGni1Tsjw3ATlRl6ZdVKfRMccuGWUb8IAkA=";
25
25
+
hash = "sha256-ZXs0yxwL00Kyp8b516sKslm4yvyQEm/UMtag2a2X+5c=";
26
26
};
27
27
28
28
strictDeps = true;
+39
-16
pkgs/by-name/s7/s7/package.nix
···
2
2
lib,
3
3
fetchFromGitLab,
4
4
stdenv,
5
5
-
notcurses,
5
5
+
6
6
+
flint3,
6
7
gmp,
7
7
-
mpfr,
8
8
libmpc,
9
9
-
flint3,
9
9
+
mpfr,
10
10
+
notcurses,
11
11
+
12
12
+
gsl,
13
13
+
man,
14
14
+
pkg-config,
15
15
+
10
16
unstableGitUpdater,
11
17
writeScript,
12
18
}:
···
33
39
34
40
# The following scripts are modified from [Guix's](https://packages.guix.gnu.org/packages/s7/).
35
41
36
36
-
patchPhase = ''
37
37
-
runHook prePatch
38
38
-
42
42
+
postPatch = ''
39
43
substituteInPlace s7.c \
40
44
--replace-fail libc_s7.so $out/lib/libc_s7.so
41
41
-
42
42
-
runHook postPatch
43
45
'';
44
46
45
47
buildPhase = ''
···
78
80
-O2 -I. \
79
81
-ldl -lm
80
82
81
81
-
cc ffitest.c s7.o -o ffitest \
82
82
-
-I. \
83
83
-
-Wl,-export-dynamic \
84
84
-
-ldl -lm
85
85
-
86
83
./s7-repl libc.scm
87
84
88
85
runHook postBuild
···
99
96
dst_doc=$out/share/doc/s7
100
97
mkdir -p $dst_bin $dst_lib $dst_inc $dst_share $dst_scm $dst_doc
101
98
102
102
-
cp -pr -t $dst_bin s7-repl s7-nrepl
99
99
+
mv -t $dst_bin s7-repl s7-nrepl
103
100
ln -s s7-nrepl $dst_bin/s7
104
104
-
cp -pr -t $dst_lib libarb_s7.so libnotcurses_s7.so libc_s7.so
101
101
+
mv -t $dst_lib libarb_s7.so libnotcurses_s7.so libc_s7.so
105
102
cp -pr -t $dst_share s7.c
106
103
cp -pr -t $dst_inc s7.h
107
104
cp -pr -t $dst_scm *.scm
···
112
109
113
110
doInstallCheck = true;
114
111
112
112
+
nativeInstallCheckInputs = [
113
113
+
man
114
114
+
pkg-config
115
115
+
];
116
116
+
117
117
+
installCheckInputs = [
118
118
+
gsl
119
119
+
];
120
120
+
121
121
+
/*
122
122
+
XXX: The upstream assumes that `$HOME` is `/home/$USER`, and the source files
123
123
+
lie in `$HOME/cl` . The script presented here uses a fake `$USER` and a
124
124
+
symbolic linked `$HOME/cl` , which make the test suite work but do not meet
125
125
+
the conditions completely.
126
126
+
*/
115
127
installCheckPhase = ''
116
128
runHook preInstallCheck
117
129
118
118
-
$dst_bin/s7-repl s7test.scm
130
130
+
cc ffitest.c s7.o -o ffitest \
131
131
+
-I. \
132
132
+
-Wl,-export-dynamic \
133
133
+
-ldl -lm
134
134
+
mv ffitest $dst_bin
135
135
+
mkdir -p nix-build/home
136
136
+
ln -sr . nix-build/home/cl
137
137
+
138
138
+
USER=nix-s7-builder PATH="$dst_bin:$PATH" HOME=$PWD/nix-build/home \
139
139
+
s7-repl s7test.scm
140
140
+
141
141
+
rm $dst_bin/ffitest
119
142
120
143
runHook postInstallCheck
121
144
'';
+2
-2
pkgs/by-name/si/simdutf/package.nix
···
8
8
9
9
stdenv.mkDerivation (finalAttrs: {
10
10
pname = "simdutf";
11
11
-
version = "5.6.3";
11
11
+
version = "5.6.4";
12
12
13
13
src = fetchFromGitHub {
14
14
owner = "simdutf";
15
15
repo = "simdutf";
16
16
rev = "v${finalAttrs.version}";
17
17
-
hash = "sha256-V5Z1EZRm5FaNFz1GSgTYD3ONF4CSE594FLa1e/DETms=";
17
17
+
hash = "sha256-5MsNKsqHc4L2hCQW/LuJxKUmye6UV/IUEEMlRRMl2b8=";
18
18
};
19
19
20
20
# Fix build on darwin
+3
-3
pkgs/by-name/st/starboard/package.nix
···
7
7
8
8
buildGoModule rec {
9
9
pname = "starboard";
10
10
-
version = "0.15.22";
10
10
+
version = "0.15.23";
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "aquasecurity";
14
14
repo = pname;
15
15
rev = "v${version}";
16
16
-
hash = "sha256-s/DU9CKXl0rULuUWCjlqz2KU/07eRNwKdrYHiPwukxM=";
16
16
+
hash = "sha256-eBAOrIGlAJ7r9UviCZUELG5p3k08OqvFUGZ8Ovnxsis=";
17
17
# populate values that require us to use git. By doing this in postFetch we
18
18
# can delete .git afterwards and maintain better reproducibility of the src.
19
19
leaveDotGit = true;
···
25
25
find "$out" -name .git -print0 | xargs -0 rm -rf
26
26
'';
27
27
};
28
28
-
vendorHash = "sha256-oiuTOU9e2aMZZbCqKKvGaxoYUupgQ0qATD1r3RU8fmw=";
28
28
+
vendorHash = "sha256-meZMuo+3Qv95TYYDslMpdfFG0KAbY/tufjcT7HgZB2c=";
29
29
30
30
nativeBuildInputs = [ installShellFiles ];
31
31
+15
pkgs/by-name/tt/ttaenc/makefile.patch
···
1
1
+
--- a/Makefile
2
2
+
+++ b/Makefile
3
3
+
@@ -8,10 +8,10 @@
4
4
+
INSDIR = /usr/bin
5
5
+
6
6
+
ttaenc: $(patsubst %.c, %.o, $(wildcard *.c))
7
7
+
- gcc $^ -o $@ $(CFLAGS)
8
8
+
+ $(CC) $^ -o $@ $(CFLAGS)
9
9
+
10
10
+
%.o: %.c
11
11
+
- gcc -c $(CFLAGS) $<
12
12
+
+ $(CC) -c $(CFLAGS) $<
13
13
+
14
14
+
install:
15
15
+
[ -d "$(INSDIR)" ] || mkdir $(INSDIR)
+44
pkgs/by-name/tt/ttaenc/package.nix
···
1
1
+
{
2
2
+
stdenv,
3
3
+
lib,
4
4
+
fetchurl,
5
5
+
}:
6
6
+
stdenv.mkDerivation (finalAttrs: {
7
7
+
pname = "ttaenc";
8
8
+
version = "3.4.1";
9
9
+
10
10
+
src = fetchurl {
11
11
+
url = "mirror://sourceforge/tta/ttaenc-${finalAttrs.version}-src.tgz";
12
12
+
sha256 = "sha256-ssnIsBWsxYZPCCoBV/LgnFEX0URTIctheOkltEi+PcY=";
13
13
+
};
14
14
+
15
15
+
patches = [
16
16
+
./makefile.patch # Use stdenv's CC
17
17
+
./ttaenc-inline.patch # Patch __inline used into always_inline for both GCC and clang
18
18
+
];
19
19
+
20
20
+
makeFlags = [ "INSDIR=$(out)/bin" ];
21
21
+
22
22
+
preBuild = ''
23
23
+
# From the Makefile, with `-msse` removed, since we have those on by x86_64 by default.
24
24
+
makeFlagsArray+=(CFLAGS="-Wall -O2 -fomit-frame-pointer -funroll-loops -fforce-addr -falign-functions=4")
25
25
+
'';
26
26
+
27
27
+
postInstall = ''
28
28
+
# Copy docs
29
29
+
install -dm755 "$out/share/doc/${finalAttrs.pname}"
30
30
+
install -m644 "ChangeLog-${finalAttrs.version}" README "$out/share/doc/${finalAttrs.pname}"
31
31
+
'';
32
32
+
33
33
+
meta = {
34
34
+
description = "Lossless compressor for multichannel 8, 16 and 24 bits audio data, with the ability of password data protection";
35
35
+
homepage = "https://sourceforge.net/projects/tta/";
36
36
+
license = with lib.licenses; [
37
37
+
gpl3Only
38
38
+
lgpl3Only
39
39
+
];
40
40
+
platforms = lib.platforms.unix;
41
41
+
mainProgram = "ttaenc";
42
42
+
maintainers = with lib.maintainers; [ natsukagami ];
43
43
+
};
44
44
+
})
+10
pkgs/by-name/tt/ttaenc/ttaenc-inline.patch
···
1
1
+
--- a/ttaenc.c
2
2
+
+++ b/ttaenc.c
3
3
+
@@ -10,6 +10,7 @@
4
4
+
*/
5
5
+
6
6
+
#include "ttaenc.h"
7
7
+
+#define __inline static inline __attribute__((always_inline))
8
8
+
9
9
+
/******************* static variables and structures *******************/
10
10
+
+3
-3
pkgs/by-name/va/vault-ssh-plus/package.nix
···
9
9
}:
10
10
buildGoModule rec {
11
11
pname = "vault-ssh-plus";
12
12
-
version = "0.7.5";
12
12
+
version = "0.7.6";
13
13
14
14
src = fetchFromGitHub {
15
15
owner = "isometry";
16
16
repo = pname;
17
17
rev = "v${version}";
18
18
-
hash = "sha256-A6kgMQOGtrRf5lSbheyJ41fc5l9VkiPDVDYGHVh9Hic=";
18
18
+
hash = "sha256-bP1edeJj3BXsXZJn7/71AVMEnHvMi8jB4eNc5cpfxyE=";
19
19
};
20
20
21
21
-
vendorHash = "sha256-FBOmRXD6dW3B9LRKfCa1kzWmds71ndi9go8Lp7lOJlU=";
21
21
+
vendorHash = "sha256-Xfan2UykDkmndePiyaHpQ050McAreOq0VmDxAm+2K9A=";
22
22
23
23
nativeBuildInputs = [ makeWrapper ];
24
24
+54
pkgs/by-name/xc/xcursor-pro/package.nix
···
1
1
+
{
2
2
+
stdenvNoCC,
3
3
+
lib,
4
4
+
fetchurl,
5
5
+
variants ? [ ],
6
6
+
}:
7
7
+
8
8
+
let
9
9
+
sources = import ./sources.nix;
10
10
+
knownVariants = builtins.attrNames sources;
11
11
+
selectedVariants =
12
12
+
if (variants == [ ]) then
13
13
+
knownVariants
14
14
+
else
15
15
+
let
16
16
+
unknownVariants = lib.subtractLists knownVariants variants;
17
17
+
in
18
18
+
if (unknownVariants != [ ]) then
19
19
+
throw "Unknown variant(s): ${lib.concatStringsSep unknownVariants}"
20
20
+
else
21
21
+
variants;
22
22
+
in
23
23
+
stdenvNoCC.mkDerivation (finalAttrs: {
24
24
+
pname = "xcursor-pro";
25
25
+
version = "2.0.2";
26
26
+
srcs = map (variant: fetchurl { inherit (sources.${variant}) url sha256; }) selectedVariants;
27
27
+
28
28
+
sourceRoot = ".";
29
29
+
30
30
+
installPhase = ''
31
31
+
runHook preInstall
32
32
+
33
33
+
for theme in XCursor-Pro-{${lib.concatStringsSep "," selectedVariants}}; do
34
34
+
mkdir -p $out/share/icons/$theme/cursors
35
35
+
cp -a $theme/cursors/* $out/share/icons/$theme/cursors/
36
36
+
install -m644 $theme/index.theme $out/share/icons/$theme/index.theme
37
37
+
done
38
38
+
39
39
+
runHook postInstall
40
40
+
'';
41
41
+
42
42
+
passthru.updateScript = ./update.sh;
43
43
+
44
44
+
meta = {
45
45
+
homepage = "https://github.com/ful1e5/XCursor-pro";
46
46
+
description = "Modern XCursors";
47
47
+
license = lib.licenses.gpl3;
48
48
+
platforms = lib.platforms.unix;
49
49
+
maintainers = with lib.maintainers; [
50
50
+
lactose
51
51
+
midirhee12
52
52
+
];
53
53
+
};
54
54
+
})
+15
pkgs/by-name/xc/xcursor-pro/sources.nix
···
1
1
+
{
2
2
+
Dark = {
3
3
+
url = "https://github.com/ful1e5/XCursor-pro/releases/download/v2.0.2/XCursor-Pro-Dark.tar.xz";
4
4
+
sha256 = "12r7b2wygasl5yk0k5m6b640q4b23k072myzpz8s5jkyvnp3p84n";
5
5
+
};
6
6
+
Light = {
7
7
+
url = "https://github.com/ful1e5/XCursor-pro/releases/download/v2.0.2/XCursor-Pro-Light.tar.xz";
8
8
+
sha256 = "19vddq8ajdxxzl3fnvac7p4lmb2hvyszpl25f5nmpm84xwp1kdla";
9
9
+
};
10
10
+
Red = {
11
11
+
url = "https://github.com/ful1e5/XCursor-pro/releases/download/v2.0.2/XCursor-Pro-Red.tar.xz";
12
12
+
sha256 = "00rhqmcfczy3nvk95rgy22mi6yqpp7ggbxck1z0ay2qv6cfics9m";
13
13
+
};
14
14
+
}
15
15
+
# old version was 2.0.1
+36
pkgs/by-name/xc/xcursor-pro/update.sh
···
1
1
+
#!/usr/bin/env nix-shell
2
2
+
#! nix-shell -i bash -p nix-prefetch jq
3
3
+
4
4
+
latest_release=$(curl --silent https://api.github.com/repos/ful1e5/XCursor-pro/releases/latest)
5
5
+
version=$(jq -r '.tag_name' <<<"$latest_release")
6
6
+
version="${version#*v}"
7
7
+
8
8
+
dirname="$(dirname "$0")"
9
9
+
if [ "$UPDATE_NIX_OLD_VERSION" = "$version" ]; then
10
10
+
printf 'No new version available, current: %s\n' $version
11
11
+
exit 0
12
12
+
else
13
13
+
printf 'Updated to version %s\n' $version
14
14
+
sed -i "s/version = \"$UPDATE_NIX_OLD_VERSION\"/version = \"$version\"/" "$dirname/package.nix"
15
15
+
fi
16
16
+
17
17
+
printf '{\n' > "$dirname/sources.nix"
18
18
+
19
19
+
while
20
20
+
read -r name
21
21
+
read -r url
22
22
+
do
23
23
+
variant="${name#*-*-}"
24
24
+
variant="${variant%%.*}"
25
25
+
26
26
+
{
27
27
+
printf ' %s = {\n' "$variant"
28
28
+
printf ' url = \"%s\";\n' "$url"
29
29
+
printf ' sha256 = \"%s\";\n' "$(nix-prefetch-url "$url")"
30
30
+
printf ' };\n'
31
31
+
} >> "$dirname/sources.nix"
32
32
+
done < <(jq -r '.assets[] |
33
33
+
select(.name | endswith(".tar.xz") and (contains("all") | not)) |
34
34
+
.name, .browser_download_url' <<<"$latest_release")
35
35
+
36
36
+
printf '}\n' >> "$dirname/sources.nix"
+3
-3
pkgs/by-name/ya/yaralyzer/package.nix
···
6
6
7
7
python3.pkgs.buildPythonApplication rec {
8
8
pname = "yaralyzer";
9
9
-
version = "0.9.4";
9
9
+
version = "0.9.5";
10
10
pyproject = true;
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "michelcrypt4d4mus";
14
14
repo = "yaralyzer";
15
15
-
rev = "refs/tags/v${version}";
16
16
-
hash = "sha256-rDb09XJOGWNARR0hhQQ91KXWepsLyR2a6/o3jagh6nA=";
15
15
+
tag = "v${version}";
16
16
+
hash = "sha256-A9JFUaBG4SwOkYPo/1p1i6mA47PyKiT+ngEYlfYAAE8=";
17
17
};
18
18
19
19
pythonRelaxDeps = [
+9
-3
pkgs/by-name/ze/zenoh/package.nix
···
7
7
}:
8
8
rustPlatform.buildRustPackage rec {
9
9
pname = "zenoh";
10
10
-
version = "1.0.3";
10
10
+
version = "1.1.0";
11
11
12
12
src = fetchFromGitHub {
13
13
owner = "eclipse-zenoh";
14
14
repo = "zenoh";
15
15
rev = version;
16
16
-
hash = "sha256-3k266sIP3A76HlFGUax4XIVQqwCKSvShJuBIuNWKJ2c=";
16
16
+
hash = "sha256-Ydmd3eCXn+svMak1I5LU4rJNhzEEc2MiG5MoSMNOJ00=";
17
17
};
18
18
19
19
-
cargoHash = "sha256-Ny7kLFJveibDmi48a5KS0GKumX4RUAkoeh66tx9oR5g=";
19
19
+
cargoHash = "sha256-AjMgnZ+GJPGMQsyeOQGyXpVrdw2zb7B9/KXWKlvKT1Q=";
20
20
21
21
cargoBuildFlags = [
22
22
"--workspace"
···
72
72
# thread 'openclose_udp_only_connect_with_interface_restriction' panicked at io/zenoh-transport/tests/unicast_openclose.rs:802:63:
73
73
# index out of bounds: the len is 0 but the index is 0
74
74
"--skip openclose_udp_only_listen_with_interface_restriction"
75
75
+
76
76
+
# These tests require a network interface and fail in the sandbox
77
77
+
"--skip openclose_quic_only_listen_with_interface_restriction"
78
78
+
"--skip openclose_quic_only_connect_with_interface_restriction"
79
79
+
"--skip openclose_tls_only_connect_with_interface_restriction"
80
80
+
"--skip openclose_tls_only_listen_with_interface_restriction"
75
81
];
76
82
77
83
passthru.tests.version = testers.testVersion {
+2
-2
pkgs/by-name/zm/zmap/package.nix
···
17
17
18
18
stdenv.mkDerivation rec {
19
19
pname = "zmap";
20
20
-
version = "4.2.0";
20
20
+
version = "4.3.1";
21
21
22
22
src = fetchFromGitHub {
23
23
owner = "zmap";
24
24
repo = pname;
25
25
rev = "v${version}";
26
26
-
sha256 = "sha256-4BSHNR/snwLf0/UsiCM8xzXk59G5GtsxQKb1F2VVL9c=";
26
26
+
sha256 = "sha256-QNOLbIDILwCNYlYrr2mET4K6x1zn8PIoXiqs/Oaj3eY=";
27
27
};
28
28
29
29
cmakeFlags = [ "-DRESPECT_INSTALL_PREFIX_CONFIG=ON" ];
+4
-1
pkgs/development/compilers/llvm/common/common-let.nix
···
9
9
10
10
rec {
11
11
llvm_meta = {
12
12
-
license = lib.licenses.ncsa;
12
12
+
license = with lib.licenses; [ ncsa ] ++
13
13
+
# Contributions after June 1st, 2024 are only licensed under asl20-llvm:
14
14
+
# https://github.com/llvm/llvm-project/pull/92394
15
15
+
lib.optional (lib.versionAtLeast release_version "19") asl20-llvm;
13
16
maintainers = lib.teams.llvm.members;
14
17
15
18
# See llvm/cmake/config-ix.cmake.
+3
-1
pkgs/development/coq-modules/ExtLib/default.nix
···
1
1
-
{ lib, mkCoqDerivation, coq, version ? null }:
1
1
+
{ lib, mkCoqDerivation, coq, stdlib, version ? null }:
2
2
3
3
mkCoqDerivation rec {
4
4
pname = "coq-ext-lib";
···
32
32
release."0.9.5".sha256 = "1b4cvz3llxin130g13calw5n1zmvi6wdd5yb8a41q7yyn2hd3msg";
33
33
release."0.9.4".sha256 = "1y66pamgsdxlq2w1338lj626ln70cwj7k53hxcp933g8fdsa4hp0";
34
34
releaseRev = v: "v${v}";
35
35
+
36
36
+
propagatedBuildInputs = [ stdlib ];
35
37
36
38
meta = {
37
39
description = "Collection of theories and plugins that may be useful in other Coq developments";
+3
pkgs/development/coq-modules/InfSeqExt/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
25
26
release."20230107".sha256 = "sha256-YMBzVIsLkIC+w2TeyHrKe29eWLIxrH3wIMZqhik8p9I=";
26
27
release."20200131".rev = "203d4c20211d6b17741f1fdca46dbc091f5e961a";
27
28
release."20200131".sha256 = "0xylkdmb2dqnnqinf3pigz4mf4zmczcbpjnn59g5g76m7f2cqxl0";
29
29
+
30
30
+
propagatedBuildInputs = [ stdlib ];
28
31
}
+2
pkgs/development/coq-modules/MenhirLib/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
let
···
32
33
"20211230".sha256 = "sha256-+ntl4ykkqJWEeJJzt6fO5r0X1J+4in2LJIj1N8R175w="; # coq 8.7 - 8.18
33
34
"20200624".sha256 = "sha256-8lMqwmOsqxU/45Xr+GeyU2aIjrClVdv3VamCCkF76jY="; # coq 8.7 - 8.13
34
35
};
36
36
+
propagatedBuildInputs = [ stdlib ];
35
37
preBuild = "cd coq-menhirlib/src";
36
38
meta = with lib; {
37
39
homepage = "https://gitlab.inria.fr/fpottier/menhir/-/tree/master/coq-menhirlib";
+3
pkgs/development/coq-modules/StructTact/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
31
32
release."20210328".sha256 = "sha256:1y5r1zm3hli10ah6lnj7n8hxad6rb6rgldd0g7m2fjibzvwqzhdg";
32
33
release."20181102".rev = "82a85b7ec07e71fa6b30cfc05f6a7bfb09ef2510";
33
34
release."20181102".sha256 = "08zry20flgj7qq37xk32kzmg4fg6d4wi9m7pf9aph8fd3j2a0b5v";
35
35
+
36
36
+
propagatedBuildInputs = [ stdlib ];
34
37
}
+3
pkgs/development/coq-modules/aac-tactics/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
96
97
] null;
97
98
98
99
mlPlugin = true;
100
100
+
101
101
+
propagatedBuildInputs = [ stdlib ];
99
102
100
103
meta = with lib; {
101
104
description = "Coq plugin providing tactics for rewriting universally quantified equations";
+3
pkgs/development/coq-modules/atbr/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
22
23
"8.20.0".sha256 = "sha256-Okhtq6Gnq4HA3tEZJvf8JBnmk3OKdm6hC1qINmoShmo=";
23
24
};
24
25
releaseRev = v: "v${v}";
26
26
+
27
27
+
propagatedBuildInputs = [ stdlib ];
25
28
26
29
mlPlugin = true;
27
30
+3
pkgs/development/coq-modules/bbv/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
23
24
"1.5".sha256 = "sha256-8/VPsfhNpuYpLmLC/hWszDhgvS6n8m7BRxUlea8PSUw=";
24
25
};
25
26
releaseRev = v: "v${v}";
27
27
+
28
28
+
propagatedBuildInputs = [ stdlib ];
26
29
27
30
meta = {
28
31
description = "An implementation of bitvectors in Coq.";
+3
pkgs/development/coq-modules/bignums/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
46
47
releaseRev = v: "${if lib.versions.isGe "9.0" v then "v" else "V"}${v}";
47
48
48
49
mlPlugin = true;
50
50
+
51
51
+
propagatedBuildInputs = [ stdlib ];
49
52
50
53
meta = {
51
54
license = lib.licenses.lgpl2;
+3
pkgs/development/coq-modules/ceres/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
28
29
release."0.4.0".sha256 = "sha256:0zwp3pn6fdj0qdig734zdczrls886al06mxqhhabms0jvvqijmbi";
29
30
30
31
useDuneifVersion = lib.versions.isGe "0.4.1";
32
32
+
33
33
+
propagatedBuildInputs = [ stdlib ];
31
34
32
35
meta = with lib; {
33
36
description = "Library for serialization to S-expressions";
+3
pkgs/development/coq-modules/coinduction/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
23
24
"1.9".sha256 = "sha256-bBU+xDklnzJBeN41GarW5KXzD8eKsOYtb//ULYumwWE=";
24
25
};
25
26
releaseRev = v: "v${v}";
27
27
+
28
28
+
propagatedBuildInputs = [ stdlib ];
26
29
27
30
mlPlugin = true;
28
31
+2
pkgs/development/coq-modules/coq-elpi/default.nix
···
3
3
mkCoqDerivation,
4
4
which,
5
5
coq,
6
6
+
stdlib,
6
7
version ? null,
7
8
}:
8
9
···
163
164
propagatedBuildInputs = [
164
165
coq.ocamlPackages.findlib
165
166
elpi
167
167
+
stdlib
166
168
];
167
169
168
170
meta = {
+3
pkgs/development/coq-modules/coq-hammer/tactics.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
60
61
releaseRev
61
62
;
62
63
};
64
64
+
65
65
+
propagatedBuildInputs = [ stdlib ];
63
66
64
67
mlPlugin = true;
65
68
+3
pkgs/development/coq-modules/equations/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
118
119
release."1.3.1+8.20".sha256 = "sha256-u8LB1KiACM5zVaoL7dSdHYvZgX7pf30VuqtjLLGuTzc=";
119
120
120
121
mlPlugin = true;
122
122
+
123
123
+
propagatedBuildInputs = [ stdlib ];
121
124
122
125
meta = with lib; {
123
126
homepage = "https://mattam82.github.io/Coq-Equations/";
+3
pkgs/development/coq-modules/flocq/default.nix
···
4
4
autoconf,
5
5
mkCoqDerivation,
6
6
coq,
7
7
+
stdlib,
7
8
version ? null,
8
9
}:
9
10
···
57
58
];
58
59
mlPlugin = true;
59
60
useMelquiondRemake.logpath = "Flocq";
61
61
+
62
62
+
propagatedBuildInputs = [ stdlib ];
60
63
61
64
meta = with lib; {
62
65
description = "Floating-point formalization for the Coq system";
+3
pkgs/development/coq-modules/itauto/default.nix
···
3
3
callPackage,
4
4
mkCoqDerivation,
5
5
coq,
6
6
+
stdlib,
6
7
version ? null,
7
8
}:
8
9
···
62
63
enableParallelBuilding = false;
63
64
64
65
passthru.tests.suite = callPackage ./test.nix { };
66
66
+
67
67
+
propagatedBuildInputs = [ stdlib ];
65
68
66
69
meta = with lib; {
67
70
description = "Reflexive SAT solver parameterised by a leaf tactic and Nelson-Oppen support";
+2
-2
pkgs/development/coq-modules/mathcomp/default.nix
···
12
12
13
13
{ lib, ncurses, graphviz, lua, fetchzip,
14
14
mkCoqDerivation, withDoc ? false, single ? false,
15
15
-
coq, hierarchy-builder, version ? null }@args:
15
15
+
coq, hierarchy-builder, stdlib, version ? null }@args:
16
16
17
17
let
18
18
repo = "math-comp";
···
78
78
mlPlugin = lib.versions.isLe "8.6" coq.coq-version;
79
79
nativeBuildInputs = lib.optionals withDoc [ graphviz lua ];
80
80
buildInputs = [ ncurses ];
81
81
-
propagatedBuildInputs = mathcomp-deps;
81
81
+
propagatedBuildInputs = [ stdlib ] ++ mathcomp-deps;
82
82
83
83
buildFlags = lib.optional withDoc "doc";
84
84
+3
pkgs/development/coq-modules/paco/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
39
40
release."4.0.2".sha256 = "1q96bsxclqx84xn5vkid501jkwlc1p6fhb8szrlrp82zglj58b0b";
40
41
release."1.2.8".sha256 = "05fskx5x1qgaf9qv626m38y5izichzzqc7g2rglzrkygbskrrwsb";
41
42
releaseRev = v: "v${v}";
43
43
+
44
44
+
propagatedBuildInputs = [ stdlib ];
42
45
43
46
preBuild = "cd src";
44
47
+3
pkgs/development/coq-modules/rewriter/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
23
24
"0.0.11".sha256 = "sha256-aYoO08nwItlOoE5BnKRGib2Zk4Fz4Ni/L4QaqkObPow=";
24
25
};
25
26
releaseRev = v: "v${v}";
27
27
+
28
28
+
propagatedBuildInputs = [ stdlib ];
26
29
27
30
mlPlugin = true;
28
31
+2
pkgs/development/coq-modules/smtcoq/default.nix
···
7
7
zchaff,
8
8
fetchurl,
9
9
cvc5,
10
10
+
stdlib,
10
11
version ? null,
11
12
}:
12
13
···
80
81
cvc5
81
82
veriT'
82
83
zchaff
84
84
+
stdlib
83
85
]
84
86
++ (with coq.ocamlPackages; [
85
87
findlib
+2
-1
pkgs/development/coq-modules/stalmarck/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
30
31
let
31
32
pname = package;
32
33
istac = package == "stalmarck-tactic";
33
33
-
propagatedBuildInputs = lib.optional istac (stalmarck_ "stalmarck");
34
34
+
propagatedBuildInputs = if istac then [ (stalmarck_ "stalmarck") ] else [ stdlib ];
34
35
description =
35
36
if istac then
36
37
"Coq tactic and verified tool for proving tautologies using Stålmarck's algorithm"
+59
pkgs/development/coq-modules/stdlib/default.nix
···
1
1
+
{
2
2
+
coq,
3
3
+
mkCoqDerivation,
4
4
+
lib,
5
5
+
version ? null,
6
6
+
}@args:
7
7
+
(mkCoqDerivation {
8
8
+
9
9
+
pname = "stdlib";
10
10
+
repo = "coq";
11
11
+
owner = "coq";
12
12
+
opam-name = "coq-stdlib";
13
13
+
14
14
+
inherit version;
15
15
+
defaultVersion =
16
16
+
with lib.versions;
17
17
+
lib.switch
18
18
+
[ coq.version ]
19
19
+
[
20
20
+
{
21
21
+
cases = [ (isLt "8.21") ];
22
22
+
out = "8.20";
23
23
+
}
24
24
+
]
25
25
+
null;
26
26
+
releaseRev = v: "v${v}";
27
27
+
28
28
+
release."8.20".sha256 = "sha256-AcoS4edUYCfJME1wx8UbuSQRF3jmxhArcZyPIoXcfu0=";
29
29
+
30
30
+
useDune = true;
31
31
+
32
32
+
configurePhase = ''
33
33
+
echo "no configure phase"
34
34
+
''; # don't run Coq's configure
35
35
+
36
36
+
preBuild = ''
37
37
+
echo "(dirs stdlib)" > dune
38
38
+
'';
39
39
+
40
40
+
meta = {
41
41
+
description = "Coq Standard Library";
42
42
+
license = lib.licenses.lgpl21Only;
43
43
+
};
44
44
+
45
45
+
}).overrideAttrs
46
46
+
(
47
47
+
o:
48
48
+
# stdlib is already included in Coq <= 8.20
49
49
+
lib.optionalAttrs
50
50
+
(coq.version != null && coq.version != "dev" && lib.versions.isLt "8.21" coq.version)
51
51
+
{
52
52
+
buildPhase = ''
53
53
+
echo building nothing
54
54
+
'';
55
55
+
installPhase = ''
56
56
+
touch $out
57
57
+
'';
58
58
+
}
59
59
+
)
+3
pkgs/development/coq-modules/stdpp/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
51
52
release."1.5.0".sha256 = "1ym0fy620imah89p8b6rii8clx2vmnwcrbwxl3630h24k42092nf";
52
53
release."1.4.0".sha256 = "1m6c7ibwc99jd4cv14v3r327spnfvdf3x2mnq51f9rz99rffk68r";
53
54
releaseRev = v: "coq-stdpp-${v}";
55
55
+
56
56
+
propagatedBuildInputs = [ stdlib ];
54
57
55
58
preBuild = ''
56
59
if [[ -f coq-lint.sh ]]
+3
pkgs/development/coq-modules/tlc/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
36
37
release."20210316".sha256 = "1hlavnx20lxpf2iydbbxqmim9p8wdwv4phzp9ypij93yivih0g4a";
37
38
release."20200328".sha256 = "16vzild9gni8zhgb3qhmka47f8zagdh03k6nssif7drpim8233lx";
38
39
release."20181116".sha256 = "032lrbkxqm9d3fhf6nv1kq2z0mqd3czv3ijlbsjwnfh12xck4vpl";
40
40
+
41
41
+
propagatedBuildInputs = [ stdlib ];
39
42
40
43
meta = with lib; {
41
44
homepage = "http://www.chargueraud.org/softs/tlc/";
+3
pkgs/development/coq-modules/waterproof/default.nix
···
2
2
lib,
3
3
mkCoqDerivation,
4
4
coq,
5
5
+
stdlib,
5
6
version ? null,
6
7
}:
7
8
···
23
24
release = {
24
25
"2.1.1+8.18".sha256 = "sha256-jYuQ9SPFRefNCUfn6+jEaJ4399EnU0gXPPkEDCpJYOI=";
25
26
};
27
27
+
28
28
+
propagatedBuildInputs = [ stdlib ];
26
29
27
30
mlPlugin = true;
28
31
+2
-2
pkgs/development/libraries/allegro/5.nix
···
39
39
40
40
stdenv.mkDerivation rec {
41
41
pname = "allegro";
42
42
-
version = "5.2.9.1";
42
42
+
version = "5.2.10.0";
43
43
44
44
src = fetchFromGitHub {
45
45
owner = "liballeg";
46
46
repo = "allegro5";
47
47
rev = version;
48
48
-
sha256 = "sha256-n2OCmZmAqeXjtnCTqJgQ5q4j8/lnPfH+5tpWKIFKle0=";
48
48
+
sha256 = "sha256-p01h1AX1vPlBm+ksnTMVQxEIz6q9s/f7R9twbR50YMs=";
49
49
};
50
50
51
51
nativeBuildInputs = [
+31
pkgs/development/libraries/hunspell/dictionaries.nix
···
1066
1066
readmeFile = "README_el_GR.txt";
1067
1067
license = with lib.licenses; [ mpl11 gpl2 lgpl21 ];
1068
1068
};
1069
1069
+
1070
1070
+
/* KOREAN */
1071
1071
+
ko_KR = ko-kr;
1072
1072
+
ko-kr = mkDict rec {
1073
1073
+
pname = "hunspell-dict-ko-kr";
1074
1074
+
version = "0.7.94";
1075
1075
+
1076
1076
+
src = fetchFromGitHub {
1077
1077
+
owner = "spellcheck-ko";
1078
1078
+
repo = "hunspell-dict-ko";
1079
1079
+
rev = version;
1080
1080
+
hash = "sha256-eHuNppqB536wHXftzDghpB3cM9CNFKW1z8f0SNkEiD8=";
1081
1081
+
};
1082
1082
+
1083
1083
+
dictFileName = "ko_KR";
1084
1084
+
readmeFile = "README.md";
1085
1085
+
1086
1086
+
nativeBuildInputs = [ (python3.withPackages (ps: [ ps.pyyaml ])) ];
1087
1087
+
1088
1088
+
preInstall = ''
1089
1089
+
mv ko.aff ko_KR.aff
1090
1090
+
mv ko.dic ko_KR.dic
1091
1091
+
'';
1092
1092
+
1093
1093
+
meta = {
1094
1094
+
description = "Hunspell dictionary for Korean (South Korea)";
1095
1095
+
homepage = "https://github.com/spellcheck-ko/hunspell-dict-ko";
1096
1096
+
license = with lib.licenses; [ gpl2Plus lgpl21Plus mpl11 ];
1097
1097
+
maintainers = with lib.maintainers; [ honnip ];
1098
1098
+
};
1099
1099
+
};
1069
1100
}
+9
pkgs/development/libraries/itk/generic.nix
···
58
58
rev = "bb896868fc6480835495d0da4356d5db009592a6";
59
59
hash = "sha256-MfaIA0xxA/pzUBSwnAevr17iR23Bo5iQO2cSyknS3o4=";
60
60
};
61
61
+
62
62
+
rtkSrc = fetchFromGitHub {
63
63
+
owner = "RTKConsortium";
64
64
+
repo = "RTK";
65
65
+
rev = "583288b1898dedcfb5e4d602e31020b452971383";
66
66
+
hash = "sha256-1ItsLCRwRzGDSRe4xUDg09Hksu1nKichbWuM0YSVkbM=";
67
67
+
};
61
68
in
62
69
63
70
stdenv.mkDerivation {
···
86
93
ln -sr ${itkGenericLabelInterpolatorSrc} Modules/External/ITKGenericLabelInterpolator
87
94
ln -sr ${itkAdaptiveDenoisingSrc} Modules/External/ITKAdaptiveDenoising
88
95
ln -sr ${itkSimpleITKFiltersSrc} Modules/External/ITKSimpleITKFilters
96
96
+
ln -sr ${rtkSrc} Modules/Remote/RTK
89
97
'';
90
98
91
99
cmakeFlags =
···
108
116
"-DModule_MGHIO=ON"
109
117
"-DModule_AdaptiveDenoising=ON"
110
118
"-DModule_GenericLabelInterpolator=ON"
119
119
+
"-DModule_RTK=ON"
111
120
]
112
121
++ lib.optionals enablePython [
113
122
"-DITK_WRAP_PYTHON=ON"
+5
-5
pkgs/development/ocaml-modules/ocplib-simplex/default.nix
···
1
1
-
{ lib, fetchFromGitHub, buildDunePackage, logs, num }:
1
1
+
{ lib, fetchFromGitHub, buildDunePackage, logs, zarith }:
2
2
3
3
buildDunePackage rec {
4
4
pname = "ocplib-simplex";
5
5
-
version = "0.5";
5
5
+
version = "0.5.1";
6
6
7
7
src = fetchFromGitHub {
8
8
-
owner = "OCamlPro-Iguernlala";
8
8
+
owner = "OCamlPro";
9
9
repo = pname;
10
10
rev = "v${version}";
11
11
-
hash = "sha256-sy5QUmghG28tXlwbKWx3PpBGTtzXarTSzd1WLSYyvbc=";
11
11
+
hash = "sha256-fLTht+TlyJIsIAsRLmmkFKsnbSeW3BgyAyURFdnGfko=";
12
12
};
13
13
14
14
-
propagatedBuildInputs = [ logs num ];
14
14
+
propagatedBuildInputs = [ logs zarith ];
15
15
16
16
doCheck = true;
17
17
+7
-3
pkgs/development/python-modules/ailment/default.nix
···
5
5
pythonOlder,
6
6
pyvex,
7
7
setuptools,
8
8
+
typing-extensions,
8
9
}:
9
10
10
11
buildPythonPackage rec {
11
12
pname = "ailment";
12
12
-
version = "9.2.130";
13
13
+
version = "9.2.132";
13
14
pyproject = true;
14
15
15
16
disabled = pythonOlder "3.11";
···
18
19
owner = "angr";
19
20
repo = "ailment";
20
21
rev = "refs/tags/v${version}";
21
21
-
hash = "sha256-/tupBPwZqsJ1+TNIdOVT49uOFSqWqF2nWzZJaHAJXNw=";
22
22
+
hash = "sha256-XvDZwZF084Qns0b3g+X1ay+XEZq84mIvF/8JEx8sCaQ=";
22
23
};
23
24
24
25
build-system = [ setuptools ];
25
26
26
26
-
dependencies = [ pyvex ];
27
27
+
dependencies = [
28
28
+
pyvex
29
29
+
typing-extensions
30
30
+
];
27
31
28
32
# Tests depend on angr (possibly a circular dependency)
29
33
doCheck = false;
+4
-2
pkgs/development/python-modules/aiohomeconnect/default.nix
···
5
5
fastapi,
6
6
fetchFromGitHub,
7
7
httpx,
8
8
+
httpx-sse,
8
9
mashumaro,
9
10
poetry-core,
10
11
pytest-asyncio,
···
18
19
19
20
buildPythonPackage rec {
20
21
pname = "aiohomeconnect";
21
21
-
version = "0.6.4";
22
22
+
version = "0.7.0";
22
23
pyproject = true;
23
24
24
25
disabled = pythonOlder "3.11";
···
27
28
owner = "MartinHjelmare";
28
29
repo = "aiohomeconnect";
29
30
rev = "refs/tags/v${version}";
30
30
-
hash = "sha256-vy1pcLNRi5C0okdWMYWOHanEiN0Nl4WqZT1cC6UktCU=";
31
31
+
hash = "sha256-OgHlYa5n8BnXnaJg/Ns27cXaGKDUkSddDFvl03rwNXM=";
31
32
};
32
33
33
34
pythonRelaxDeps = [ "httpx" ];
···
36
37
37
38
dependencies = [
38
39
httpx
40
40
+
httpx-sse
39
41
mashumaro
40
42
];
41
43
+2
-2
pkgs/development/python-modules/aiortm/default.nix
···
19
19
20
20
buildPythonPackage rec {
21
21
pname = "aiortm";
22
22
-
version = "0.9.42";
22
22
+
version = "0.9.43";
23
23
pyproject = true;
24
24
25
25
disabled = pythonOlder "3.12";
···
28
28
owner = "MartinHjelmare";
29
29
repo = "aiortm";
30
30
rev = "refs/tags/v${version}";
31
31
-
hash = "sha256-4UN96ZpXssCsYh/UmCaPud+bqgw9ckqofyifvIohBBk=";
31
31
+
hash = "sha256-MyeD0SNVHhIPn3KcBfLO5msmwrFRMyIhW8LxUVsHU0o=";
32
32
};
33
33
34
34
pythonRelaxDeps = [ "typer" ];
+2
-2
pkgs/development/python-modules/angr/default.nix
···
36
36
37
37
buildPythonPackage rec {
38
38
pname = "angr";
39
39
-
version = "9.2.130";
39
39
+
version = "9.2.132";
40
40
pyproject = true;
41
41
42
42
disabled = pythonOlder "3.11";
···
45
45
owner = "angr";
46
46
repo = "angr";
47
47
rev = "refs/tags/v${version}";
48
48
-
hash = "sha256-XPiHRFt0peGyi5g5+fBVxg1jp/UXTetGIwAilgCM+Ow=";
48
48
+
hash = "sha256-DtmjtxO2eOq2qz48uMkNOlGhIsc+LVOWGh0PpPIzaow=";
49
49
};
50
50
51
51
postPatch = ''
+2
-2
pkgs/development/python-modules/archinfo/default.nix
···
10
10
11
11
buildPythonPackage rec {
12
12
pname = "archinfo";
13
13
-
version = "9.2.130";
13
13
+
version = "9.2.132";
14
14
pyproject = true;
15
15
16
16
disabled = pythonOlder "3.8";
···
19
19
owner = "angr";
20
20
repo = "archinfo";
21
21
rev = "refs/tags/v${version}";
22
22
-
hash = "sha256-r03eMpHfqRGvaDN5dRkfuGG6RWgHmTlyygby6BSzxIY=";
22
22
+
hash = "sha256-j/N5nWUCWQRGb9Soe+naHLXV2Fwqu7lPMZdY9k3U1O4=";
23
23
};
24
24
25
25
build-system = [ setuptools ];
+2
-2
pkgs/development/python-modules/boto3-stubs/default.nix
···
359
359
360
360
buildPythonPackage rec {
361
361
pname = "boto3-stubs";
362
362
-
version = "1.35.78";
362
362
+
version = "1.35.79";
363
363
pyproject = true;
364
364
365
365
disabled = pythonOlder "3.7";
···
367
367
src = fetchPypi {
368
368
pname = "boto3_stubs";
369
369
inherit version;
370
370
-
hash = "sha256-XQI88fzHI9/bopZT4K2bmTOYXIE6JbwhgH4h6rgeIbQ=";
370
370
+
hash = "sha256-ojkVIp2cSa7fw6N3SZyjm4/RzLFCTzh1XjD7n1SOoAY=";
371
371
};
372
372
373
373
build-system = [ setuptools ];
+2
-2
pkgs/development/python-modules/botocore-stubs/default.nix
···
10
10
11
11
buildPythonPackage rec {
12
12
pname = "botocore-stubs";
13
13
-
version = "1.35.78";
13
13
+
version = "1.35.79";
14
14
pyproject = true;
15
15
16
16
disabled = pythonOlder "3.7";
···
18
18
src = fetchPypi {
19
19
pname = "botocore_stubs";
20
20
inherit version;
21
21
-
hash = "sha256-TLXB/KMwSKKvyiACcZqNaW9wUatPDvX17pbfeq92oFU=";
21
21
+
hash = "sha256-wMXwaH0C3c4kcwN8zs8KtjTqNYWnRu6J+bRLV9BGJ4Q=";
22
22
};
23
23
24
24
nativeBuildInputs = [ setuptools ];
+2
-2
pkgs/development/python-modules/claripy/default.nix
···
14
14
15
15
buildPythonPackage rec {
16
16
pname = "claripy";
17
17
-
version = "9.2.130";
17
17
+
version = "9.2.132";
18
18
pyproject = true;
19
19
20
20
disabled = pythonOlder "3.11";
···
23
23
owner = "angr";
24
24
repo = "claripy";
25
25
rev = "refs/tags/v${version}";
26
26
-
hash = "sha256-WtT4jdL512ad/hUb8uMxAqihDH/YFxsnYumNFWWGkQM=";
26
26
+
hash = "sha256-TiddozxGyDilcLKXyIOlIo7cTDVdJCJEjArq6nwgsc0=";
27
27
};
28
28
29
29
# z3 does not provide a dist-info, so python-runtime-deps-check will fail
+3
-3
pkgs/development/python-modules/cle/default.nix
···
16
16
17
17
let
18
18
# The binaries are following the argr projects release cycle
19
19
-
version = "9.2.130";
19
19
+
version = "9.2.132";
20
20
21
21
# Binary files from https://github.com/angr/binaries (only used for testing and only here)
22
22
binaries = fetchFromGitHub {
23
23
owner = "angr";
24
24
repo = "binaries";
25
25
rev = "refs/tags/v${version}";
26
26
-
hash = "sha256-kgi7K8zxICIwtk9MKB2qHXf/7u2RbXx6hYC89lem/3I=";
26
26
+
hash = "sha256-ytL8UlvbzOSvUwXjZhxAW6lQJawGOTfMlq/yQnBLIu0=";
27
27
};
28
28
in
29
29
buildPythonPackage rec {
···
37
37
owner = "angr";
38
38
repo = "cle";
39
39
rev = "refs/tags/v${version}";
40
40
-
hash = "sha256-mxSTXgE4O4YpjFWKIpeSi43+j5xEgYwuRHVzqI34Izg=";
40
40
+
hash = "sha256-TO1zVqoPr1HBTMd9+Gbn39lLsZv8cMcAG0EKsvgymcI=";
41
41
};
42
42
43
43
build-system = [ setuptools ];
+2
-2
pkgs/development/python-modules/jupyter-ydoc/default.nix
···
18
18
19
19
buildPythonPackage rec {
20
20
pname = "jupyter-ydoc";
21
21
-
version = "3.0.1";
21
21
+
version = "3.0.2";
22
22
pyproject = true;
23
23
24
24
src = fetchPypi {
25
25
pname = "jupyter_ydoc";
26
26
inherit version;
27
27
-
hash = "sha256-ztrp8+4KdyiDF/IbuBhI7WFnTRukaLDDlsFgomSiEGs=";
27
27
+
hash = "sha256-1fHVvD7JV55YdGlJbNM9bypp4Y50Mp4TDCMUELocMdA=";
28
28
};
29
29
30
30
build-system = [
+2
-2
pkgs/development/python-modules/monzopy/default.nix
···
9
9
10
10
buildPythonPackage rec {
11
11
pname = "monzopy";
12
12
-
version = "1.4.2";
12
12
+
version = "1.5.0";
13
13
pyproject = true;
14
14
15
15
disabled = pythonOlder "3.10";
···
18
18
owner = "JakeMartin-ICL";
19
19
repo = "monzopy";
20
20
rev = "refs/tags/v${version}";
21
21
-
hash = "sha256-yO0mdqdoRdyl6BDT1vBuTh83zECck3atQtdtWhQCh9s=";
21
21
+
hash = "sha256-bWuWc2+80Og9mjzgqatGeR028CD3oqwKrw/BRTz3KXg=";
22
22
};
23
23
24
24
build-system = [ setuptools ];
+20
-20
pkgs/development/python-modules/mypy-boto3/default.nix
···
110
110
"sha256-aPoEEfQvhPoT0CPcfoyhzdXl2jSKeIoD3gBEw1f1XWU=";
111
111
112
112
mypy-boto3-application-autoscaling =
113
113
-
buildMypyBoto3Package "application-autoscaling" "1.35.67"
114
114
-
"sha256-vIhEkUkeI0Wx16/MLVylDuAPV62gwYjtTp9hqJdqFD4=";
113
113
+
buildMypyBoto3Package "application-autoscaling" "1.35.78"
114
114
+
"sha256-wIkZmpk4yXjK4cwW0T0bde+kKcQi4pJEBPL1erbFGlo=";
115
115
116
116
mypy-boto3-application-insights =
117
117
buildMypyBoto3Package "application-insights" "1.35.45"
···
250
250
"sha256-8QLyd1uCh26njr6VnNBFROHWFXMSvpO7WRzV8DFZ01U=";
251
251
252
252
mypy-boto3-cloudtrail =
253
253
-
buildMypyBoto3Package "cloudtrail" "1.35.67"
254
254
-
"sha256-1gS61PsUJ10PczmHvs/OmCoJj9ZCgVbDWpB/8VwNkGg=";
253
253
+
buildMypyBoto3Package "cloudtrail" "1.35.79"
254
254
+
"sha256-dq8DeeGejHFGijvjFJU7vmhsOFyMmTlWcvGriDOzYgs=";
255
255
256
256
mypy-boto3-cloudtrail-data =
257
257
buildMypyBoto3Package "cloudtrail-data" "1.35.0"
···
314
314
"sha256-UVEJn/VNbYEIRPHV9CuDI0Hos5POiMQThiN4OlncQIE=";
315
315
316
316
mypy-boto3-cognito-idp =
317
317
-
buildMypyBoto3Package "cognito-idp" "1.35.77"
318
318
-
"sha256-H2CQ/CeVjmnteZPmTN6LUq1Uldks1k7tbnwYAHv1gGo=";
317
317
+
buildMypyBoto3Package "cognito-idp" "1.35.79"
318
318
+
"sha256-176alqnmWl//zNEziDBbX6ZNk/gdHjqurR1Whz6SK8Y=";
319
319
320
320
mypy-boto3-cognito-sync =
321
321
buildMypyBoto3Package "cognito-sync" "1.35.0"
···
338
338
"sha256-qycjnRcrEJ2P3dpciMVFPno1wz3tEJ6pa6z8TlLwTME=";
339
339
340
340
mypy-boto3-connect =
341
341
-
buildMypyBoto3Package "connect" "1.35.72"
342
342
-
"sha256-fGo6vO49IgOCiRqAChO/33HU+hRjkdWnu77EG40PrRY=";
341
341
+
buildMypyBoto3Package "connect" "1.35.78"
342
342
+
"sha256-9pN4rQDj8ZIqYFNlA2OC0dEK6jsxX6ctlOzBXmd9Gho=";
343
343
344
344
mypy-boto3-connect-contact-lens =
345
345
buildMypyBoto3Package "connect-contact-lens" "1.35.0"
···
506
506
"sha256-ARmcy8oINHgph9PqNtQYyBVEVshBuSHDeju2ynNSqQ8=";
507
507
508
508
mypy-boto3-emr-serverless =
509
509
-
buildMypyBoto3Package "emr-serverless" "1.35.25"
510
510
-
"sha256-9aQOr3oGVejk34AInlyoS9//4DBIR0JBbHGumvanOtw=";
509
509
+
buildMypyBoto3Package "emr-serverless" "1.35.79"
510
510
+
"sha256-UJh4iV+ziL+0Cv8QGDPDMIQkQ6EskPqTA3tc9qzPqxM=";
511
511
512
512
mypy-boto3-entityresolution =
513
513
buildMypyBoto3Package "entityresolution" "1.35.3"
···
526
526
"sha256-C7hTVrCUdBpYj0y5cLGKnruJcgaHFMkeY6R0fZ/Zp78=";
527
527
528
528
mypy-boto3-finspace =
529
529
-
buildMypyBoto3Package "finspace" "1.35.12"
530
530
-
"sha256-zO4rFI2pzAFhHHyRPYeeV0eC4daRJ57GeAnAqrOyQAQ=";
529
529
+
buildMypyBoto3Package "finspace" "1.35.78"
530
530
+
"sha256-kCrB2JJ9Ie+DQM/OtUkUQbQb8a5AEq3VaEW64au2/7I=";
531
531
532
532
mypy-boto3-finspace-data =
533
533
buildMypyBoto3Package "finspace-data" "1.35.0"
···
702
702
"sha256-KMY2z2O8JY++v8Vi3o6zx6HFUZdjNHkGOZD4y05ZGQ4=";
703
703
704
704
mypy-boto3-ivs-realtime =
705
705
-
buildMypyBoto3Package "ivs-realtime" "1.35.32"
706
706
-
"sha256-mAK3wz82f8X/02mvPnDycDa934wAbFeSySX99H1nvEQ=";
705
705
+
buildMypyBoto3Package "ivs-realtime" "1.35.78"
706
706
+
"sha256-drmab2qLNUxyZBR4twWeicndhIMPqc6JKeZy5M2WqpI=";
707
707
708
708
mypy-boto3-ivschat =
709
709
buildMypyBoto3Package "ivschat" "1.35.19"
···
906
906
"sha256-qFXZE2y5MSpOZMSKhFEeriXHgbboQigOufmTqbArmns=";
907
907
908
908
mypy-boto3-mgh =
909
909
-
buildMypyBoto3Package "mgh" "1.35.0"
910
910
-
"sha256-mGKHl9Ld7DNwma0Nl2lTwb3cN2N1SqnZlYZX0bxnS1w=";
909
909
+
buildMypyBoto3Package "mgh" "1.35.79"
910
910
+
"sha256-GRQEcgUhnpri/waIMhJG9ez5bppRI4o2cvLQAvTN408=";
911
911
912
912
mypy-boto3-mgn =
913
913
buildMypyBoto3Package "mgn" "1.35.0"
···
1162
1162
"sha256-RwPNNFntNChLqbr86wd1bwp6OqWvs3oj3V+4X71J3Hw=";
1163
1163
1164
1164
mypy-boto3-s3 =
1165
1165
-
buildMypyBoto3Package "s3" "1.35.76"
1166
1166
-
"sha256-bPHwNJhf5hB1TD5u8odJBimHDVCK2hO31h57mq60YQg=";
1165
1165
+
buildMypyBoto3Package "s3" "1.35.76.post1"
1166
1166
+
"sha256-NKxMrPis2vpucaKBARayVGN28kF2H57sasWpiHMJNys=";
1167
1167
1168
1168
mypy-boto3-s3control =
1169
1169
buildMypyBoto3Package "s3control" "1.35.73"
···
1254
1254
"sha256-VwamgC2lBBnVvwd80PAK09mAGNgfjoyrOP+YccxlAEw=";
1255
1255
1256
1256
mypy-boto3-sesv2 =
1257
1257
-
buildMypyBoto3Package "sesv2" "1.35.53"
1258
1258
-
"sha256-jIxFFcXYJgwxH78gnMHxIaQWeF88DT7tH1pukUEpDc4=";
1257
1257
+
buildMypyBoto3Package "sesv2" "1.35.79"
1258
1258
+
"sha256-J7sAvAwJ9qvXqXUqsATtqCoPwsYmj9vJIESK0Qg/RsE=";
1259
1259
1260
1260
mypy-boto3-shield =
1261
1261
buildMypyBoto3Package "shield" "1.35.0"
+2
-2
pkgs/development/python-modules/pyvex/default.nix
···
13
13
14
14
buildPythonPackage rec {
15
15
pname = "pyvex";
16
16
-
version = "9.2.130";
16
16
+
version = "9.2.132";
17
17
pyproject = true;
18
18
19
19
disabled = pythonOlder "3.11";
20
20
21
21
src = fetchPypi {
22
22
inherit pname version;
23
23
-
hash = "sha256-U4AykjdxiT9tg9krxEcoNwSAvMNisyYaTLiOCTGoSOY=";
23
23
+
hash = "sha256-0/kiZLRkhWrMA74XILwrBtR45PMrypi3HqEt5UiVR/0=";
24
24
};
25
25
26
26
build-system = [ setuptools ];
+2
-2
pkgs/development/python-modules/tencentcloud-sdk-python/default.nix
···
10
10
11
11
buildPythonPackage rec {
12
12
pname = "tencentcloud-sdk-python";
13
13
-
version = "3.0.1279";
13
13
+
version = "3.0.1280";
14
14
pyproject = true;
15
15
16
16
disabled = pythonOlder "3.9";
···
19
19
owner = "TencentCloud";
20
20
repo = "tencentcloud-sdk-python";
21
21
rev = "refs/tags/${version}";
22
22
-
hash = "sha256-udp1vcvoqou4/xCWwsPICn7gcQY2B4/qKF+4n4pRLOU=";
22
22
+
hash = "sha256-9hSGe7E0jp6JN3Oi1zkxI2tU+ZAJm9BFdx43Dce+S+I=";
23
23
};
24
24
25
25
build-system = [ setuptools ];
+15
-10
pkgs/development/python-modules/webexteamssdk/default.nix
···
3
3
buildPythonPackage,
4
4
fetchFromGitHub,
5
5
future,
6
6
-
poetry-core,
7
7
-
poetry-dynamic-versioning,
8
6
pyjwt,
9
7
pythonOlder,
8
8
+
requests,
10
9
requests-toolbelt,
11
11
-
requests,
10
10
+
setuptools,
11
11
+
versioneer,
12
12
}:
13
13
14
14
buildPythonPackage rec {
15
15
pname = "webexteamssdk";
16
16
-
version = "2.0.1";
16
16
+
version = "1.6.1";
17
17
pyproject = true;
18
18
19
19
-
disabled = pythonOlder "3.10";
19
19
+
disabled = pythonOlder "3.7";
20
20
21
21
src = fetchFromGitHub {
22
22
owner = "CiscoDevNet";
23
23
repo = "webexteamssdk";
24
24
rev = "refs/tags/v${version}";
25
25
-
hash = "sha256-ENAUUicVO/Br7k+RFHCGzQ7BIG0CP7jTYM3tzs5EAZQ=";
25
25
+
hash = "sha256-xlkmXl4tVm48drXmkUijv9GNXzJcDnfSKbOMciPIRRo=";
26
26
};
27
27
28
28
+
postPatch = ''
29
29
+
# Remove vendorized versioneer
30
30
+
rm versioneer.py
31
31
+
'';
32
32
+
28
33
build-system = [
29
29
-
poetry-core
30
30
-
poetry-dynamic-versioning
34
34
+
setuptools
35
35
+
versioneer
31
36
];
32
37
33
38
dependencies = [
···
40
45
# Tests require a Webex Teams test domain
41
46
doCheck = false;
42
47
43
43
-
pythonImportsCheck = [ "webexpythonsdk" ];
48
48
+
pythonImportsCheck = [ "webexteamssdk" ];
44
49
45
50
meta = with lib; {
46
51
description = "Python module for Webex Teams APIs";
47
52
homepage = "https://github.com/CiscoDevNet/webexteamssdk";
48
53
changelog = "https://github.com/WebexCommunity/WebexPythonSDK/releases/tag/v${version}";
49
49
-
license = licenses.mit;
54
54
+
license = with licenses; [ mit ];
50
55
maintainers = with maintainers; [ fab ];
51
56
};
52
57
}
+3
-3
pkgs/development/python-modules/zenoh/default.nix
···
11
11
12
12
buildPythonPackage rec {
13
13
pname = "zenoh";
14
14
-
version = "1.0.3";
14
14
+
version = "1.1.0";
15
15
pyproject = true;
16
16
17
17
src = fetchFromGitHub {
18
18
owner = "eclipse-zenoh";
19
19
repo = "zenoh-python";
20
20
rev = version;
21
21
-
hash = "sha256-LQ6zu0yD2heprN2p6zO/ZC6uIsMlc1FyDuZ/dvOnVqU=";
21
21
+
hash = "sha256-DO5AZDS7XvExxATtbkFOLG66zQOZu4gE6VWOG7C3qGA=";
22
22
};
23
23
24
24
cargoDeps = rustPlatform.fetchCargoVendor {
25
25
inherit src pname version;
26
26
-
hash = "sha256-6a2OSZLn1OYpe4tAv60uBhh/b+3QewPxVtQIDOnpk3A=";
26
26
+
hash = "sha256-GolnCEsqCGxjrKl2qXVRi9+d8hwXNsRVdfI7Cf60/jg=";
27
27
};
28
28
29
29
build-system = [
+1
pkgs/misc/tmux-plugins/default.nix
···
864
864
865
865
weather = mkTmuxPlugin {
866
866
pluginName = "weather";
867
867
+
rtpFilePath = "tmux-weather.tmux";
867
868
version = "unstable-2020-02-08";
868
869
src = fetchFromGitHub {
869
870
owner = "xamut";
+22
pkgs/servers/akkoma/0001-fix-tzdata.patch
···
1
1
+
diff --git a/mix.lock b/mix.lock
2
2
+
index 810356345..99a5a92c3 100644
3
3
+
--- a/mix.lock
4
4
+
+++ b/mix.lock
5
5
+
@@ -75,7 +75,7 @@
6
6
+
"metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"},
7
7
+
"mfm_parser": {:git, "https://akkoma.dev/AkkomaGang/mfm-parser.git", "b21ab7754024af096f2d14247574f55f0063295b", [ref: "b21ab7754024af096f2d14247574f55f0063295b"]},
8
8
+
"mime": {:hex, :mime, "2.0.5", "dc34c8efd439abe6ae0343edbb8556f4d63f178594894720607772a041b04b02", [:mix], [], "hexpm", "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"},
9
9
+
- "mimerl": {:hex, :mimerl, "1.2.0", "67e2d3f571088d5cfd3e550c383094b47159f3eee8ffa08e64106cdf5e981be3", [:rebar3], [], "hexpm", "f278585650aa581986264638ebf698f8bb19df297f66ad91b18910dfc6e19323"},
10
10
+
+ "mimerl": {:hex, :mimerl, "1.3.0", "d0cd9fc04b9061f82490f6581e0128379830e78535e017f7780f37fea7545726", [:rebar3], [], "hexpm", "a1e15a50d1887217de95f0b9b0793e32853f7c258a5cd227650889b38839fe9d"},
11
11
+
"mint": {:hex, :mint, "1.5.2", "4805e059f96028948870d23d7783613b7e6b0e2fb4e98d720383852a760067fd", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "d77d9e9ce4eb35941907f1d3df38d8f750c357865353e21d335bdcdf6d892a02"},
12
12
+
"mock": {:hex, :mock, "0.3.8", "7046a306b71db2488ef54395eeb74df0a7f335a7caca4a3d3875d1fc81c884dd", [:mix], [{:meck, "~> 0.9.2", [hex: :meck, repo: "hexpm", optional: false]}], "hexpm", "7fa82364c97617d79bb7d15571193fc0c4fe5afd0c932cef09426b3ee6fe2022"},
13
13
+
"mogrify": {:hex, :mogrify, "0.9.3", "238c782f00271dace01369ad35ae2e9dd020feee3443b9299ea5ea6bed559841", [:mix], [], "hexpm", "0189b1e1de27455f2b9ae8cf88239cefd23d38de9276eb5add7159aea51731e6"},
14
14
+
@@ -123,7 +123,7 @@
15
15
+
"tesla": {:hex, :tesla, "1.8.0", "d511a4f5c5e42538d97eef7c40ec4f3e44effdc5068206f42ed859e09e51d1fd", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:exjsx, ">= 3.0.0", [hex: :exjsx, repo: "hexpm", optional: true]}, {:finch, "~> 0.13", [hex: :finch, repo: "hexpm", optional: true]}, {:fuse, "~> 2.4", [hex: :fuse, repo: "hexpm", optional: true]}, {:gun, ">= 1.0.0", [hex: :gun, repo: "hexpm", optional: true]}, {:hackney, "~> 1.6", [hex: :hackney, repo: "hexpm", optional: true]}, {:ibrowse, "4.4.2", [hex: :ibrowse, repo: "hexpm", optional: true]}, {:jason, ">= 1.0.0", [hex: :jason, repo: "hexpm", optional: true]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.0", [hex: :mint, repo: "hexpm", optional: true]}, {:msgpax, "~> 2.3", [hex: :msgpax, repo: "hexpm", optional: true]}, {:poison, ">= 1.0.0", [hex: :poison, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: true]}], "hexpm", "10501f360cd926a309501287470372af1a6e1cbed0f43949203a4c13300bc79f"},
16
16
+
"timex": {:hex, :timex, "3.7.11", "bb95cb4eb1d06e27346325de506bcc6c30f9c6dea40d1ebe390b262fad1862d1", [:mix], [{:combine, "~> 0.10", [hex: :combine, repo: "hexpm", optional: false]}, {:gettext, "~> 0.20", [hex: :gettext, repo: "hexpm", optional: false]}, {:tzdata, "~> 1.1", [hex: :tzdata, repo: "hexpm", optional: false]}], "hexpm", "8b9024f7efbabaf9bd7aa04f65cf8dcd7c9818ca5737677c7b76acbc6a94d1aa"},
17
17
+
"trailing_format_plug": {:hex, :trailing_format_plug, "0.0.7", "64b877f912cf7273bed03379936df39894149e35137ac9509117e59866e10e45", [:mix], [{:plug, "> 0.12.0", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "bd4fde4c15f3e993a999e019d64347489b91b7a9096af68b2bdadd192afa693f"},
18
18
+
- "tzdata": {:hex, :tzdata, "1.1.1", "20c8043476dfda8504952d00adac41c6eda23912278add38edc140ae0c5bcc46", [:mix], [{:hackney, "~> 1.17", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "a69cec8352eafcd2e198dea28a34113b60fdc6cb57eb5ad65c10292a6ba89787"},
19
19
+
+ "tzdata": {:hex, :tzdata, "1.1.2", "45e5f1fcf8729525ec27c65e163be5b3d247ab1702581a94674e008413eef50b", [:mix], [{:hackney, "~> 1.17", [hex: :hackney, repo: "hexpm", optional: false]}], "hexpm", "cec7b286e608371602318c414f344941d5eb0375e14cfdab605cca2fe66cba8b"},
20
20
+
"ueberauth": {:hex, :ueberauth, "0.10.5", "806adb703df87e55b5615cf365e809f84c20c68aa8c08ff8a416a5a6644c4b02", [:mix], [{:plug, "~> 1.5", [hex: :plug, repo: "hexpm", optional: false]}], "hexpm", "3efd1f31d490a125c7ed453b926f7c31d78b97b8a854c755f5c40064bf3ac9e1"},
21
21
+
"unicode_util_compat": {:hex, :unicode_util_compat, "0.7.0", "bc84380c9ab48177092f43ac89e4dfa2c6d62b40b8bd132b1059ecc7232f9a78", [:rebar3], [], "hexpm", "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"},
22
22
+
"unsafe": {:hex, :unsafe, "1.0.2", "23c6be12f6c1605364801f4b47007c0c159497d0446ad378b5cf05f1855c0581", [:mix], [], "hexpm", "b485231683c3ab01a9cd44cb4a79f152c6f3bb87358439c6f68791b85c2df675"},
+2
pkgs/servers/akkoma/default.nix
···
20
20
hash = "sha256-WZAkpJIPzAbqXawNiM3JqE9tJzxrNs/2dGAWVMwLpN4=";
21
21
};
22
22
23
23
+
patches = [ ./0001-fix-tzdata.patch ];
24
24
+
23
25
postPatch = ''
24
26
# Remove dependency on OS_Mon
25
27
sed -E -i 's/(^|\s):os_mon,//' \
+139
-140
pkgs/servers/akkoma/mix.nix
···
1
1
-
{ lib, beamPackages, overrides ? (x: y: { }) }:
1
1
+
{ lib, beamPackages, overrides ? (x: y: {}) }:
2
2
3
3
let
4
4
buildRebar3 = lib.makeOverridable beamPackages.buildRebar3;
···
62
62
63
63
benchee = buildMix rec {
64
64
name = "benchee";
65
65
-
version = "1.3.0";
65
65
+
version = "1.2.0";
66
66
67
67
src = fetchHex {
68
68
pkg = "benchee";
69
69
version = "${version}";
70
70
-
sha256 = "34f4294068c11b2bd2ebf2c59aac9c7da26ffa0068afdf3419f1b176e16c5f81";
70
70
+
sha256 = "ee729e53217898b8fd30aaad3cce61973dab61574ae6f48229fe7ff42d5e4457";
71
71
};
72
72
73
73
beamDeps = [ deep_merge statistex ];
···
75
75
76
76
bunt = buildMix rec {
77
77
name = "bunt";
78
78
-
version = "1.0.0";
78
78
+
version = "0.2.1";
79
79
80
80
src = fetchHex {
81
81
pkg = "bunt";
82
82
version = "${version}";
83
83
-
sha256 = "dc5f86aa08a5f6fa6b8096f0735c4e76d54ae5c9fa2c143e5a1fc7c1cd9bb6b5";
83
83
+
sha256 = "a330bfb4245239787b15005e66ae6845c9cd524a288f0d141c148b02603777a5";
84
84
};
85
85
86
86
-
beamDeps = [ ];
86
86
+
beamDeps = [];
87
87
};
88
88
89
89
cachex = buildMix rec {
···
114
114
115
115
castore = buildMix rec {
116
116
name = "castore";
117
117
-
version = "1.0.6";
117
117
+
version = "1.0.5";
118
118
119
119
src = fetchHex {
120
120
pkg = "castore";
121
121
version = "${version}";
122
122
-
sha256 = "374c6e7ca752296be3d6780a6d5b922854ffcc74123da90f2f328996b962d33a";
122
122
+
sha256 = "8d7c597c3e4a64c395980882d4bca3cebb8d74197c590dc272cfd3b6a6310578";
123
123
};
124
124
125
125
-
beamDeps = [ ];
125
125
+
beamDeps = [];
126
126
};
127
127
128
128
certifi = buildRebar3 rec {
···
135
135
sha256 = "ee68d85df22e554040cdb4be100f33873ac6051387baf6a8f6ce82272340ff1c";
136
136
};
137
137
138
138
-
beamDeps = [ ];
138
138
+
beamDeps = [];
139
139
};
140
140
141
141
combine = buildMix rec {
···
148
148
sha256 = "1b1dbc1790073076580d0d1d64e42eae2366583e7aecd455d1215b0d16f2451b";
149
149
};
150
150
151
151
-
beamDeps = [ ];
151
151
+
beamDeps = [];
152
152
};
153
153
154
154
comeonin = buildMix rec {
···
161
161
sha256 = "796393a9e50d01999d56b7b8420ab0481a7538d0caf80919da493b4a6e51faf1";
162
162
};
163
163
164
164
-
beamDeps = [ ];
164
164
+
beamDeps = [];
165
165
};
166
166
167
167
connection = buildMix rec {
···
174
174
sha256 = "722c1eb0a418fbe91ba7bd59a47e28008a189d47e37e0e7bb85585a016b2869c";
175
175
};
176
176
177
177
-
beamDeps = [ ];
177
177
+
beamDeps = [];
178
178
};
179
179
180
180
cors_plug = buildMix rec {
···
192
192
193
193
cowboy = buildErlangMk rec {
194
194
name = "cowboy";
195
195
-
version = "2.12.0";
195
195
+
version = "2.10.0";
196
196
197
197
src = fetchHex {
198
198
pkg = "cowboy";
199
199
version = "${version}";
200
200
-
sha256 = "8a7abe6d183372ceb21caa2709bec928ab2b72e18a3911aa1771639bef82651e";
200
200
+
sha256 = "3afdccb7183cc6f143cb14d3cf51fa00e53db9ec80cdcd525482f5e99bc41d6b";
201
201
};
202
202
203
203
beamDeps = [ cowlib ranch ];
···
218
218
219
219
cowlib = buildRebar3 rec {
220
220
name = "cowlib";
221
221
-
version = "2.13.0";
221
221
+
version = "2.12.1";
222
222
223
223
src = fetchHex {
224
224
pkg = "cowlib";
225
225
version = "${version}";
226
226
-
sha256 = "e1e1284dc3fc030a64b1ad0d8382ae7e99da46c3246b815318a4b848873800a4";
226
226
+
sha256 = "163b73f6367a7341b33c794c4e88e7dbfe6498ac42dcd69ef44c5bc5507c8db0";
227
227
};
228
228
229
229
-
beamDeps = [ ];
229
229
+
beamDeps = [];
230
230
};
231
231
232
232
credo = buildMix rec {
233
233
name = "credo";
234
234
-
version = "1.7.5";
234
234
+
version = "1.7.1";
235
235
236
236
src = fetchHex {
237
237
pkg = "credo";
238
238
version = "${version}";
239
239
-
sha256 = "f799e9b5cd1891577d8c773d245668aa74a2fcd15eb277f51a0131690ebfb3fd";
239
239
+
sha256 = "e9871c6095a4c0381c89b6aa98bc6260a8ba6addccf7f6a53da8849c748a58a2";
240
240
};
241
241
242
242
beamDeps = [ bunt file_system jason ];
···
252
252
sha256 = "8df019facc5ec9603e94f7270f1ac73ddf339f56ade76a721eaa57c1493ba463";
253
253
};
254
254
255
255
-
beamDeps = [ ];
255
255
+
beamDeps = [];
256
256
};
257
257
258
258
db_connection = buildMix rec {
···
278
278
sha256 = "53cfe5f497ed0e7771ae1a475575603d77425099ba5faef9394932b35020ffcc";
279
279
};
280
280
281
281
-
beamDeps = [ ];
281
281
+
beamDeps = [];
282
282
};
283
283
284
284
deep_merge = buildMix rec {
···
291
291
sha256 = "ce708e5f094b9cd4e8f2be4f00d2f4250c4095be93f8cd6d018c753894885430";
292
292
};
293
293
294
294
-
beamDeps = [ ];
294
294
+
beamDeps = [];
295
295
};
296
296
297
297
dialyxir = buildMix rec {
298
298
name = "dialyxir";
299
299
-
version = "1.4.3";
299
299
+
version = "1.4.2";
300
300
301
301
src = fetchHex {
302
302
pkg = "dialyxir";
303
303
version = "${version}";
304
304
-
sha256 = "bf2cfb75cd5c5006bec30141b131663299c661a864ec7fbbc72dfa557487a986";
304
304
+
sha256 = "516603d8067b2fd585319e4b13d3674ad4f314a5902ba8130cd97dc902ce6bbd";
305
305
};
306
306
307
307
beamDeps = [ erlex ];
···
317
317
sha256 = "798d86db3d79964e759ddc0c077d5eb254968ed426399fbf5a62de2b5ff8910a";
318
318
};
319
319
320
320
-
beamDeps = [ ];
320
320
+
beamDeps = [];
321
321
};
322
322
323
323
earmark_parser = buildMix rec {
···
330
330
sha256 = "06553a88d1f1846da9ef066b87b57c6f605552cfbe40d20bd8d59cc6bde41944";
331
331
};
332
332
333
333
-
beamDeps = [ ];
333
333
+
beamDeps = [];
334
334
};
335
335
336
336
eblurhash = buildRebar3 rec {
···
343
343
sha256 = "8c20ca00904de023a835a9dcb7b7762fed32264c85a80c3cafa85288e405044c";
344
344
};
345
345
346
346
-
beamDeps = [ ];
346
346
+
beamDeps = [];
347
347
};
348
348
349
349
ecto = buildMix rec {
···
374
374
375
375
ecto_psql_extras = buildMix rec {
376
376
name = "ecto_psql_extras";
377
377
-
version = "0.7.15";
377
377
+
version = "0.7.14";
378
378
379
379
src = fetchHex {
380
380
pkg = "ecto_psql_extras";
381
381
version = "${version}";
382
382
-
sha256 = "b6127f3a5c6fc3d84895e4768cc7c199f22b48b67d6c99b13fbf4a374e73f039";
382
382
+
sha256 = "22f5f98592dd597db9416fcef00effae0787669fdcb6faf447e982b553798e98";
383
383
};
384
384
385
385
beamDeps = [ ecto_sql postgrex table_rex ];
···
400
400
401
401
elixir_make = buildMix rec {
402
402
name = "elixir_make";
403
403
-
version = "0.8.3";
403
403
+
version = "0.7.7";
404
404
405
405
src = fetchHex {
406
406
pkg = "elixir_make";
407
407
version = "${version}";
408
408
-
sha256 = "5c99a18571a756d4af7a4d89ca75c28ac899e6103af6f223982f09ce44942cc9";
408
408
+
sha256 = "5bc19fff950fad52bbe5f211b12db9ec82c6b34a9647da0c2224b8b8464c7e6c";
409
409
};
410
410
411
411
-
beamDeps = [ castore certifi ];
411
411
+
beamDeps = [ castore ];
412
412
};
413
413
414
414
elixir_xml_to_map = buildMix rec {
415
415
name = "elixir_xml_to_map";
416
416
-
version = "3.1.0";
416
416
+
version = "3.0.0";
417
417
418
418
src = fetchHex {
419
419
pkg = "elixir_xml_to_map";
420
420
version = "${version}";
421
421
-
sha256 = "8fe5f2e75f90bab07ee2161120c2dc038ebcae8135554f5582990f1c8c21f911";
421
421
+
sha256 = "11222dd7f029f8db7a6662b41c992dbdb0e1c6e4fdea6a42056f9d27c847efbb";
422
422
};
423
423
424
424
beamDeps = [ erlsom ];
···
434
434
sha256 = "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75";
435
435
};
436
436
437
437
-
beamDeps = [ ];
437
437
+
beamDeps = [];
438
438
};
439
439
440
440
erlsom = buildRebar3 rec {
···
447
447
sha256 = "7965485494c5844dd127656ac40f141aadfa174839ec1be1074e7edf5b4239eb";
448
448
};
449
449
450
450
-
beamDeps = [ ];
450
450
+
beamDeps = [];
451
451
};
452
452
453
453
eternal = buildMix rec {
···
460
460
sha256 = "2c9fe32b9c3726703ba5e1d43a1d255a4f3f2d8f8f9bc19f094c7cb1a7a9e782";
461
461
};
462
462
463
463
-
beamDeps = [ ];
463
463
+
beamDeps = [];
464
464
};
465
465
466
466
ex_aws = buildMix rec {
467
467
name = "ex_aws";
468
468
-
version = "2.5.3";
468
468
+
version = "2.5.0";
469
469
470
470
src = fetchHex {
471
471
pkg = "ex_aws";
472
472
version = "${version}";
473
473
-
sha256 = "67115f1d399d7ec4d191812ee565c6106cb4b1bbf19a9d4db06f265fd87da97e";
473
473
+
sha256 = "971b86e5495fc0ae1c318e35e23f389e74cf322f2c02d34037c6fc6d405006f1";
474
474
};
475
475
476
476
beamDeps = [ hackney jason mime sweet_xml telemetry ];
···
478
478
479
479
ex_aws_s3 = buildMix rec {
480
480
name = "ex_aws_s3";
481
481
-
version = "2.5.3";
481
481
+
version = "2.5.2";
482
482
483
483
src = fetchHex {
484
484
pkg = "ex_aws_s3";
485
485
version = "${version}";
486
486
-
sha256 = "4f09dd372cc386550e484808c5ac5027766c8d0cd8271ccc578b82ee6ef4f3b8";
486
486
+
sha256 = "cc5bd945a22a99eece4721d734ae2452d3717e81c357a781c8574663254df4a1";
487
487
};
488
488
489
489
beamDeps = [ ex_aws sweet_xml ];
···
499
499
sha256 = "96fd346610cc992b8f896ed26a98be82ac4efb065a0578f334a32d60a3ba9767";
500
500
};
501
501
502
502
-
beamDeps = [ ];
502
502
+
beamDeps = [];
503
503
};
504
504
505
505
ex_doc = buildMix rec {
506
506
name = "ex_doc";
507
507
-
version = "0.32.0";
507
507
+
version = "0.31.0";
508
508
509
509
src = fetchHex {
510
510
pkg = "ex_doc";
511
511
version = "${version}";
512
512
-
sha256 = "ed2c3e42c558f49bda3ff37e05713432006e1719a6c4a3320c7e4735787374e7";
512
512
+
sha256 = "5350cafa6b7f77bdd107aa2199fe277acf29d739aba5aee7e865fc680c62a110";
513
513
};
514
514
515
515
beamDeps = [ earmark_parser makeup_elixir makeup_erlang ];
···
564
564
sha256 = "2ff7ba7a798c8c543c12550fa0e2cbc81b95d4974c65855d8d15ba7b37a1ce47";
565
565
};
566
566
567
567
-
beamDeps = [ ];
567
567
+
beamDeps = [];
568
568
};
569
569
570
570
fast_html = buildMix rec {
571
571
name = "fast_html";
572
572
-
version = "2.3.0";
572
572
+
version = "2.2.0";
573
573
574
574
src = fetchHex {
575
575
pkg = "fast_html";
576
576
version = "${version}";
577
577
-
sha256 = "f18e3c7668f82d3ae0b15f48d48feeb257e28aa5ab1b0dbf781c7312e5da029d";
577
577
+
sha256 = "064c4f23b4a6168f9187dac8984b056f2c531bb0787f559fd6a8b34b38aefbae";
578
578
};
579
579
580
580
beamDeps = [ elixir_make nimble_pool ];
···
595
595
596
596
file_system = buildMix rec {
597
597
name = "file_system";
598
598
-
version = "1.0.0";
598
598
+
version = "0.2.10";
599
599
600
600
src = fetchHex {
601
601
pkg = "file_system";
602
602
version = "${version}";
603
603
-
sha256 = "6752092d66aec5a10e662aefeed8ddb9531d79db0bc145bb8c40325ca1d8536d";
603
603
+
sha256 = "41195edbfb562a593726eda3b3e8b103a309b733ad25f3d642ba49696bf715dc";
604
604
};
605
605
606
606
-
beamDeps = [ ];
606
606
+
beamDeps = [];
607
607
};
608
608
609
609
finch = buildMix rec {
···
634
634
635
635
floki = buildMix rec {
636
636
name = "floki";
637
637
-
version = "0.36.1";
637
637
+
version = "0.35.2";
638
638
639
639
src = fetchHex {
640
640
pkg = "floki";
641
641
version = "${version}";
642
642
-
sha256 = "21ba57abb8204bcc70c439b423fc0dd9f0286de67dc82773a14b0200ada0995f";
642
642
+
sha256 = "6b05289a8e9eac475f644f09c2e4ba7e19201fd002b89c28c1293e7bd16773d9";
643
643
};
644
644
645
645
-
beamDeps = [ ];
645
645
+
beamDeps = [];
646
646
};
647
647
648
648
gen_smtp = buildRebar3 rec {
···
694
694
sha256 = "2c87843d5a23f5f16748ebe77969880e29809580efdaccd615cd3bed628a8c13";
695
695
};
696
696
697
697
-
beamDeps = [ ];
697
697
+
beamDeps = [];
698
698
};
699
699
700
700
html_entities = buildMix rec {
···
707
707
sha256 = "c53ba390403485615623b9531e97696f076ed415e8d8058b1dbaa28181f4fdcc";
708
708
};
709
709
710
710
-
beamDeps = [ ];
710
710
+
beamDeps = [];
711
711
};
712
712
713
713
httpoison = buildMix rec {
···
738
738
739
739
inet_cidr = buildMix rec {
740
740
name = "inet_cidr";
741
741
-
version = "1.0.8";
741
741
+
version = "1.0.4";
742
742
743
743
src = fetchHex {
744
744
pkg = "inet_cidr";
745
745
version = "${version}";
746
746
-
sha256 = "d5b26da66603bb56c933c65214c72152f0de9a6ea53618b56d63302a68f6a90e";
746
746
+
sha256 = "64a2d30189704ae41ca7dbdd587f5291db5d1dda1414e0774c29ffc81088c1bc";
747
747
};
748
748
749
749
-
beamDeps = [ ];
749
749
+
beamDeps = [];
750
750
};
751
751
752
752
jason = buildMix rec {
···
764
764
765
765
joken = buildMix rec {
766
766
name = "joken";
767
767
-
version = "2.6.1";
767
767
+
version = "2.6.0";
768
768
769
769
src = fetchHex {
770
770
pkg = "joken";
771
771
version = "${version}";
772
772
-
sha256 = "ab26122c400b3d254ce7d86ed066d6afad27e70416df947cdcb01e13a7382e68";
772
772
+
sha256 = "5a95b05a71cd0b54abd35378aeb1d487a23a52c324fa7efdffc512b655b5aaa7";
773
773
};
774
774
775
775
beamDeps = [ jose ];
···
777
777
778
778
jose = buildMix rec {
779
779
name = "jose";
780
780
-
version = "1.11.9";
780
780
+
version = "1.11.6";
781
781
782
782
src = fetchHex {
783
783
pkg = "jose";
784
784
version = "${version}";
785
785
-
sha256 = "b5ccc3749d2e1638c26bed806259df5bc9e438797fe60dc71e9fa0716133899b";
785
785
+
sha256 = "6275cb75504f9c1e60eeacb771adfeee4905a9e182103aa59b53fed651ff9738";
786
786
};
787
787
788
788
-
beamDeps = [ ];
788
788
+
beamDeps = [];
789
789
};
790
790
791
791
jumper = buildMix rec {
···
798
798
sha256 = "9b7782409021e01ab3c08270e26f36eb62976a38c1aa64b2eaf6348422f165e1";
799
799
};
800
800
801
801
-
beamDeps = [ ];
801
801
+
beamDeps = [];
802
802
};
803
803
804
804
mail = buildMix rec {
···
811
811
sha256 = "1db701e89865c1d5fa296b2b57b1cd587587cca8d8a1a22892b35ef5a8e352a6";
812
812
};
813
813
814
814
-
beamDeps = [ ];
814
814
+
beamDeps = [];
815
815
};
816
816
817
817
makeup = buildMix rec {
···
829
829
830
830
makeup_elixir = buildMix rec {
831
831
name = "makeup_elixir";
832
832
-
version = "0.16.2";
832
832
+
version = "0.16.1";
833
833
834
834
src = fetchHex {
835
835
pkg = "makeup_elixir";
836
836
version = "${version}";
837
837
-
sha256 = "41193978704763f6bbe6cc2758b84909e62984c7752b3784bd3c218bb341706b";
837
837
+
sha256 = "e127a341ad1b209bd80f7bd1620a15693a9908ed780c3b763bccf7d200c767c6";
838
838
};
839
839
840
840
beamDeps = [ makeup nimble_parsec ];
···
842
842
843
843
makeup_erlang = buildMix rec {
844
844
name = "makeup_erlang";
845
845
-
version = "0.1.5";
845
845
+
version = "0.1.3";
846
846
847
847
src = fetchHex {
848
848
pkg = "makeup_erlang";
849
849
version = "${version}";
850
850
-
sha256 = "94d2e986428585a21516d7d7149781480013c56e30c6a233534bedf38867a59a";
850
850
+
sha256 = "b78dc853d2e670ff6390b605d807263bf606da3c82be37f9d7f68635bd886fc9";
851
851
};
852
852
853
853
beamDeps = [ makeup ];
···
863
863
sha256 = "81344f561357dc40a8344afa53767c32669153355b626ea9fcbc8da6b3045826";
864
864
};
865
865
866
866
-
beamDeps = [ ];
866
866
+
beamDeps = [];
867
867
};
868
868
869
869
metrics = buildRebar3 rec {
···
876
876
sha256 = "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16";
877
877
};
878
878
879
879
-
beamDeps = [ ];
879
879
+
beamDeps = [];
880
880
};
881
881
882
882
mime = buildMix rec {
···
889
889
sha256 = "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c";
890
890
};
891
891
892
892
-
beamDeps = [ ];
892
892
+
beamDeps = [];
893
893
};
894
894
895
895
mimerl = buildRebar3 rec {
896
896
name = "mimerl";
897
897
-
version = "1.2.0";
897
897
+
version = "1.3.0";
898
898
899
899
src = fetchHex {
900
900
pkg = "mimerl";
901
901
version = "${version}";
902
902
-
sha256 = "f278585650aa581986264638ebf698f8bb19df297f66ad91b18910dfc6e19323";
902
902
+
sha256 = "a1e15a50d1887217de95f0b9b0793e32853f7c258a5cd227650889b38839fe9d";
903
903
};
904
904
905
905
-
beamDeps = [ ];
905
905
+
beamDeps = [];
906
906
};
907
907
908
908
mint = buildMix rec {
···
941
941
sha256 = "0189b1e1de27455f2b9ae8cf88239cefd23d38de9276eb5add7159aea51731e6";
942
942
};
943
943
944
944
-
beamDeps = [ ];
944
944
+
beamDeps = [];
945
945
};
946
946
947
947
mox = buildMix rec {
···
954
954
sha256 = "d44474c50be02d5b72131070281a5d3895c0e7a95c780e90bc0cfe712f633a13";
955
955
};
956
956
957
957
-
beamDeps = [ ];
957
957
+
beamDeps = [];
958
958
};
959
959
960
960
nimble_options = buildMix rec {
···
967
967
sha256 = "8bbbb3941af3ca9acc7835f5655ea062111c9c27bcac53e004460dfd19008a99";
968
968
};
969
969
970
970
-
beamDeps = [ ];
970
970
+
beamDeps = [];
971
971
};
972
972
973
973
nimble_parsec = buildMix rec {
···
980
980
sha256 = "9c565862810fb383e9838c1dd2d7d2c437b3d13b267414ba6af33e50d2d1cf28";
981
981
};
982
982
983
983
-
beamDeps = [ ];
983
983
+
beamDeps = [];
984
984
};
985
985
986
986
nimble_pool = buildMix rec {
987
987
name = "nimble_pool";
988
988
-
version = "1.1.0";
988
988
+
version = "1.0.0";
989
989
990
990
src = fetchHex {
991
991
pkg = "nimble_pool";
992
992
version = "${version}";
993
993
-
sha256 = "af2e4e6b34197db81f7aad230c1118eac993acc0dae6bc83bac0126d4ae0813a";
993
993
+
sha256 = "80be3b882d2d351882256087078e1b1952a28bf98d0a287be87e4a24a710b67a";
994
994
};
995
995
996
996
-
beamDeps = [ ];
996
996
+
beamDeps = [];
997
997
};
998
998
999
999
oban = buildMix rec {
1000
1000
name = "oban";
1001
1001
-
version = "2.17.8";
1001
1001
+
version = "2.15.4";
1002
1002
1003
1003
src = fetchHex {
1004
1004
pkg = "oban";
1005
1005
version = "${version}";
1006
1006
-
sha256 = "a2165bf93843b7bcb68182c82725ddd4cb43c0c3719f114e7aa3b6c99c4b6129";
1006
1006
+
sha256 = "5fce611fdfffb13e9148df883116e5201adf1e731eb302cc88cde0588510079c";
1007
1007
};
1008
1008
1009
1009
beamDeps = [ ecto_sql jason postgrex telemetry ];
···
1011
1011
1012
1012
open_api_spex = buildMix rec {
1013
1013
name = "open_api_spex";
1014
1014
-
version = "3.18.3";
1014
1014
+
version = "3.18.0";
1015
1015
1016
1016
src = fetchHex {
1017
1017
pkg = "open_api_spex";
1018
1018
version = "${version}";
1019
1019
-
sha256 = "c0cfc31570199ce7e7520b494a591027da609af45f6bf9adce51e2469b1609fb";
1019
1019
+
sha256 = "37849887ab67efab052376401fac28c0974b273ffaecd98f4532455ca0886464";
1020
1020
};
1021
1021
1022
1022
beamDeps = [ jason plug poison ];
···
1032
1032
sha256 = "620a406ce75dada827b82e453c19cf06776be266f5a67cff34e1ef2cbb60e49a";
1033
1033
};
1034
1034
1035
1035
-
beamDeps = [ ];
1035
1035
+
beamDeps = [];
1036
1036
};
1037
1037
1038
1038
phoenix = buildMix rec {
1039
1039
name = "phoenix";
1040
1040
-
version = "1.7.12";
1040
1040
+
version = "1.7.10";
1041
1041
1042
1042
src = fetchHex {
1043
1043
pkg = "phoenix";
1044
1044
version = "${version}";
1045
1045
-
sha256 = "d646192fbade9f485b01bc9920c139bfdd19d0f8df3d73fd8eaf2dfbe0d2837c";
1045
1045
+
sha256 = "cf784932e010fd736d656d7fead6a584a4498efefe5b8227e9f383bf15bb79d0";
1046
1046
};
1047
1047
1048
1048
beamDeps = [ castore jason phoenix_pubsub phoenix_template phoenix_view plug plug_cowboy plug_crypto telemetry websock_adapter ];
···
1050
1050
1051
1051
phoenix_ecto = buildMix rec {
1052
1052
name = "phoenix_ecto";
1053
1053
-
version = "4.5.1";
1053
1053
+
version = "4.4.3";
1054
1054
1055
1055
src = fetchHex {
1056
1056
pkg = "phoenix_ecto";
1057
1057
version = "${version}";
1058
1058
-
sha256 = "ebe43aa580db129e54408e719fb9659b7f9e0d52b965c5be26cdca416ecead28";
1058
1058
+
sha256 = "d36c401206f3011fefd63d04e8ef626ec8791975d9d107f9a0817d426f61ac07";
1059
1059
};
1060
1060
1061
1061
beamDeps = [ ecto phoenix_html plug ];
···
1110
1110
sha256 = "bba06bc1dcfd8cb086759f0edc94a8ba2bc8896d5331a1e2c2902bf8e36ee502";
1111
1111
};
1112
1112
1113
1113
-
beamDeps = [ ];
1113
1113
+
beamDeps = [];
1114
1114
};
1115
1115
1116
1116
phoenix_swoosh = buildMix rec {
1117
1117
name = "phoenix_swoosh";
1118
1118
-
version = "1.2.1";
1118
1118
+
version = "1.2.0";
1119
1119
1120
1120
src = fetchHex {
1121
1121
pkg = "phoenix_swoosh";
1122
1122
version = "${version}";
1123
1123
-
sha256 = "4000eeba3f9d7d1a6bf56d2bd56733d5cadf41a7f0d8ffe5bb67e7d667e204a2";
1123
1123
+
sha256 = "e88d117251e89a16b92222415a6d87b99a96747ddf674fc5c7631de734811dba";
1124
1124
};
1125
1125
1126
1126
beamDeps = [ finch hackney phoenix phoenix_html phoenix_view swoosh ];
···
1128
1128
1129
1129
phoenix_template = buildMix rec {
1130
1130
name = "phoenix_template";
1131
1131
-
version = "1.0.4";
1131
1131
+
version = "1.0.3";
1132
1132
1133
1133
src = fetchHex {
1134
1134
pkg = "phoenix_template";
1135
1135
version = "${version}";
1136
1136
-
sha256 = "2c0c81f0e5c6753faf5cca2f229c9709919aba34fab866d3bc05060c9c444206";
1136
1136
+
sha256 = "16f4b6588a4152f3cc057b9d0c0ba7e82ee23afa65543da535313ad8d25d8e2c";
1137
1137
};
1138
1138
1139
1139
beamDeps = [ phoenix_html ];
···
1154
1154
1155
1155
plug = buildMix rec {
1156
1156
name = "plug";
1157
1157
-
version = "1.15.3";
1157
1157
+
version = "1.15.2";
1158
1158
1159
1159
src = fetchHex {
1160
1160
pkg = "plug";
1161
1161
version = "${version}";
1162
1162
-
sha256 = "cc4365a3c010a56af402e0809208873d113e9c38c401cabd88027ef4f5c01fd2";
1162
1162
+
sha256 = "02731fa0c2dcb03d8d21a1d941bdbbe99c2946c0db098eee31008e04c6283615";
1163
1163
};
1164
1164
1165
1165
beamDeps = [ mime plug_crypto telemetry ];
···
1167
1167
1168
1168
plug_cowboy = buildMix rec {
1169
1169
name = "plug_cowboy";
1170
1170
-
version = "2.7.1";
1170
1170
+
version = "2.6.1";
1171
1171
1172
1172
src = fetchHex {
1173
1173
pkg = "plug_cowboy";
1174
1174
version = "${version}";
1175
1175
-
sha256 = "02dbd5f9ab571b864ae39418db7811618506256f6d13b4a45037e5fe78dc5de3";
1175
1175
+
sha256 = "de36e1a21f451a18b790f37765db198075c25875c64834bcc82d90b309eb6613";
1176
1176
};
1177
1177
1178
1178
beamDeps = [ cowboy cowboy_telemetry plug ];
···
1188
1188
sha256 = "53695bae57cc4e54566d993eb01074e4d894b65a3766f1c43e2c61a1b0f45ea9";
1189
1189
};
1190
1190
1191
1191
-
beamDeps = [ ];
1191
1191
+
beamDeps = [];
1192
1192
};
1193
1193
1194
1194
plug_static_index_html = buildMix rec {
···
1227
1227
sha256 = "dad79704ce5440f3d5a3681c8590b9dc25d1a561e8f5a9c995281012860901e3";
1228
1228
};
1229
1229
1230
1230
-
beamDeps = [ ];
1230
1230
+
beamDeps = [];
1231
1231
};
1232
1232
1233
1233
postgrex = buildMix rec {
1234
1234
name = "postgrex";
1235
1235
-
version = "0.17.5";
1235
1235
+
version = "0.17.4";
1236
1236
1237
1237
src = fetchHex {
1238
1238
pkg = "postgrex";
1239
1239
version = "${version}";
1240
1240
-
sha256 = "50b8b11afbb2c4095a3ba675b4f055c416d0f3d7de6633a595fc131a828a67eb";
1240
1240
+
sha256 = "6458f7d5b70652bc81c3ea759f91736c16a31be000f306d3c64bcdfe9a18b3cc";
1241
1241
};
1242
1242
1243
1243
beamDeps = [ db_connection decimal jason ];
···
1253
1253
sha256 = "78fe127f5a4f5f919d6ea5a2a671827bd53eb9d37e5b4128c0ad3df99856c2e0";
1254
1254
};
1255
1255
1256
1256
-
beamDeps = [ ];
1256
1256
+
beamDeps = [];
1257
1257
};
1258
1258
1259
1259
ranch = buildRebar3 rec {
···
1266
1266
sha256 = "49fbcfd3682fab1f5d109351b61257676da1a2fdbe295904176d5e521a2ddfe5";
1267
1267
};
1268
1268
1269
1269
-
beamDeps = [ ];
1269
1269
+
beamDeps = [];
1270
1270
};
1271
1271
1272
1272
recon = buildMix rec {
1273
1273
name = "recon";
1274
1274
-
version = "2.5.5";
1274
1274
+
version = "2.5.4";
1275
1275
1276
1276
src = fetchHex {
1277
1277
pkg = "recon";
1278
1278
version = "${version}";
1279
1279
-
sha256 = "632a6f447df7ccc1a4a10bdcfce71514412b16660fe59deca0fcf0aa3c054404";
1279
1279
+
sha256 = "e9ab01ac7fc8572e41eb59385efeb3fb0ff5bf02103816535bacaedf327d0263";
1280
1280
};
1281
1281
1282
1282
-
beamDeps = [ ];
1282
1282
+
beamDeps = [];
1283
1283
};
1284
1284
1285
1285
remote_ip = buildMix rec {
···
1305
1305
sha256 = "9fe5d048c5b781d6305c1a3a0f40bb3dfc06f49bf40571f3d2d0c57eaa7f59a5";
1306
1306
};
1307
1307
1308
1308
-
beamDeps = [ ];
1308
1308
+
beamDeps = [];
1309
1309
};
1310
1310
1311
1311
ssl_verify_fun = buildRebar3 rec {
···
1318
1318
sha256 = "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8";
1319
1319
};
1320
1320
1321
1321
-
beamDeps = [ ];
1321
1321
+
beamDeps = [];
1322
1322
};
1323
1323
1324
1324
statistex = buildMix rec {
···
1331
1331
sha256 = "ff9d8bee7035028ab4742ff52fc80a2aa35cece833cf5319009b52f1b5a86c27";
1332
1332
};
1333
1333
1334
1334
-
beamDeps = [ ];
1334
1334
+
beamDeps = [];
1335
1335
};
1336
1336
1337
1337
sweet_xml = buildMix rec {
···
1344
1344
sha256 = "e7c4b0bdbf460c928234951def54fe87edf1a170f6896675443279e2dbeba167";
1345
1345
};
1346
1346
1347
1347
-
beamDeps = [ ];
1347
1347
+
beamDeps = [];
1348
1348
};
1349
1349
1350
1350
swoosh = buildMix rec {
1351
1351
name = "swoosh";
1352
1352
-
version = "1.14.4";
1352
1352
+
version = "1.14.2";
1353
1353
1354
1354
src = fetchHex {
1355
1355
pkg = "swoosh";
1356
1356
version = "${version}";
1357
1357
-
sha256 = "081c5a590e4ba85cc89baddf7b2beecf6c13f7f84a958f1cd969290815f0f026";
1357
1357
+
sha256 = "01d8fae72930a0b5c1bb9725df0408602ed8c5c3d59dc6e7a39c57b723cd1065";
1358
1358
};
1359
1359
1360
1360
beamDeps = [ cowboy ex_aws finch gen_smtp hackney jason mail mime plug plug_cowboy telemetry ];
···
1370
1370
sha256 = "4c6a41373c7e20587be33ef841d3de6f3beba08519809329ecc4d27b15b659e1";
1371
1371
};
1372
1372
1373
1373
-
beamDeps = [ ];
1373
1373
+
beamDeps = [];
1374
1374
};
1375
1375
1376
1376
table_rex = buildMix rec {
1377
1377
name = "table_rex";
1378
1378
-
version = "4.0.0";
1378
1378
+
version = "3.1.1";
1379
1379
1380
1380
src = fetchHex {
1381
1381
pkg = "table_rex";
1382
1382
version = "${version}";
1383
1383
-
sha256 = "c35c4d5612ca49ebb0344ea10387da4d2afe278387d4019e4d8111e815df8f55";
1383
1383
+
sha256 = "678a23aba4d670419c23c17790f9dcd635a4a89022040df7d5d772cb21012490";
1384
1384
};
1385
1385
1386
1386
-
beamDeps = [ ];
1386
1386
+
beamDeps = [];
1387
1387
};
1388
1388
1389
1389
telemetry = buildRebar3 rec {
···
1396
1396
sha256 = "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5";
1397
1397
};
1398
1398
1399
1399
-
beamDeps = [ ];
1399
1399
+
beamDeps = [];
1400
1400
};
1401
1401
1402
1402
telemetry_metrics = buildMix rec {
1403
1403
name = "telemetry_metrics";
1404
1404
-
version = "0.6.2";
1404
1404
+
version = "0.6.1";
1405
1405
1406
1406
src = fetchHex {
1407
1407
pkg = "telemetry_metrics";
1408
1408
version = "${version}";
1409
1409
-
sha256 = "9b43db0dc33863930b9ef9d27137e78974756f5f198cae18409970ed6fa5b561";
1409
1409
+
sha256 = "7be9e0871c41732c233be71e4be11b96e56177bf15dde64a8ac9ce72ac9834c6";
1410
1410
};
1411
1411
1412
1412
beamDeps = [ telemetry ];
···
1440
1440
1441
1441
telemetry_poller = buildRebar3 rec {
1442
1442
name = "telemetry_poller";
1443
1443
-
version = "1.1.0";
1443
1443
+
version = "1.0.0";
1444
1444
1445
1445
src = fetchHex {
1446
1446
pkg = "telemetry_poller";
1447
1447
version = "${version}";
1448
1448
-
sha256 = "9eb9d9cbfd81cbd7cdd24682f8711b6e2b691289a0de6826e58452f28c103c8f";
1448
1448
+
sha256 = "b3a24eafd66c3f42da30fc3ca7dda1e9d546c12250a2d60d7b81d264fbec4f6e";
1449
1449
};
1450
1450
1451
1451
beamDeps = [ telemetry ];
···
1453
1453
1454
1454
tesla = buildMix rec {
1455
1455
name = "tesla";
1456
1456
-
version = "1.9.0";
1456
1456
+
version = "1.8.0";
1457
1457
1458
1458
src = fetchHex {
1459
1459
pkg = "tesla";
1460
1460
version = "${version}";
1461
1461
-
sha256 = "7c240c67e855f7e63e795bf16d6b3f5115a81d1f44b7fe4eadbf656bae0fef8a";
1461
1461
+
sha256 = "10501f360cd926a309501287470372af1a6e1cbed0f43949203a4c13300bc79f";
1462
1462
};
1463
1463
1464
1464
beamDeps = [ castore finch hackney jason mime mint poison telemetry ];
···
1492
1492
1493
1493
tzdata = buildMix rec {
1494
1494
name = "tzdata";
1495
1495
-
version = "1.1.1";
1495
1495
+
version = "1.1.2";
1496
1496
1497
1497
src = fetchHex {
1498
1498
pkg = "tzdata";
1499
1499
version = "${version}";
1500
1500
-
sha256 = "a69cec8352eafcd2e198dea28a34113b60fdc6cb57eb5ad65c10292a6ba89787";
1500
1500
+
sha256 = "cec7b286e608371602318c414f344941d5eb0375e14cfdab605cca2fe66cba8b";
1501
1501
};
1502
1502
1503
1503
beamDeps = [ hackney ];
···
1526
1526
sha256 = "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521";
1527
1527
};
1528
1528
1529
1529
-
beamDeps = [ ];
1529
1529
+
beamDeps = [];
1530
1530
};
1531
1531
1532
1532
unsafe = buildMix rec {
···
1539
1539
sha256 = "b485231683c3ab01a9cd44cb4a79f152c6f3bb87358439c6f68791b85c2df675";
1540
1540
};
1541
1541
1542
1542
-
beamDeps = [ ];
1542
1542
+
beamDeps = [];
1543
1543
};
1544
1544
1545
1545
vex = buildMix rec {
1546
1546
name = "vex";
1547
1547
-
version = "0.9.2";
1547
1547
+
version = "0.9.1";
1548
1548
1549
1549
src = fetchHex {
1550
1550
pkg = "vex";
1551
1551
version = "${version}";
1552
1552
-
sha256 = "76e709a9762e98c6b462dfce92e9b5dfbf712839227f2da8add6dd11549b12cb";
1552
1552
+
sha256 = "a0f9f3959d127ad6a6a617c3f607ecfb1bc6f3c59f9c3614a901a46d1765bafe";
1553
1553
};
1554
1554
1555
1555
-
beamDeps = [ ];
1555
1555
+
beamDeps = [];
1556
1556
};
1557
1557
1558
1558
web_push_encryption = buildMix rec {
···
1578
1578
sha256 = "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453";
1579
1579
};
1580
1580
1581
1581
-
beamDeps = [ ];
1581
1581
+
beamDeps = [];
1582
1582
};
1583
1583
1584
1584
websock_adapter = buildMix rec {
1585
1585
name = "websock_adapter";
1586
1586
-
version = "0.5.6";
1586
1586
+
version = "0.5.5";
1587
1587
1588
1588
src = fetchHex {
1589
1589
pkg = "websock_adapter";
1590
1590
version = "${version}";
1591
1591
-
sha256 = "e04378d26b0af627817ae84c92083b7e97aca3121196679b73c73b99d0d133ea";
1591
1591
+
sha256 = "4b977ba4a01918acbf77045ff88de7f6972c2a009213c515a445c48f224ffce9";
1592
1592
};
1593
1593
1594
1594
beamDeps = [ plug plug_cowboy websock ];
···
1604
1604
sha256 = "95f2e7072b85a3a4cc385602d42115b73ce0b74a9121d0d6dbbf557645ac53e4";
1605
1605
};
1606
1606
1607
1607
-
beamDeps = [ ];
1607
1607
+
beamDeps = [];
1608
1608
};
1609
1609
};
1610
1610
-
in
1611
1611
-
self
1610
1610
+
in self
1612
1611
+4
-4
pkgs/servers/nextcloud/default.nix
···
59
59
in
60
60
{
61
61
nextcloud28 = generic {
62
62
-
version = "28.0.12";
63
63
-
hash = "sha256-KgDKT3mTYPCYf8vIXZmywlj30sz35vfgxMzxehJ/AQU=";
62
62
+
version = "28.0.14";
63
63
+
hash = "sha256-SpN/GIJIZCbJcD5Z7EspP2Ib6NCAt/hQFvYpkDw68zY=";
64
64
packages = nextcloud28Packages;
65
65
};
66
66
···
71
71
};
72
72
73
73
nextcloud30 = generic {
74
74
-
version = "30.0.2";
75
75
-
hash = "sha256-kpu4BF6WIW/iKmXc1mJ55b17oauynZm/QB1CO2RqRF8=";
74
74
+
version = "30.0.4";
75
75
+
hash = "sha256-62qrqazvRC8rPkqZa37ope0kRC+bumgSN/so7ZcOH6U=";
76
76
packages = nextcloud30Packages;
77
77
};
78
78
+2
-2
pkgs/servers/sql/postgresql/ext/pg_cron.nix
···
8
8
9
9
buildPostgresqlExtension rec {
10
10
pname = "pg_cron";
11
11
-
version = "1.6.4";
11
11
+
version = "1.6.5";
12
12
13
13
src = fetchFromGitHub {
14
14
owner = "citusdata";
15
15
repo = pname;
16
16
rev = "v${version}";
17
17
-
hash = "sha256-t1DpFkPiSfdoGG2NgNT7g1lkvSooZoRoUrix6cBID40=";
17
17
+
hash = "sha256-Llksil7Fk7jvJJmCpfCN0Qm2b2I4J1VOA7/ibytO+KM=";
18
18
};
19
19
20
20
meta = with lib; {
-2697
pkgs/tools/networking/bandwhich/Cargo.lock
···
1
1
-
# This file is automatically @generated by Cargo.
2
2
-
# It is not intended for manual editing.
3
3
-
version = 3
4
4
-
5
5
-
[[package]]
6
6
-
name = "addr2line"
7
7
-
version = "0.22.0"
8
8
-
source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
-
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
10
10
-
dependencies = [
11
11
-
"gimli",
12
12
-
]
13
13
-
14
14
-
[[package]]
15
15
-
name = "adler"
16
16
-
version = "1.0.2"
17
17
-
source = "registry+https://github.com/rust-lang/crates.io-index"
18
18
-
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
19
-
20
20
-
[[package]]
21
21
-
name = "aes"
22
22
-
version = "0.8.4"
23
23
-
source = "registry+https://github.com/rust-lang/crates.io-index"
24
24
-
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
25
25
-
dependencies = [
26
26
-
"cfg-if",
27
27
-
"cipher",
28
28
-
"cpufeatures",
29
29
-
]
30
30
-
31
31
-
[[package]]
32
32
-
name = "ahash"
33
33
-
version = "0.8.11"
34
34
-
source = "registry+https://github.com/rust-lang/crates.io-index"
35
35
-
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
36
36
-
dependencies = [
37
37
-
"cfg-if",
38
38
-
"once_cell",
39
39
-
"version_check",
40
40
-
"zerocopy",
41
41
-
]
42
42
-
43
43
-
[[package]]
44
44
-
name = "aho-corasick"
45
45
-
version = "1.1.3"
46
46
-
source = "registry+https://github.com/rust-lang/crates.io-index"
47
47
-
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
48
48
-
dependencies = [
49
49
-
"memchr",
50
50
-
]
51
51
-
52
52
-
[[package]]
53
53
-
name = "allocator-api2"
54
54
-
version = "0.2.18"
55
55
-
source = "registry+https://github.com/rust-lang/crates.io-index"
56
56
-
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
57
57
-
58
58
-
[[package]]
59
59
-
name = "android-tzdata"
60
60
-
version = "0.1.1"
61
61
-
source = "registry+https://github.com/rust-lang/crates.io-index"
62
62
-
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
63
63
-
64
64
-
[[package]]
65
65
-
name = "android_system_properties"
66
66
-
version = "0.1.5"
67
67
-
source = "registry+https://github.com/rust-lang/crates.io-index"
68
68
-
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
69
69
-
dependencies = [
70
70
-
"libc",
71
71
-
]
72
72
-
73
73
-
[[package]]
74
74
-
name = "anstream"
75
75
-
version = "0.6.14"
76
76
-
source = "registry+https://github.com/rust-lang/crates.io-index"
77
77
-
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
78
78
-
dependencies = [
79
79
-
"anstyle",
80
80
-
"anstyle-parse",
81
81
-
"anstyle-query",
82
82
-
"anstyle-wincon",
83
83
-
"colorchoice",
84
84
-
"is_terminal_polyfill",
85
85
-
"utf8parse",
86
86
-
]
87
87
-
88
88
-
[[package]]
89
89
-
name = "anstyle"
90
90
-
version = "1.0.7"
91
91
-
source = "registry+https://github.com/rust-lang/crates.io-index"
92
92
-
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
93
93
-
94
94
-
[[package]]
95
95
-
name = "anstyle-parse"
96
96
-
version = "0.2.4"
97
97
-
source = "registry+https://github.com/rust-lang/crates.io-index"
98
98
-
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
99
99
-
dependencies = [
100
100
-
"utf8parse",
101
101
-
]
102
102
-
103
103
-
[[package]]
104
104
-
name = "anstyle-query"
105
105
-
version = "1.1.0"
106
106
-
source = "registry+https://github.com/rust-lang/crates.io-index"
107
107
-
checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391"
108
108
-
dependencies = [
109
109
-
"windows-sys 0.52.0",
110
110
-
]
111
111
-
112
112
-
[[package]]
113
113
-
name = "anstyle-wincon"
114
114
-
version = "3.0.3"
115
115
-
source = "registry+https://github.com/rust-lang/crates.io-index"
116
116
-
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
117
117
-
dependencies = [
118
118
-
"anstyle",
119
119
-
"windows-sys 0.52.0",
120
120
-
]
121
121
-
122
122
-
[[package]]
123
123
-
name = "anyhow"
124
124
-
version = "1.0.86"
125
125
-
source = "registry+https://github.com/rust-lang/crates.io-index"
126
126
-
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
127
127
-
dependencies = [
128
128
-
"backtrace",
129
129
-
]
130
130
-
131
131
-
[[package]]
132
132
-
name = "arbitrary"
133
133
-
version = "1.3.2"
134
134
-
source = "registry+https://github.com/rust-lang/crates.io-index"
135
135
-
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
136
136
-
dependencies = [
137
137
-
"derive_arbitrary",
138
138
-
]
139
139
-
140
140
-
[[package]]
141
141
-
name = "async-trait"
142
142
-
version = "0.1.81"
143
143
-
source = "registry+https://github.com/rust-lang/crates.io-index"
144
144
-
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
145
145
-
dependencies = [
146
146
-
"proc-macro2",
147
147
-
"quote",
148
148
-
"syn 2.0.68",
149
149
-
]
150
150
-
151
151
-
[[package]]
152
152
-
name = "autocfg"
153
153
-
version = "1.3.0"
154
154
-
source = "registry+https://github.com/rust-lang/crates.io-index"
155
155
-
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
156
156
-
157
157
-
[[package]]
158
158
-
name = "backtrace"
159
159
-
version = "0.3.73"
160
160
-
source = "registry+https://github.com/rust-lang/crates.io-index"
161
161
-
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
162
162
-
dependencies = [
163
163
-
"addr2line",
164
164
-
"cc",
165
165
-
"cfg-if",
166
166
-
"libc",
167
167
-
"miniz_oxide",
168
168
-
"object",
169
169
-
"rustc-demangle",
170
170
-
]
171
171
-
172
172
-
[[package]]
173
173
-
name = "bandwhich"
174
174
-
version = "0.23.0"
175
175
-
dependencies = [
176
176
-
"anyhow",
177
177
-
"async-trait",
178
178
-
"chrono",
179
179
-
"clap",
180
180
-
"clap-verbosity-flag",
181
181
-
"clap_complete",
182
182
-
"clap_mangen",
183
183
-
"crossterm",
184
184
-
"derivative",
185
185
-
"http_req",
186
186
-
"insta",
187
187
-
"ipnetwork",
188
188
-
"itertools 0.13.0",
189
189
-
"log",
190
190
-
"netstat2",
191
191
-
"once_cell",
192
192
-
"packet-builder",
193
193
-
"pnet",
194
194
-
"pnet_base",
195
195
-
"pnet_macros_support",
196
196
-
"procfs",
197
197
-
"ratatui",
198
198
-
"regex",
199
199
-
"resolv-conf",
200
200
-
"rstest",
201
201
-
"simplelog",
202
202
-
"strum",
203
203
-
"sysinfo",
204
204
-
"thiserror",
205
205
-
"tokio",
206
206
-
"trust-dns-resolver",
207
207
-
"unicode-width",
208
208
-
"zip",
209
209
-
]
210
210
-
211
211
-
[[package]]
212
212
-
name = "bitflags"
213
213
-
version = "1.3.2"
214
214
-
source = "registry+https://github.com/rust-lang/crates.io-index"
215
215
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
216
216
-
217
217
-
[[package]]
218
218
-
name = "bitflags"
219
219
-
version = "2.6.0"
220
220
-
source = "registry+https://github.com/rust-lang/crates.io-index"
221
221
-
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
222
222
-
223
223
-
[[package]]
224
224
-
name = "block-buffer"
225
225
-
version = "0.10.4"
226
226
-
source = "registry+https://github.com/rust-lang/crates.io-index"
227
227
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
228
228
-
dependencies = [
229
229
-
"generic-array",
230
230
-
]
231
231
-
232
232
-
[[package]]
233
233
-
name = "bstr"
234
234
-
version = "1.10.0"
235
235
-
source = "registry+https://github.com/rust-lang/crates.io-index"
236
236
-
checksum = "40723b8fb387abc38f4f4a37c09073622e41dd12327033091ef8950659e6dc0c"
237
237
-
dependencies = [
238
238
-
"memchr",
239
239
-
"regex-automata",
240
240
-
"serde",
241
241
-
]
242
242
-
243
243
-
[[package]]
244
244
-
name = "bumpalo"
245
245
-
version = "3.16.0"
246
246
-
source = "registry+https://github.com/rust-lang/crates.io-index"
247
247
-
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
248
248
-
249
249
-
[[package]]
250
250
-
name = "byteorder"
251
251
-
version = "1.5.0"
252
252
-
source = "registry+https://github.com/rust-lang/crates.io-index"
253
253
-
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
254
254
-
255
255
-
[[package]]
256
256
-
name = "bytes"
257
257
-
version = "1.6.0"
258
258
-
source = "registry+https://github.com/rust-lang/crates.io-index"
259
259
-
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
260
260
-
261
261
-
[[package]]
262
262
-
name = "bzip2"
263
263
-
version = "0.4.4"
264
264
-
source = "registry+https://github.com/rust-lang/crates.io-index"
265
265
-
checksum = "bdb116a6ef3f6c3698828873ad02c3014b3c85cadb88496095628e3ef1e347f8"
266
266
-
dependencies = [
267
267
-
"bzip2-sys",
268
268
-
"libc",
269
269
-
]
270
270
-
271
271
-
[[package]]
272
272
-
name = "bzip2-sys"
273
273
-
version = "0.1.11+1.0.8"
274
274
-
source = "registry+https://github.com/rust-lang/crates.io-index"
275
275
-
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
276
276
-
dependencies = [
277
277
-
"cc",
278
278
-
"libc",
279
279
-
"pkg-config",
280
280
-
]
281
281
-
282
282
-
[[package]]
283
283
-
name = "cassowary"
284
284
-
version = "0.3.0"
285
285
-
source = "registry+https://github.com/rust-lang/crates.io-index"
286
286
-
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
287
287
-
288
288
-
[[package]]
289
289
-
name = "castaway"
290
290
-
version = "0.2.2"
291
291
-
source = "registry+https://github.com/rust-lang/crates.io-index"
292
292
-
checksum = "8a17ed5635fc8536268e5d4de1e22e81ac34419e5f052d4d51f4e01dcc263fcc"
293
293
-
dependencies = [
294
294
-
"rustversion",
295
295
-
]
296
296
-
297
297
-
[[package]]
298
298
-
name = "cc"
299
299
-
version = "1.0.104"
300
300
-
source = "registry+https://github.com/rust-lang/crates.io-index"
301
301
-
checksum = "74b6a57f98764a267ff415d50a25e6e166f3831a5071af4995296ea97d210490"
302
302
-
dependencies = [
303
303
-
"jobserver",
304
304
-
"libc",
305
305
-
"once_cell",
306
306
-
]
307
307
-
308
308
-
[[package]]
309
309
-
name = "cfg-if"
310
310
-
version = "1.0.0"
311
311
-
source = "registry+https://github.com/rust-lang/crates.io-index"
312
312
-
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
313
313
-
314
314
-
[[package]]
315
315
-
name = "chrono"
316
316
-
version = "0.4.38"
317
317
-
source = "registry+https://github.com/rust-lang/crates.io-index"
318
318
-
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
319
319
-
dependencies = [
320
320
-
"android-tzdata",
321
321
-
"iana-time-zone",
322
322
-
"js-sys",
323
323
-
"num-traits",
324
324
-
"wasm-bindgen",
325
325
-
"windows-targets 0.52.6",
326
326
-
]
327
327
-
328
328
-
[[package]]
329
329
-
name = "cipher"
330
330
-
version = "0.4.4"
331
331
-
source = "registry+https://github.com/rust-lang/crates.io-index"
332
332
-
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
333
333
-
dependencies = [
334
334
-
"crypto-common",
335
335
-
"inout",
336
336
-
]
337
337
-
338
338
-
[[package]]
339
339
-
name = "clap"
340
340
-
version = "4.5.13"
341
341
-
source = "registry+https://github.com/rust-lang/crates.io-index"
342
342
-
checksum = "0fbb260a053428790f3de475e304ff84cdbc4face759ea7a3e64c1edd938a7fc"
343
343
-
dependencies = [
344
344
-
"clap_builder",
345
345
-
"clap_derive",
346
346
-
]
347
347
-
348
348
-
[[package]]
349
349
-
name = "clap-verbosity-flag"
350
350
-
version = "2.2.1"
351
351
-
source = "registry+https://github.com/rust-lang/crates.io-index"
352
352
-
checksum = "63d19864d6b68464c59f7162c9914a0b569ddc2926b4a2d71afe62a9738eff53"
353
353
-
dependencies = [
354
354
-
"clap",
355
355
-
"log",
356
356
-
]
357
357
-
358
358
-
[[package]]
359
359
-
name = "clap_builder"
360
360
-
version = "4.5.13"
361
361
-
source = "registry+https://github.com/rust-lang/crates.io-index"
362
362
-
checksum = "64b17d7ea74e9f833c7dbf2cbe4fb12ff26783eda4782a8975b72f895c9b4d99"
363
363
-
dependencies = [
364
364
-
"anstream",
365
365
-
"anstyle",
366
366
-
"clap_lex",
367
367
-
"strsim",
368
368
-
]
369
369
-
370
370
-
[[package]]
371
371
-
name = "clap_complete"
372
372
-
version = "4.5.12"
373
373
-
source = "registry+https://github.com/rust-lang/crates.io-index"
374
374
-
checksum = "a8670053e87c316345e384ca1f3eba3006fc6355ed8b8a1140d104e109e3df34"
375
375
-
dependencies = [
376
376
-
"clap",
377
377
-
]
378
378
-
379
379
-
[[package]]
380
380
-
name = "clap_derive"
381
381
-
version = "4.5.13"
382
382
-
source = "registry+https://github.com/rust-lang/crates.io-index"
383
383
-
checksum = "501d359d5f3dcaf6ecdeee48833ae73ec6e42723a1e52419c79abf9507eec0a0"
384
384
-
dependencies = [
385
385
-
"heck 0.5.0",
386
386
-
"proc-macro2",
387
387
-
"quote",
388
388
-
"syn 2.0.68",
389
389
-
]
390
390
-
391
391
-
[[package]]
392
392
-
name = "clap_lex"
393
393
-
version = "0.7.1"
394
394
-
source = "registry+https://github.com/rust-lang/crates.io-index"
395
395
-
checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70"
396
396
-
397
397
-
[[package]]
398
398
-
name = "clap_mangen"
399
399
-
version = "0.2.23"
400
400
-
source = "registry+https://github.com/rust-lang/crates.io-index"
401
401
-
checksum = "f17415fd4dfbea46e3274fcd8d368284519b358654772afb700dc2e8d2b24eeb"
402
402
-
dependencies = [
403
403
-
"clap",
404
404
-
"roff",
405
405
-
]
406
406
-
407
407
-
[[package]]
408
408
-
name = "colorchoice"
409
409
-
version = "1.0.1"
410
410
-
source = "registry+https://github.com/rust-lang/crates.io-index"
411
411
-
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
412
412
-
413
413
-
[[package]]
414
414
-
name = "compact_str"
415
415
-
version = "0.7.1"
416
416
-
source = "registry+https://github.com/rust-lang/crates.io-index"
417
417
-
checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f"
418
418
-
dependencies = [
419
419
-
"castaway",
420
420
-
"cfg-if",
421
421
-
"itoa",
422
422
-
"ryu",
423
423
-
"static_assertions",
424
424
-
]
425
425
-
426
426
-
[[package]]
427
427
-
name = "console"
428
428
-
version = "0.15.8"
429
429
-
source = "registry+https://github.com/rust-lang/crates.io-index"
430
430
-
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
431
431
-
dependencies = [
432
432
-
"encode_unicode",
433
433
-
"lazy_static",
434
434
-
"libc",
435
435
-
"windows-sys 0.52.0",
436
436
-
]
437
437
-
438
438
-
[[package]]
439
439
-
name = "constant_time_eq"
440
440
-
version = "0.3.0"
441
441
-
source = "registry+https://github.com/rust-lang/crates.io-index"
442
442
-
checksum = "f7144d30dcf0fafbce74250a3963025d8d52177934239851c917d29f1df280c2"
443
443
-
444
444
-
[[package]]
445
445
-
name = "core-foundation"
446
446
-
version = "0.9.4"
447
447
-
source = "registry+https://github.com/rust-lang/crates.io-index"
448
448
-
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
449
449
-
dependencies = [
450
450
-
"core-foundation-sys",
451
451
-
"libc",
452
452
-
]
453
453
-
454
454
-
[[package]]
455
455
-
name = "core-foundation-sys"
456
456
-
version = "0.8.6"
457
457
-
source = "registry+https://github.com/rust-lang/crates.io-index"
458
458
-
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
459
459
-
460
460
-
[[package]]
461
461
-
name = "cpufeatures"
462
462
-
version = "0.2.12"
463
463
-
source = "registry+https://github.com/rust-lang/crates.io-index"
464
464
-
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
465
465
-
dependencies = [
466
466
-
"libc",
467
467
-
]
468
468
-
469
469
-
[[package]]
470
470
-
name = "crc"
471
471
-
version = "3.2.1"
472
472
-
source = "registry+https://github.com/rust-lang/crates.io-index"
473
473
-
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
474
474
-
dependencies = [
475
475
-
"crc-catalog",
476
476
-
]
477
477
-
478
478
-
[[package]]
479
479
-
name = "crc-catalog"
480
480
-
version = "2.4.0"
481
481
-
source = "registry+https://github.com/rust-lang/crates.io-index"
482
482
-
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
483
483
-
484
484
-
[[package]]
485
485
-
name = "crc32fast"
486
486
-
version = "1.4.2"
487
487
-
source = "registry+https://github.com/rust-lang/crates.io-index"
488
488
-
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
489
489
-
dependencies = [
490
490
-
"cfg-if",
491
491
-
]
492
492
-
493
493
-
[[package]]
494
494
-
name = "crossbeam-deque"
495
495
-
version = "0.8.5"
496
496
-
source = "registry+https://github.com/rust-lang/crates.io-index"
497
497
-
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
498
498
-
dependencies = [
499
499
-
"crossbeam-epoch",
500
500
-
"crossbeam-utils",
501
501
-
]
502
502
-
503
503
-
[[package]]
504
504
-
name = "crossbeam-epoch"
505
505
-
version = "0.9.18"
506
506
-
source = "registry+https://github.com/rust-lang/crates.io-index"
507
507
-
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
508
508
-
dependencies = [
509
509
-
"crossbeam-utils",
510
510
-
]
511
511
-
512
512
-
[[package]]
513
513
-
name = "crossbeam-utils"
514
514
-
version = "0.8.20"
515
515
-
source = "registry+https://github.com/rust-lang/crates.io-index"
516
516
-
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
517
517
-
518
518
-
[[package]]
519
519
-
name = "crossterm"
520
520
-
version = "0.27.0"
521
521
-
source = "registry+https://github.com/rust-lang/crates.io-index"
522
522
-
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
523
523
-
dependencies = [
524
524
-
"bitflags 2.6.0",
525
525
-
"crossterm_winapi",
526
526
-
"libc",
527
527
-
"mio 0.8.11",
528
528
-
"parking_lot",
529
529
-
"signal-hook",
530
530
-
"signal-hook-mio",
531
531
-
"winapi",
532
532
-
]
533
533
-
534
534
-
[[package]]
535
535
-
name = "crossterm_winapi"
536
536
-
version = "0.9.1"
537
537
-
source = "registry+https://github.com/rust-lang/crates.io-index"
538
538
-
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
539
539
-
dependencies = [
540
540
-
"winapi",
541
541
-
]
542
542
-
543
543
-
[[package]]
544
544
-
name = "crypto-common"
545
545
-
version = "0.1.6"
546
546
-
source = "registry+https://github.com/rust-lang/crates.io-index"
547
547
-
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
548
548
-
dependencies = [
549
549
-
"generic-array",
550
550
-
"typenum",
551
551
-
]
552
552
-
553
553
-
[[package]]
554
554
-
name = "data-encoding"
555
555
-
version = "2.6.0"
556
556
-
source = "registry+https://github.com/rust-lang/crates.io-index"
557
557
-
checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2"
558
558
-
559
559
-
[[package]]
560
560
-
name = "deflate64"
561
561
-
version = "0.1.9"
562
562
-
source = "registry+https://github.com/rust-lang/crates.io-index"
563
563
-
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
564
564
-
565
565
-
[[package]]
566
566
-
name = "deranged"
567
567
-
version = "0.3.11"
568
568
-
source = "registry+https://github.com/rust-lang/crates.io-index"
569
569
-
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
570
570
-
dependencies = [
571
571
-
"powerfmt",
572
572
-
]
573
573
-
574
574
-
[[package]]
575
575
-
name = "derivative"
576
576
-
version = "2.2.0"
577
577
-
source = "registry+https://github.com/rust-lang/crates.io-index"
578
578
-
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
579
579
-
dependencies = [
580
580
-
"proc-macro2",
581
581
-
"quote",
582
582
-
"syn 1.0.109",
583
583
-
]
584
584
-
585
585
-
[[package]]
586
586
-
name = "derive-new"
587
587
-
version = "0.5.9"
588
588
-
source = "registry+https://github.com/rust-lang/crates.io-index"
589
589
-
checksum = "3418329ca0ad70234b9735dc4ceed10af4df60eff9c8e7b06cb5e520d92c3535"
590
590
-
dependencies = [
591
591
-
"proc-macro2",
592
592
-
"quote",
593
593
-
"syn 1.0.109",
594
594
-
]
595
595
-
596
596
-
[[package]]
597
597
-
name = "derive_arbitrary"
598
598
-
version = "1.3.2"
599
599
-
source = "registry+https://github.com/rust-lang/crates.io-index"
600
600
-
checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
601
601
-
dependencies = [
602
602
-
"proc-macro2",
603
603
-
"quote",
604
604
-
"syn 2.0.68",
605
605
-
]
606
606
-
607
607
-
[[package]]
608
608
-
name = "digest"
609
609
-
version = "0.10.7"
610
610
-
source = "registry+https://github.com/rust-lang/crates.io-index"
611
611
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
612
612
-
dependencies = [
613
613
-
"block-buffer",
614
614
-
"crypto-common",
615
615
-
"subtle",
616
616
-
]
617
617
-
618
618
-
[[package]]
619
619
-
name = "displaydoc"
620
620
-
version = "0.2.5"
621
621
-
source = "registry+https://github.com/rust-lang/crates.io-index"
622
622
-
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
623
623
-
dependencies = [
624
624
-
"proc-macro2",
625
625
-
"quote",
626
626
-
"syn 2.0.68",
627
627
-
]
628
628
-
629
629
-
[[package]]
630
630
-
name = "either"
631
631
-
version = "1.13.0"
632
632
-
source = "registry+https://github.com/rust-lang/crates.io-index"
633
633
-
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
634
634
-
635
635
-
[[package]]
636
636
-
name = "encode_unicode"
637
637
-
version = "0.3.6"
638
638
-
source = "registry+https://github.com/rust-lang/crates.io-index"
639
639
-
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
640
640
-
641
641
-
[[package]]
642
642
-
name = "enum-as-inner"
643
643
-
version = "0.6.0"
644
644
-
source = "registry+https://github.com/rust-lang/crates.io-index"
645
645
-
checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
646
646
-
dependencies = [
647
647
-
"heck 0.4.1",
648
648
-
"proc-macro2",
649
649
-
"quote",
650
650
-
"syn 2.0.68",
651
651
-
]
652
652
-
653
653
-
[[package]]
654
654
-
name = "equivalent"
655
655
-
version = "1.0.1"
656
656
-
source = "registry+https://github.com/rust-lang/crates.io-index"
657
657
-
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
658
658
-
659
659
-
[[package]]
660
660
-
name = "errno"
661
661
-
version = "0.3.9"
662
662
-
source = "registry+https://github.com/rust-lang/crates.io-index"
663
663
-
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
664
664
-
dependencies = [
665
665
-
"libc",
666
666
-
"windows-sys 0.52.0",
667
667
-
]
668
668
-
669
669
-
[[package]]
670
670
-
name = "fastrand"
671
671
-
version = "2.1.0"
672
672
-
source = "registry+https://github.com/rust-lang/crates.io-index"
673
673
-
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
674
674
-
675
675
-
[[package]]
676
676
-
name = "flate2"
677
677
-
version = "1.0.30"
678
678
-
source = "registry+https://github.com/rust-lang/crates.io-index"
679
679
-
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
680
680
-
dependencies = [
681
681
-
"crc32fast",
682
682
-
"miniz_oxide",
683
683
-
]
684
684
-
685
685
-
[[package]]
686
686
-
name = "foreign-types"
687
687
-
version = "0.3.2"
688
688
-
source = "registry+https://github.com/rust-lang/crates.io-index"
689
689
-
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
690
690
-
dependencies = [
691
691
-
"foreign-types-shared",
692
692
-
]
693
693
-
694
694
-
[[package]]
695
695
-
name = "foreign-types-shared"
696
696
-
version = "0.1.1"
697
697
-
source = "registry+https://github.com/rust-lang/crates.io-index"
698
698
-
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
699
699
-
700
700
-
[[package]]
701
701
-
name = "form_urlencoded"
702
702
-
version = "1.2.1"
703
703
-
source = "registry+https://github.com/rust-lang/crates.io-index"
704
704
-
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
705
705
-
dependencies = [
706
706
-
"percent-encoding",
707
707
-
]
708
708
-
709
709
-
[[package]]
710
710
-
name = "futures"
711
711
-
version = "0.3.30"
712
712
-
source = "registry+https://github.com/rust-lang/crates.io-index"
713
713
-
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
714
714
-
dependencies = [
715
715
-
"futures-channel",
716
716
-
"futures-core",
717
717
-
"futures-executor",
718
718
-
"futures-io",
719
719
-
"futures-sink",
720
720
-
"futures-task",
721
721
-
"futures-util",
722
722
-
]
723
723
-
724
724
-
[[package]]
725
725
-
name = "futures-channel"
726
726
-
version = "0.3.30"
727
727
-
source = "registry+https://github.com/rust-lang/crates.io-index"
728
728
-
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
729
729
-
dependencies = [
730
730
-
"futures-core",
731
731
-
"futures-sink",
732
732
-
]
733
733
-
734
734
-
[[package]]
735
735
-
name = "futures-core"
736
736
-
version = "0.3.30"
737
737
-
source = "registry+https://github.com/rust-lang/crates.io-index"
738
738
-
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
739
739
-
740
740
-
[[package]]
741
741
-
name = "futures-executor"
742
742
-
version = "0.3.30"
743
743
-
source = "registry+https://github.com/rust-lang/crates.io-index"
744
744
-
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
745
745
-
dependencies = [
746
746
-
"futures-core",
747
747
-
"futures-task",
748
748
-
"futures-util",
749
749
-
]
750
750
-
751
751
-
[[package]]
752
752
-
name = "futures-io"
753
753
-
version = "0.3.30"
754
754
-
source = "registry+https://github.com/rust-lang/crates.io-index"
755
755
-
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
756
756
-
757
757
-
[[package]]
758
758
-
name = "futures-macro"
759
759
-
version = "0.3.30"
760
760
-
source = "registry+https://github.com/rust-lang/crates.io-index"
761
761
-
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
762
762
-
dependencies = [
763
763
-
"proc-macro2",
764
764
-
"quote",
765
765
-
"syn 2.0.68",
766
766
-
]
767
767
-
768
768
-
[[package]]
769
769
-
name = "futures-sink"
770
770
-
version = "0.3.30"
771
771
-
source = "registry+https://github.com/rust-lang/crates.io-index"
772
772
-
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
773
773
-
774
774
-
[[package]]
775
775
-
name = "futures-task"
776
776
-
version = "0.3.30"
777
777
-
source = "registry+https://github.com/rust-lang/crates.io-index"
778
778
-
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
779
779
-
780
780
-
[[package]]
781
781
-
name = "futures-timer"
782
782
-
version = "3.0.3"
783
783
-
source = "registry+https://github.com/rust-lang/crates.io-index"
784
784
-
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
785
785
-
786
786
-
[[package]]
787
787
-
name = "futures-util"
788
788
-
version = "0.3.30"
789
789
-
source = "registry+https://github.com/rust-lang/crates.io-index"
790
790
-
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
791
791
-
dependencies = [
792
792
-
"futures-channel",
793
793
-
"futures-core",
794
794
-
"futures-io",
795
795
-
"futures-macro",
796
796
-
"futures-sink",
797
797
-
"futures-task",
798
798
-
"memchr",
799
799
-
"pin-project-lite",
800
800
-
"pin-utils",
801
801
-
"slab",
802
802
-
]
803
803
-
804
804
-
[[package]]
805
805
-
name = "generic-array"
806
806
-
version = "0.14.7"
807
807
-
source = "registry+https://github.com/rust-lang/crates.io-index"
808
808
-
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
809
809
-
dependencies = [
810
810
-
"typenum",
811
811
-
"version_check",
812
812
-
]
813
813
-
814
814
-
[[package]]
815
815
-
name = "getrandom"
816
816
-
version = "0.2.15"
817
817
-
source = "registry+https://github.com/rust-lang/crates.io-index"
818
818
-
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
819
819
-
dependencies = [
820
820
-
"cfg-if",
821
821
-
"libc",
822
822
-
"wasi",
823
823
-
]
824
824
-
825
825
-
[[package]]
826
826
-
name = "gimli"
827
827
-
version = "0.29.0"
828
828
-
source = "registry+https://github.com/rust-lang/crates.io-index"
829
829
-
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
830
830
-
831
831
-
[[package]]
832
832
-
name = "glob"
833
833
-
version = "0.3.1"
834
834
-
source = "registry+https://github.com/rust-lang/crates.io-index"
835
835
-
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
836
836
-
837
837
-
[[package]]
838
838
-
name = "hashbrown"
839
839
-
version = "0.14.5"
840
840
-
source = "registry+https://github.com/rust-lang/crates.io-index"
841
841
-
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
842
842
-
dependencies = [
843
843
-
"ahash",
844
844
-
"allocator-api2",
845
845
-
]
846
846
-
847
847
-
[[package]]
848
848
-
name = "heck"
849
849
-
version = "0.4.1"
850
850
-
source = "registry+https://github.com/rust-lang/crates.io-index"
851
851
-
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
852
852
-
853
853
-
[[package]]
854
854
-
name = "heck"
855
855
-
version = "0.5.0"
856
856
-
source = "registry+https://github.com/rust-lang/crates.io-index"
857
857
-
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
858
858
-
859
859
-
[[package]]
860
860
-
name = "hermit-abi"
861
861
-
version = "0.3.9"
862
862
-
source = "registry+https://github.com/rust-lang/crates.io-index"
863
863
-
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
864
864
-
865
865
-
[[package]]
866
866
-
name = "hex"
867
867
-
version = "0.4.3"
868
868
-
source = "registry+https://github.com/rust-lang/crates.io-index"
869
869
-
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
870
870
-
871
871
-
[[package]]
872
872
-
name = "hmac"
873
873
-
version = "0.12.1"
874
874
-
source = "registry+https://github.com/rust-lang/crates.io-index"
875
875
-
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
876
876
-
dependencies = [
877
877
-
"digest",
878
878
-
]
879
879
-
880
880
-
[[package]]
881
881
-
name = "hostname"
882
882
-
version = "0.3.1"
883
883
-
source = "registry+https://github.com/rust-lang/crates.io-index"
884
884
-
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
885
885
-
dependencies = [
886
886
-
"libc",
887
887
-
"match_cfg",
888
888
-
"winapi",
889
889
-
]
890
890
-
891
891
-
[[package]]
892
892
-
name = "http_req"
893
893
-
version = "0.11.1"
894
894
-
source = "registry+https://github.com/rust-lang/crates.io-index"
895
895
-
checksum = "0122ab6637149482eb66b57288ac597bc7eb9859cbaa79dee62fa19a350df3d2"
896
896
-
dependencies = [
897
897
-
"native-tls",
898
898
-
"unicase",
899
899
-
]
900
900
-
901
901
-
[[package]]
902
902
-
name = "iana-time-zone"
903
903
-
version = "0.1.60"
904
904
-
source = "registry+https://github.com/rust-lang/crates.io-index"
905
905
-
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
906
906
-
dependencies = [
907
907
-
"android_system_properties",
908
908
-
"core-foundation-sys",
909
909
-
"iana-time-zone-haiku",
910
910
-
"js-sys",
911
911
-
"wasm-bindgen",
912
912
-
"windows-core 0.52.0",
913
913
-
]
914
914
-
915
915
-
[[package]]
916
916
-
name = "iana-time-zone-haiku"
917
917
-
version = "0.1.2"
918
918
-
source = "registry+https://github.com/rust-lang/crates.io-index"
919
919
-
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
920
920
-
dependencies = [
921
921
-
"cc",
922
922
-
]
923
923
-
924
924
-
[[package]]
925
925
-
name = "idna"
926
926
-
version = "0.4.0"
927
927
-
source = "registry+https://github.com/rust-lang/crates.io-index"
928
928
-
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
929
929
-
dependencies = [
930
930
-
"unicode-bidi",
931
931
-
"unicode-normalization",
932
932
-
]
933
933
-
934
934
-
[[package]]
935
935
-
name = "idna"
936
936
-
version = "0.5.0"
937
937
-
source = "registry+https://github.com/rust-lang/crates.io-index"
938
938
-
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
939
939
-
dependencies = [
940
940
-
"unicode-bidi",
941
941
-
"unicode-normalization",
942
942
-
]
943
943
-
944
944
-
[[package]]
945
945
-
name = "indexmap"
946
946
-
version = "2.2.6"
947
947
-
source = "registry+https://github.com/rust-lang/crates.io-index"
948
948
-
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
949
949
-
dependencies = [
950
950
-
"equivalent",
951
951
-
"hashbrown",
952
952
-
]
953
953
-
954
954
-
[[package]]
955
955
-
name = "inout"
956
956
-
version = "0.1.3"
957
957
-
source = "registry+https://github.com/rust-lang/crates.io-index"
958
958
-
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
959
959
-
dependencies = [
960
960
-
"generic-array",
961
961
-
]
962
962
-
963
963
-
[[package]]
964
964
-
name = "insta"
965
965
-
version = "1.39.0"
966
966
-
source = "registry+https://github.com/rust-lang/crates.io-index"
967
967
-
checksum = "810ae6042d48e2c9e9215043563a58a80b877bc863228a74cf10c49d4620a6f5"
968
968
-
dependencies = [
969
969
-
"console",
970
970
-
"lazy_static",
971
971
-
"linked-hash-map",
972
972
-
"similar",
973
973
-
]
974
974
-
975
975
-
[[package]]
976
976
-
name = "ipconfig"
977
977
-
version = "0.3.2"
978
978
-
source = "registry+https://github.com/rust-lang/crates.io-index"
979
979
-
checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
980
980
-
dependencies = [
981
981
-
"socket2",
982
982
-
"widestring",
983
983
-
"windows-sys 0.48.0",
984
984
-
"winreg",
985
985
-
]
986
986
-
987
987
-
[[package]]
988
988
-
name = "ipnet"
989
989
-
version = "2.9.0"
990
990
-
source = "registry+https://github.com/rust-lang/crates.io-index"
991
991
-
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
992
992
-
993
993
-
[[package]]
994
994
-
name = "ipnetwork"
995
995
-
version = "0.20.0"
996
996
-
source = "registry+https://github.com/rust-lang/crates.io-index"
997
997
-
checksum = "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e"
998
998
-
dependencies = [
999
999
-
"serde",
1000
1000
-
]
1001
1001
-
1002
1002
-
[[package]]
1003
1003
-
name = "is_terminal_polyfill"
1004
1004
-
version = "1.70.0"
1005
1005
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1006
1006
-
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
1007
1007
-
1008
1008
-
[[package]]
1009
1009
-
name = "itertools"
1010
1010
-
version = "0.12.1"
1011
1011
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1012
1012
-
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1013
1013
-
dependencies = [
1014
1014
-
"either",
1015
1015
-
]
1016
1016
-
1017
1017
-
[[package]]
1018
1018
-
name = "itertools"
1019
1019
-
version = "0.13.0"
1020
1020
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1021
1021
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1022
1022
-
dependencies = [
1023
1023
-
"either",
1024
1024
-
]
1025
1025
-
1026
1026
-
[[package]]
1027
1027
-
name = "itoa"
1028
1028
-
version = "1.0.11"
1029
1029
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1030
1030
-
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
1031
1031
-
1032
1032
-
[[package]]
1033
1033
-
name = "jobserver"
1034
1034
-
version = "0.1.31"
1035
1035
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1036
1036
-
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
1037
1037
-
dependencies = [
1038
1038
-
"libc",
1039
1039
-
]
1040
1040
-
1041
1041
-
[[package]]
1042
1042
-
name = "js-sys"
1043
1043
-
version = "0.3.69"
1044
1044
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1045
1045
-
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
1046
1046
-
dependencies = [
1047
1047
-
"wasm-bindgen",
1048
1048
-
]
1049
1049
-
1050
1050
-
[[package]]
1051
1051
-
name = "lazy_static"
1052
1052
-
version = "1.5.0"
1053
1053
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1054
1054
-
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1055
1055
-
1056
1056
-
[[package]]
1057
1057
-
name = "libc"
1058
1058
-
version = "0.2.155"
1059
1059
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1060
1060
-
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
1061
1061
-
1062
1062
-
[[package]]
1063
1063
-
name = "linked-hash-map"
1064
1064
-
version = "0.5.6"
1065
1065
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1066
1066
-
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1067
1067
-
1068
1068
-
[[package]]
1069
1069
-
name = "linux-raw-sys"
1070
1070
-
version = "0.4.14"
1071
1071
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1072
1072
-
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
1073
1073
-
1074
1074
-
[[package]]
1075
1075
-
name = "lock_api"
1076
1076
-
version = "0.4.12"
1077
1077
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1078
1078
-
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1079
1079
-
dependencies = [
1080
1080
-
"autocfg",
1081
1081
-
"scopeguard",
1082
1082
-
]
1083
1083
-
1084
1084
-
[[package]]
1085
1085
-
name = "lockfree-object-pool"
1086
1086
-
version = "0.1.6"
1087
1087
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1088
1088
-
checksum = "9374ef4228402d4b7e403e5838cb880d9ee663314b0a900d5a6aabf0c213552e"
1089
1089
-
1090
1090
-
[[package]]
1091
1091
-
name = "log"
1092
1092
-
version = "0.4.22"
1093
1093
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1094
1094
-
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
1095
1095
-
1096
1096
-
[[package]]
1097
1097
-
name = "lru"
1098
1098
-
version = "0.12.3"
1099
1099
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1100
1100
-
checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc"
1101
1101
-
dependencies = [
1102
1102
-
"hashbrown",
1103
1103
-
]
1104
1104
-
1105
1105
-
[[package]]
1106
1106
-
name = "lru-cache"
1107
1107
-
version = "0.1.2"
1108
1108
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1109
1109
-
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
1110
1110
-
dependencies = [
1111
1111
-
"linked-hash-map",
1112
1112
-
]
1113
1113
-
1114
1114
-
[[package]]
1115
1115
-
name = "lzma-rs"
1116
1116
-
version = "0.3.0"
1117
1117
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1118
1118
-
checksum = "297e814c836ae64db86b36cf2a557ba54368d03f6afcd7d947c266692f71115e"
1119
1119
-
dependencies = [
1120
1120
-
"byteorder",
1121
1121
-
"crc",
1122
1122
-
]
1123
1123
-
1124
1124
-
[[package]]
1125
1125
-
name = "match_cfg"
1126
1126
-
version = "0.1.0"
1127
1127
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1128
1128
-
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
1129
1129
-
1130
1130
-
[[package]]
1131
1131
-
name = "memchr"
1132
1132
-
version = "2.7.4"
1133
1133
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1134
1134
-
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1135
1135
-
1136
1136
-
[[package]]
1137
1137
-
name = "miniz_oxide"
1138
1138
-
version = "0.7.4"
1139
1139
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1140
1140
-
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
1141
1141
-
dependencies = [
1142
1142
-
"adler",
1143
1143
-
]
1144
1144
-
1145
1145
-
[[package]]
1146
1146
-
name = "mio"
1147
1147
-
version = "0.8.11"
1148
1148
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1149
1149
-
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1150
1150
-
dependencies = [
1151
1151
-
"libc",
1152
1152
-
"log",
1153
1153
-
"wasi",
1154
1154
-
"windows-sys 0.48.0",
1155
1155
-
]
1156
1156
-
1157
1157
-
[[package]]
1158
1158
-
name = "mio"
1159
1159
-
version = "1.0.1"
1160
1160
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1161
1161
-
checksum = "4569e456d394deccd22ce1c1913e6ea0e54519f577285001215d33557431afe4"
1162
1162
-
dependencies = [
1163
1163
-
"hermit-abi",
1164
1164
-
"libc",
1165
1165
-
"wasi",
1166
1166
-
"windows-sys 0.52.0",
1167
1167
-
]
1168
1168
-
1169
1169
-
[[package]]
1170
1170
-
name = "native-tls"
1171
1171
-
version = "0.2.12"
1172
1172
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1173
1173
-
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
1174
1174
-
dependencies = [
1175
1175
-
"libc",
1176
1176
-
"log",
1177
1177
-
"openssl",
1178
1178
-
"openssl-probe",
1179
1179
-
"openssl-sys",
1180
1180
-
"schannel",
1181
1181
-
"security-framework",
1182
1182
-
"security-framework-sys",
1183
1183
-
"tempfile",
1184
1184
-
]
1185
1185
-
1186
1186
-
[[package]]
1187
1187
-
name = "netstat2"
1188
1188
-
version = "0.9.1"
1189
1189
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1190
1190
-
checksum = "0faa3f4ad230fd2bf2a5dad71476ecbaeaed904b3c7e7e5b1f266c415c03761f"
1191
1191
-
dependencies = [
1192
1192
-
"bitflags 1.3.2",
1193
1193
-
"byteorder",
1194
1194
-
"libc",
1195
1195
-
"num-derive",
1196
1196
-
"num-traits",
1197
1197
-
"thiserror",
1198
1198
-
]
1199
1199
-
1200
1200
-
[[package]]
1201
1201
-
name = "no-std-net"
1202
1202
-
version = "0.6.0"
1203
1203
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1204
1204
-
checksum = "43794a0ace135be66a25d3ae77d41b91615fb68ae937f904090203e81f755b65"
1205
1205
-
1206
1206
-
[[package]]
1207
1207
-
name = "ntapi"
1208
1208
-
version = "0.4.1"
1209
1209
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1210
1210
-
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1211
1211
-
dependencies = [
1212
1212
-
"winapi",
1213
1213
-
]
1214
1214
-
1215
1215
-
[[package]]
1216
1216
-
name = "num-conv"
1217
1217
-
version = "0.1.0"
1218
1218
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1219
1219
-
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1220
1220
-
1221
1221
-
[[package]]
1222
1222
-
name = "num-derive"
1223
1223
-
version = "0.3.3"
1224
1224
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1225
1225
-
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
1226
1226
-
dependencies = [
1227
1227
-
"proc-macro2",
1228
1228
-
"quote",
1229
1229
-
"syn 1.0.109",
1230
1230
-
]
1231
1231
-
1232
1232
-
[[package]]
1233
1233
-
name = "num-traits"
1234
1234
-
version = "0.2.19"
1235
1235
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1236
1236
-
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1237
1237
-
dependencies = [
1238
1238
-
"autocfg",
1239
1239
-
]
1240
1240
-
1241
1241
-
[[package]]
1242
1242
-
name = "num_threads"
1243
1243
-
version = "0.1.7"
1244
1244
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1245
1245
-
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
1246
1246
-
dependencies = [
1247
1247
-
"libc",
1248
1248
-
]
1249
1249
-
1250
1250
-
[[package]]
1251
1251
-
name = "object"
1252
1252
-
version = "0.36.1"
1253
1253
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1254
1254
-
checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce"
1255
1255
-
dependencies = [
1256
1256
-
"memchr",
1257
1257
-
]
1258
1258
-
1259
1259
-
[[package]]
1260
1260
-
name = "once_cell"
1261
1261
-
version = "1.19.0"
1262
1262
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1263
1263
-
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
1264
1264
-
1265
1265
-
[[package]]
1266
1266
-
name = "openssl"
1267
1267
-
version = "0.10.66"
1268
1268
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1269
1269
-
checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1"
1270
1270
-
dependencies = [
1271
1271
-
"bitflags 2.6.0",
1272
1272
-
"cfg-if",
1273
1273
-
"foreign-types",
1274
1274
-
"libc",
1275
1275
-
"once_cell",
1276
1276
-
"openssl-macros",
1277
1277
-
"openssl-sys",
1278
1278
-
]
1279
1279
-
1280
1280
-
[[package]]
1281
1281
-
name = "openssl-macros"
1282
1282
-
version = "0.1.1"
1283
1283
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1284
1284
-
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1285
1285
-
dependencies = [
1286
1286
-
"proc-macro2",
1287
1287
-
"quote",
1288
1288
-
"syn 2.0.68",
1289
1289
-
]
1290
1290
-
1291
1291
-
[[package]]
1292
1292
-
name = "openssl-probe"
1293
1293
-
version = "0.1.5"
1294
1294
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1295
1295
-
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1296
1296
-
1297
1297
-
[[package]]
1298
1298
-
name = "openssl-sys"
1299
1299
-
version = "0.9.103"
1300
1300
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1301
1301
-
checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6"
1302
1302
-
dependencies = [
1303
1303
-
"cc",
1304
1304
-
"libc",
1305
1305
-
"pkg-config",
1306
1306
-
"vcpkg",
1307
1307
-
]
1308
1308
-
1309
1309
-
[[package]]
1310
1310
-
name = "packet-builder"
1311
1311
-
version = "0.7.0"
1312
1312
-
source = "git+https://github.com/cyqsimon/packet_builder.git?branch=patch-update#bf5a89ba75795f5067bb03fa8de00b833ffe4eae"
1313
1313
-
dependencies = [
1314
1314
-
"derive-new",
1315
1315
-
"ipnetwork",
1316
1316
-
"pnet",
1317
1317
-
"pnet_datalink",
1318
1318
-
]
1319
1319
-
1320
1320
-
[[package]]
1321
1321
-
name = "parking_lot"
1322
1322
-
version = "0.12.3"
1323
1323
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1324
1324
-
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1325
1325
-
dependencies = [
1326
1326
-
"lock_api",
1327
1327
-
"parking_lot_core",
1328
1328
-
]
1329
1329
-
1330
1330
-
[[package]]
1331
1331
-
name = "parking_lot_core"
1332
1332
-
version = "0.9.10"
1333
1333
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1334
1334
-
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1335
1335
-
dependencies = [
1336
1336
-
"cfg-if",
1337
1337
-
"libc",
1338
1338
-
"redox_syscall",
1339
1339
-
"smallvec",
1340
1340
-
"windows-targets 0.52.6",
1341
1341
-
]
1342
1342
-
1343
1343
-
[[package]]
1344
1344
-
name = "paste"
1345
1345
-
version = "1.0.15"
1346
1346
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1347
1347
-
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1348
1348
-
1349
1349
-
[[package]]
1350
1350
-
name = "pbkdf2"
1351
1351
-
version = "0.12.2"
1352
1352
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1353
1353
-
checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
1354
1354
-
dependencies = [
1355
1355
-
"digest",
1356
1356
-
"hmac",
1357
1357
-
]
1358
1358
-
1359
1359
-
[[package]]
1360
1360
-
name = "percent-encoding"
1361
1361
-
version = "2.3.1"
1362
1362
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1363
1363
-
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1364
1364
-
1365
1365
-
[[package]]
1366
1366
-
name = "pin-project-lite"
1367
1367
-
version = "0.2.14"
1368
1368
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1369
1369
-
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
1370
1370
-
1371
1371
-
[[package]]
1372
1372
-
name = "pin-utils"
1373
1373
-
version = "0.1.0"
1374
1374
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1375
1375
-
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1376
1376
-
1377
1377
-
[[package]]
1378
1378
-
name = "pkg-config"
1379
1379
-
version = "0.3.30"
1380
1380
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1381
1381
-
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
1382
1382
-
1383
1383
-
[[package]]
1384
1384
-
name = "pnet"
1385
1385
-
version = "0.34.0"
1386
1386
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1387
1387
-
checksum = "130c5b738eeda2dc5796fe2671e49027e6935e817ab51b930a36ec9e6a206a64"
1388
1388
-
dependencies = [
1389
1389
-
"ipnetwork",
1390
1390
-
"pnet_base",
1391
1391
-
"pnet_datalink",
1392
1392
-
"pnet_packet",
1393
1393
-
"pnet_sys",
1394
1394
-
"pnet_transport",
1395
1395
-
]
1396
1396
-
1397
1397
-
[[package]]
1398
1398
-
name = "pnet_base"
1399
1399
-
version = "0.34.0"
1400
1400
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1401
1401
-
checksum = "fe4cf6fb3ab38b68d01ab2aea03ed3d1132b4868fa4e06285f29f16da01c5f4c"
1402
1402
-
dependencies = [
1403
1403
-
"no-std-net",
1404
1404
-
]
1405
1405
-
1406
1406
-
[[package]]
1407
1407
-
name = "pnet_datalink"
1408
1408
-
version = "0.34.0"
1409
1409
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1410
1410
-
checksum = "ad5854abf0067ebbd3967f7d45ebc8976ff577ff0c7bd101c4973ae3c70f98fe"
1411
1411
-
dependencies = [
1412
1412
-
"ipnetwork",
1413
1413
-
"libc",
1414
1414
-
"pnet_base",
1415
1415
-
"pnet_sys",
1416
1416
-
"winapi",
1417
1417
-
]
1418
1418
-
1419
1419
-
[[package]]
1420
1420
-
name = "pnet_macros"
1421
1421
-
version = "0.34.0"
1422
1422
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1423
1423
-
checksum = "688b17499eee04a0408aca0aa5cba5fc86401d7216de8a63fdf7a4c227871804"
1424
1424
-
dependencies = [
1425
1425
-
"proc-macro2",
1426
1426
-
"quote",
1427
1427
-
"regex",
1428
1428
-
"syn 2.0.68",
1429
1429
-
]
1430
1430
-
1431
1431
-
[[package]]
1432
1432
-
name = "pnet_macros_support"
1433
1433
-
version = "0.34.0"
1434
1434
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1435
1435
-
checksum = "eea925b72f4bd37f8eab0f221bbe4c78b63498350c983ffa9dd4bcde7e030f56"
1436
1436
-
dependencies = [
1437
1437
-
"pnet_base",
1438
1438
-
]
1439
1439
-
1440
1440
-
[[package]]
1441
1441
-
name = "pnet_packet"
1442
1442
-
version = "0.34.0"
1443
1443
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1444
1444
-
checksum = "a9a005825396b7fe7a38a8e288dbc342d5034dac80c15212436424fef8ea90ba"
1445
1445
-
dependencies = [
1446
1446
-
"glob",
1447
1447
-
"pnet_base",
1448
1448
-
"pnet_macros",
1449
1449
-
"pnet_macros_support",
1450
1450
-
]
1451
1451
-
1452
1452
-
[[package]]
1453
1453
-
name = "pnet_sys"
1454
1454
-
version = "0.34.0"
1455
1455
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1456
1456
-
checksum = "417c0becd1b573f6d544f73671070b039051e5ad819cc64aa96377b536128d00"
1457
1457
-
dependencies = [
1458
1458
-
"libc",
1459
1459
-
"winapi",
1460
1460
-
]
1461
1461
-
1462
1462
-
[[package]]
1463
1463
-
name = "pnet_transport"
1464
1464
-
version = "0.34.0"
1465
1465
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1466
1466
-
checksum = "2637e14d7de974ee2f74393afccbc8704f3e54e6eb31488715e72481d1662cc3"
1467
1467
-
dependencies = [
1468
1468
-
"libc",
1469
1469
-
"pnet_base",
1470
1470
-
"pnet_packet",
1471
1471
-
"pnet_sys",
1472
1472
-
]
1473
1473
-
1474
1474
-
[[package]]
1475
1475
-
name = "powerfmt"
1476
1476
-
version = "0.2.0"
1477
1477
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1478
1478
-
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1479
1479
-
1480
1480
-
[[package]]
1481
1481
-
name = "ppv-lite86"
1482
1482
-
version = "0.2.17"
1483
1483
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1484
1484
-
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1485
1485
-
1486
1486
-
[[package]]
1487
1487
-
name = "proc-macro-crate"
1488
1488
-
version = "3.1.0"
1489
1489
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1490
1490
-
checksum = "6d37c51ca738a55da99dc0c4a34860fd675453b8b36209178c2249bb13651284"
1491
1491
-
dependencies = [
1492
1492
-
"toml_edit",
1493
1493
-
]
1494
1494
-
1495
1495
-
[[package]]
1496
1496
-
name = "proc-macro2"
1497
1497
-
version = "1.0.86"
1498
1498
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1499
1499
-
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
1500
1500
-
dependencies = [
1501
1501
-
"unicode-ident",
1502
1502
-
]
1503
1503
-
1504
1504
-
[[package]]
1505
1505
-
name = "procfs"
1506
1506
-
version = "0.16.0"
1507
1507
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1508
1508
-
checksum = "731e0d9356b0c25f16f33b5be79b1c57b562f141ebfcdb0ad8ac2c13a24293b4"
1509
1509
-
dependencies = [
1510
1510
-
"bitflags 2.6.0",
1511
1511
-
"chrono",
1512
1512
-
"flate2",
1513
1513
-
"hex",
1514
1514
-
"lazy_static",
1515
1515
-
"procfs-core",
1516
1516
-
"rustix",
1517
1517
-
]
1518
1518
-
1519
1519
-
[[package]]
1520
1520
-
name = "procfs-core"
1521
1521
-
version = "0.16.0"
1522
1522
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1523
1523
-
checksum = "2d3554923a69f4ce04c4a754260c338f505ce22642d3830e049a399fc2059a29"
1524
1524
-
dependencies = [
1525
1525
-
"bitflags 2.6.0",
1526
1526
-
"chrono",
1527
1527
-
"hex",
1528
1528
-
]
1529
1529
-
1530
1530
-
[[package]]
1531
1531
-
name = "quick-error"
1532
1532
-
version = "1.2.3"
1533
1533
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1534
1534
-
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1535
1535
-
1536
1536
-
[[package]]
1537
1537
-
name = "quote"
1538
1538
-
version = "1.0.36"
1539
1539
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1540
1540
-
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
1541
1541
-
dependencies = [
1542
1542
-
"proc-macro2",
1543
1543
-
]
1544
1544
-
1545
1545
-
[[package]]
1546
1546
-
name = "rand"
1547
1547
-
version = "0.8.5"
1548
1548
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1549
1549
-
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1550
1550
-
dependencies = [
1551
1551
-
"libc",
1552
1552
-
"rand_chacha",
1553
1553
-
"rand_core",
1554
1554
-
]
1555
1555
-
1556
1556
-
[[package]]
1557
1557
-
name = "rand_chacha"
1558
1558
-
version = "0.3.1"
1559
1559
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1560
1560
-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1561
1561
-
dependencies = [
1562
1562
-
"ppv-lite86",
1563
1563
-
"rand_core",
1564
1564
-
]
1565
1565
-
1566
1566
-
[[package]]
1567
1567
-
name = "rand_core"
1568
1568
-
version = "0.6.4"
1569
1569
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1570
1570
-
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1571
1571
-
dependencies = [
1572
1572
-
"getrandom",
1573
1573
-
]
1574
1574
-
1575
1575
-
[[package]]
1576
1576
-
name = "ratatui"
1577
1577
-
version = "0.27.0"
1578
1578
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1579
1579
-
checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3"
1580
1580
-
dependencies = [
1581
1581
-
"bitflags 2.6.0",
1582
1582
-
"cassowary",
1583
1583
-
"compact_str",
1584
1584
-
"crossterm",
1585
1585
-
"itertools 0.13.0",
1586
1586
-
"lru",
1587
1587
-
"paste",
1588
1588
-
"stability",
1589
1589
-
"strum",
1590
1590
-
"strum_macros",
1591
1591
-
"unicode-segmentation",
1592
1592
-
"unicode-truncate",
1593
1593
-
"unicode-width",
1594
1594
-
]
1595
1595
-
1596
1596
-
[[package]]
1597
1597
-
name = "rayon"
1598
1598
-
version = "1.10.0"
1599
1599
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1600
1600
-
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1601
1601
-
dependencies = [
1602
1602
-
"either",
1603
1603
-
"rayon-core",
1604
1604
-
]
1605
1605
-
1606
1606
-
[[package]]
1607
1607
-
name = "rayon-core"
1608
1608
-
version = "1.12.1"
1609
1609
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1610
1610
-
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1611
1611
-
dependencies = [
1612
1612
-
"crossbeam-deque",
1613
1613
-
"crossbeam-utils",
1614
1614
-
]
1615
1615
-
1616
1616
-
[[package]]
1617
1617
-
name = "redox_syscall"
1618
1618
-
version = "0.5.2"
1619
1619
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1620
1620
-
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
1621
1621
-
dependencies = [
1622
1622
-
"bitflags 2.6.0",
1623
1623
-
]
1624
1624
-
1625
1625
-
[[package]]
1626
1626
-
name = "regex"
1627
1627
-
version = "1.10.5"
1628
1628
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1629
1629
-
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
1630
1630
-
dependencies = [
1631
1631
-
"aho-corasick",
1632
1632
-
"memchr",
1633
1633
-
"regex-automata",
1634
1634
-
"regex-syntax",
1635
1635
-
]
1636
1636
-
1637
1637
-
[[package]]
1638
1638
-
name = "regex-automata"
1639
1639
-
version = "0.4.7"
1640
1640
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1641
1641
-
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
1642
1642
-
dependencies = [
1643
1643
-
"aho-corasick",
1644
1644
-
"memchr",
1645
1645
-
"regex-syntax",
1646
1646
-
]
1647
1647
-
1648
1648
-
[[package]]
1649
1649
-
name = "regex-syntax"
1650
1650
-
version = "0.8.4"
1651
1651
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1652
1652
-
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
1653
1653
-
1654
1654
-
[[package]]
1655
1655
-
name = "relative-path"
1656
1656
-
version = "1.9.3"
1657
1657
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1658
1658
-
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
1659
1659
-
1660
1660
-
[[package]]
1661
1661
-
name = "resolv-conf"
1662
1662
-
version = "0.7.0"
1663
1663
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1664
1664
-
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
1665
1665
-
dependencies = [
1666
1666
-
"hostname",
1667
1667
-
"quick-error",
1668
1668
-
]
1669
1669
-
1670
1670
-
[[package]]
1671
1671
-
name = "roff"
1672
1672
-
version = "0.2.1"
1673
1673
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1674
1674
-
checksum = "b833d8d034ea094b1ea68aa6d5c740e0d04bad9d16568d08ba6f76823a114316"
1675
1675
-
1676
1676
-
[[package]]
1677
1677
-
name = "rstest"
1678
1678
-
version = "0.21.0"
1679
1679
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1680
1680
-
checksum = "9afd55a67069d6e434a95161415f5beeada95a01c7b815508a82dcb0e1593682"
1681
1681
-
dependencies = [
1682
1682
-
"futures",
1683
1683
-
"futures-timer",
1684
1684
-
"rstest_macros",
1685
1685
-
"rustc_version",
1686
1686
-
]
1687
1687
-
1688
1688
-
[[package]]
1689
1689
-
name = "rstest_macros"
1690
1690
-
version = "0.21.0"
1691
1691
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1692
1692
-
checksum = "4165dfae59a39dd41d8dec720d3cbfbc71f69744efb480a3920f5d4e0cc6798d"
1693
1693
-
dependencies = [
1694
1694
-
"cfg-if",
1695
1695
-
"glob",
1696
1696
-
"proc-macro-crate",
1697
1697
-
"proc-macro2",
1698
1698
-
"quote",
1699
1699
-
"regex",
1700
1700
-
"relative-path",
1701
1701
-
"rustc_version",
1702
1702
-
"syn 2.0.68",
1703
1703
-
"unicode-ident",
1704
1704
-
]
1705
1705
-
1706
1706
-
[[package]]
1707
1707
-
name = "rustc-demangle"
1708
1708
-
version = "0.1.24"
1709
1709
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1710
1710
-
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1711
1711
-
1712
1712
-
[[package]]
1713
1713
-
name = "rustc_version"
1714
1714
-
version = "0.4.0"
1715
1715
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1716
1716
-
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
1717
1717
-
dependencies = [
1718
1718
-
"semver",
1719
1719
-
]
1720
1720
-
1721
1721
-
[[package]]
1722
1722
-
name = "rustix"
1723
1723
-
version = "0.38.34"
1724
1724
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1725
1725
-
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
1726
1726
-
dependencies = [
1727
1727
-
"bitflags 2.6.0",
1728
1728
-
"errno",
1729
1729
-
"libc",
1730
1730
-
"linux-raw-sys",
1731
1731
-
"windows-sys 0.52.0",
1732
1732
-
]
1733
1733
-
1734
1734
-
[[package]]
1735
1735
-
name = "rustversion"
1736
1736
-
version = "1.0.17"
1737
1737
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1738
1738
-
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
1739
1739
-
1740
1740
-
[[package]]
1741
1741
-
name = "ryu"
1742
1742
-
version = "1.0.18"
1743
1743
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1744
1744
-
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1745
1745
-
1746
1746
-
[[package]]
1747
1747
-
name = "schannel"
1748
1748
-
version = "0.1.23"
1749
1749
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1750
1750
-
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
1751
1751
-
dependencies = [
1752
1752
-
"windows-sys 0.52.0",
1753
1753
-
]
1754
1754
-
1755
1755
-
[[package]]
1756
1756
-
name = "scopeguard"
1757
1757
-
version = "1.2.0"
1758
1758
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1759
1759
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1760
1760
-
1761
1761
-
[[package]]
1762
1762
-
name = "security-framework"
1763
1763
-
version = "2.11.0"
1764
1764
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1765
1765
-
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
1766
1766
-
dependencies = [
1767
1767
-
"bitflags 2.6.0",
1768
1768
-
"core-foundation",
1769
1769
-
"core-foundation-sys",
1770
1770
-
"libc",
1771
1771
-
"security-framework-sys",
1772
1772
-
]
1773
1773
-
1774
1774
-
[[package]]
1775
1775
-
name = "security-framework-sys"
1776
1776
-
version = "2.11.0"
1777
1777
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1778
1778
-
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
1779
1779
-
dependencies = [
1780
1780
-
"core-foundation-sys",
1781
1781
-
"libc",
1782
1782
-
]
1783
1783
-
1784
1784
-
[[package]]
1785
1785
-
name = "semver"
1786
1786
-
version = "1.0.23"
1787
1787
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1788
1788
-
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
1789
1789
-
1790
1790
-
[[package]]
1791
1791
-
name = "serde"
1792
1792
-
version = "1.0.203"
1793
1793
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1794
1794
-
checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094"
1795
1795
-
dependencies = [
1796
1796
-
"serde_derive",
1797
1797
-
]
1798
1798
-
1799
1799
-
[[package]]
1800
1800
-
name = "serde_derive"
1801
1801
-
version = "1.0.203"
1802
1802
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1803
1803
-
checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba"
1804
1804
-
dependencies = [
1805
1805
-
"proc-macro2",
1806
1806
-
"quote",
1807
1807
-
"syn 2.0.68",
1808
1808
-
]
1809
1809
-
1810
1810
-
[[package]]
1811
1811
-
name = "sha1"
1812
1812
-
version = "0.10.6"
1813
1813
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1814
1814
-
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1815
1815
-
dependencies = [
1816
1816
-
"cfg-if",
1817
1817
-
"cpufeatures",
1818
1818
-
"digest",
1819
1819
-
]
1820
1820
-
1821
1821
-
[[package]]
1822
1822
-
name = "signal-hook"
1823
1823
-
version = "0.3.17"
1824
1824
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1825
1825
-
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
1826
1826
-
dependencies = [
1827
1827
-
"libc",
1828
1828
-
"signal-hook-registry",
1829
1829
-
]
1830
1830
-
1831
1831
-
[[package]]
1832
1832
-
name = "signal-hook-mio"
1833
1833
-
version = "0.2.4"
1834
1834
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1835
1835
-
checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
1836
1836
-
dependencies = [
1837
1837
-
"libc",
1838
1838
-
"mio 0.8.11",
1839
1839
-
"signal-hook",
1840
1840
-
]
1841
1841
-
1842
1842
-
[[package]]
1843
1843
-
name = "signal-hook-registry"
1844
1844
-
version = "1.4.2"
1845
1845
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1846
1846
-
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1847
1847
-
dependencies = [
1848
1848
-
"libc",
1849
1849
-
]
1850
1850
-
1851
1851
-
[[package]]
1852
1852
-
name = "simd-adler32"
1853
1853
-
version = "0.3.7"
1854
1854
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1855
1855
-
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1856
1856
-
1857
1857
-
[[package]]
1858
1858
-
name = "similar"
1859
1859
-
version = "2.5.0"
1860
1860
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1861
1861
-
checksum = "fa42c91313f1d05da9b26f267f931cf178d4aba455b4c4622dd7355eb80c6640"
1862
1862
-
1863
1863
-
[[package]]
1864
1864
-
name = "simplelog"
1865
1865
-
version = "0.12.2"
1866
1866
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1867
1867
-
checksum = "16257adbfaef1ee58b1363bdc0664c9b8e1e30aed86049635fb5f147d065a9c0"
1868
1868
-
dependencies = [
1869
1869
-
"log",
1870
1870
-
"termcolor",
1871
1871
-
"time",
1872
1872
-
]
1873
1873
-
1874
1874
-
[[package]]
1875
1875
-
name = "slab"
1876
1876
-
version = "0.4.9"
1877
1877
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1878
1878
-
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1879
1879
-
dependencies = [
1880
1880
-
"autocfg",
1881
1881
-
]
1882
1882
-
1883
1883
-
[[package]]
1884
1884
-
name = "smallvec"
1885
1885
-
version = "1.13.2"
1886
1886
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1887
1887
-
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1888
1888
-
1889
1889
-
[[package]]
1890
1890
-
name = "socket2"
1891
1891
-
version = "0.5.7"
1892
1892
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1893
1893
-
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
1894
1894
-
dependencies = [
1895
1895
-
"libc",
1896
1896
-
"windows-sys 0.52.0",
1897
1897
-
]
1898
1898
-
1899
1899
-
[[package]]
1900
1900
-
name = "stability"
1901
1901
-
version = "0.2.0"
1902
1902
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1903
1903
-
checksum = "2ff9eaf853dec4c8802325d8b6d3dffa86cc707fd7a1a4cdbf416e13b061787a"
1904
1904
-
dependencies = [
1905
1905
-
"quote",
1906
1906
-
"syn 2.0.68",
1907
1907
-
]
1908
1908
-
1909
1909
-
[[package]]
1910
1910
-
name = "static_assertions"
1911
1911
-
version = "1.1.0"
1912
1912
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1913
1913
-
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1914
1914
-
1915
1915
-
[[package]]
1916
1916
-
name = "strsim"
1917
1917
-
version = "0.11.1"
1918
1918
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1919
1919
-
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1920
1920
-
1921
1921
-
[[package]]
1922
1922
-
name = "strum"
1923
1923
-
version = "0.26.3"
1924
1924
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1925
1925
-
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
1926
1926
-
dependencies = [
1927
1927
-
"strum_macros",
1928
1928
-
]
1929
1929
-
1930
1930
-
[[package]]
1931
1931
-
name = "strum_macros"
1932
1932
-
version = "0.26.4"
1933
1933
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1934
1934
-
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
1935
1935
-
dependencies = [
1936
1936
-
"heck 0.5.0",
1937
1937
-
"proc-macro2",
1938
1938
-
"quote",
1939
1939
-
"rustversion",
1940
1940
-
"syn 2.0.68",
1941
1941
-
]
1942
1942
-
1943
1943
-
[[package]]
1944
1944
-
name = "subtle"
1945
1945
-
version = "2.6.1"
1946
1946
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1947
1947
-
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1948
1948
-
1949
1949
-
[[package]]
1950
1950
-
name = "syn"
1951
1951
-
version = "1.0.109"
1952
1952
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1953
1953
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1954
1954
-
dependencies = [
1955
1955
-
"proc-macro2",
1956
1956
-
"quote",
1957
1957
-
"unicode-ident",
1958
1958
-
]
1959
1959
-
1960
1960
-
[[package]]
1961
1961
-
name = "syn"
1962
1962
-
version = "2.0.68"
1963
1963
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1964
1964
-
checksum = "901fa70d88b9d6c98022e23b4136f9f3e54e4662c3bc1bd1d84a42a9a0f0c1e9"
1965
1965
-
dependencies = [
1966
1966
-
"proc-macro2",
1967
1967
-
"quote",
1968
1968
-
"unicode-ident",
1969
1969
-
]
1970
1970
-
1971
1971
-
[[package]]
1972
1972
-
name = "sysinfo"
1973
1973
-
version = "0.31.0"
1974
1974
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1975
1975
-
checksum = "29a6b037e3af4ae9a9d6214198e4df53091363b2c96c88fc416a6c1bd92a2799"
1976
1976
-
dependencies = [
1977
1977
-
"bstr",
1978
1978
-
"core-foundation-sys",
1979
1979
-
"libc",
1980
1980
-
"memchr",
1981
1981
-
"ntapi",
1982
1982
-
"rayon",
1983
1983
-
"windows",
1984
1984
-
]
1985
1985
-
1986
1986
-
[[package]]
1987
1987
-
name = "tempfile"
1988
1988
-
version = "3.10.1"
1989
1989
-
source = "registry+https://github.com/rust-lang/crates.io-index"
1990
1990
-
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
1991
1991
-
dependencies = [
1992
1992
-
"cfg-if",
1993
1993
-
"fastrand",
1994
1994
-
"rustix",
1995
1995
-
"windows-sys 0.52.0",
1996
1996
-
]
1997
1997
-
1998
1998
-
[[package]]
1999
1999
-
name = "termcolor"
2000
2000
-
version = "1.4.1"
2001
2001
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2002
2002
-
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
2003
2003
-
dependencies = [
2004
2004
-
"winapi-util",
2005
2005
-
]
2006
2006
-
2007
2007
-
[[package]]
2008
2008
-
name = "thiserror"
2009
2009
-
version = "1.0.63"
2010
2010
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2011
2011
-
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
2012
2012
-
dependencies = [
2013
2013
-
"thiserror-impl",
2014
2014
-
]
2015
2015
-
2016
2016
-
[[package]]
2017
2017
-
name = "thiserror-impl"
2018
2018
-
version = "1.0.63"
2019
2019
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2020
2020
-
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
2021
2021
-
dependencies = [
2022
2022
-
"proc-macro2",
2023
2023
-
"quote",
2024
2024
-
"syn 2.0.68",
2025
2025
-
]
2026
2026
-
2027
2027
-
[[package]]
2028
2028
-
name = "time"
2029
2029
-
version = "0.3.36"
2030
2030
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2031
2031
-
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2032
2032
-
dependencies = [
2033
2033
-
"deranged",
2034
2034
-
"itoa",
2035
2035
-
"libc",
2036
2036
-
"num-conv",
2037
2037
-
"num_threads",
2038
2038
-
"powerfmt",
2039
2039
-
"serde",
2040
2040
-
"time-core",
2041
2041
-
"time-macros",
2042
2042
-
]
2043
2043
-
2044
2044
-
[[package]]
2045
2045
-
name = "time-core"
2046
2046
-
version = "0.1.2"
2047
2047
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2048
2048
-
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2049
2049
-
2050
2050
-
[[package]]
2051
2051
-
name = "time-macros"
2052
2052
-
version = "0.2.18"
2053
2053
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2054
2054
-
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2055
2055
-
dependencies = [
2056
2056
-
"num-conv",
2057
2057
-
"time-core",
2058
2058
-
]
2059
2059
-
2060
2060
-
[[package]]
2061
2061
-
name = "tinyvec"
2062
2062
-
version = "1.6.1"
2063
2063
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2064
2064
-
checksum = "c55115c6fbe2d2bef26eb09ad74bde02d8255476fc0c7b515ef09fbb35742d82"
2065
2065
-
dependencies = [
2066
2066
-
"tinyvec_macros",
2067
2067
-
]
2068
2068
-
2069
2069
-
[[package]]
2070
2070
-
name = "tinyvec_macros"
2071
2071
-
version = "0.1.1"
2072
2072
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2073
2073
-
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2074
2074
-
2075
2075
-
[[package]]
2076
2076
-
name = "tokio"
2077
2077
-
version = "1.39.2"
2078
2078
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2079
2079
-
checksum = "daa4fb1bc778bd6f04cbfc4bb2d06a7396a8f299dc33ea1900cedaa316f467b1"
2080
2080
-
dependencies = [
2081
2081
-
"backtrace",
2082
2082
-
"bytes",
2083
2083
-
"libc",
2084
2084
-
"mio 1.0.1",
2085
2085
-
"pin-project-lite",
2086
2086
-
"socket2",
2087
2087
-
"windows-sys 0.52.0",
2088
2088
-
]
2089
2089
-
2090
2090
-
[[package]]
2091
2091
-
name = "toml_datetime"
2092
2092
-
version = "0.6.6"
2093
2093
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2094
2094
-
checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
2095
2095
-
2096
2096
-
[[package]]
2097
2097
-
name = "toml_edit"
2098
2098
-
version = "0.21.1"
2099
2099
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2100
2100
-
checksum = "6a8534fd7f78b5405e860340ad6575217ce99f38d4d5c8f2442cb5ecb50090e1"
2101
2101
-
dependencies = [
2102
2102
-
"indexmap",
2103
2103
-
"toml_datetime",
2104
2104
-
"winnow",
2105
2105
-
]
2106
2106
-
2107
2107
-
[[package]]
2108
2108
-
name = "tracing"
2109
2109
-
version = "0.1.40"
2110
2110
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2111
2111
-
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
2112
2112
-
dependencies = [
2113
2113
-
"pin-project-lite",
2114
2114
-
"tracing-attributes",
2115
2115
-
"tracing-core",
2116
2116
-
]
2117
2117
-
2118
2118
-
[[package]]
2119
2119
-
name = "tracing-attributes"
2120
2120
-
version = "0.1.27"
2121
2121
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2122
2122
-
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
2123
2123
-
dependencies = [
2124
2124
-
"proc-macro2",
2125
2125
-
"quote",
2126
2126
-
"syn 2.0.68",
2127
2127
-
]
2128
2128
-
2129
2129
-
[[package]]
2130
2130
-
name = "tracing-core"
2131
2131
-
version = "0.1.32"
2132
2132
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2133
2133
-
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
2134
2134
-
dependencies = [
2135
2135
-
"once_cell",
2136
2136
-
]
2137
2137
-
2138
2138
-
[[package]]
2139
2139
-
name = "trust-dns-proto"
2140
2140
-
version = "0.23.2"
2141
2141
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2142
2142
-
checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374"
2143
2143
-
dependencies = [
2144
2144
-
"async-trait",
2145
2145
-
"cfg-if",
2146
2146
-
"data-encoding",
2147
2147
-
"enum-as-inner",
2148
2148
-
"futures-channel",
2149
2149
-
"futures-io",
2150
2150
-
"futures-util",
2151
2151
-
"idna 0.4.0",
2152
2152
-
"ipnet",
2153
2153
-
"once_cell",
2154
2154
-
"rand",
2155
2155
-
"smallvec",
2156
2156
-
"thiserror",
2157
2157
-
"tinyvec",
2158
2158
-
"tokio",
2159
2159
-
"tracing",
2160
2160
-
"url",
2161
2161
-
]
2162
2162
-
2163
2163
-
[[package]]
2164
2164
-
name = "trust-dns-resolver"
2165
2165
-
version = "0.23.2"
2166
2166
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2167
2167
-
checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6"
2168
2168
-
dependencies = [
2169
2169
-
"cfg-if",
2170
2170
-
"futures-util",
2171
2171
-
"ipconfig",
2172
2172
-
"lru-cache",
2173
2173
-
"once_cell",
2174
2174
-
"parking_lot",
2175
2175
-
"rand",
2176
2176
-
"resolv-conf",
2177
2177
-
"smallvec",
2178
2178
-
"thiserror",
2179
2179
-
"tokio",
2180
2180
-
"tracing",
2181
2181
-
"trust-dns-proto",
2182
2182
-
]
2183
2183
-
2184
2184
-
[[package]]
2185
2185
-
name = "typenum"
2186
2186
-
version = "1.17.0"
2187
2187
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2188
2188
-
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2189
2189
-
2190
2190
-
[[package]]
2191
2191
-
name = "unicase"
2192
2192
-
version = "2.7.0"
2193
2193
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2194
2194
-
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
2195
2195
-
dependencies = [
2196
2196
-
"version_check",
2197
2197
-
]
2198
2198
-
2199
2199
-
[[package]]
2200
2200
-
name = "unicode-bidi"
2201
2201
-
version = "0.3.15"
2202
2202
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2203
2203
-
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2204
2204
-
2205
2205
-
[[package]]
2206
2206
-
name = "unicode-ident"
2207
2207
-
version = "1.0.12"
2208
2208
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2209
2209
-
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2210
2210
-
2211
2211
-
[[package]]
2212
2212
-
name = "unicode-normalization"
2213
2213
-
version = "0.1.23"
2214
2214
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2215
2215
-
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
2216
2216
-
dependencies = [
2217
2217
-
"tinyvec",
2218
2218
-
]
2219
2219
-
2220
2220
-
[[package]]
2221
2221
-
name = "unicode-segmentation"
2222
2222
-
version = "1.11.0"
2223
2223
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2224
2224
-
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
2225
2225
-
2226
2226
-
[[package]]
2227
2227
-
name = "unicode-truncate"
2228
2228
-
version = "1.0.0"
2229
2229
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2230
2230
-
checksum = "5a5fbabedabe362c618c714dbefda9927b5afc8e2a8102f47f081089a9019226"
2231
2231
-
dependencies = [
2232
2232
-
"itertools 0.12.1",
2233
2233
-
"unicode-width",
2234
2234
-
]
2235
2235
-
2236
2236
-
[[package]]
2237
2237
-
name = "unicode-width"
2238
2238
-
version = "0.1.13"
2239
2239
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2240
2240
-
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
2241
2241
-
2242
2242
-
[[package]]
2243
2243
-
name = "url"
2244
2244
-
version = "2.5.2"
2245
2245
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2246
2246
-
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
2247
2247
-
dependencies = [
2248
2248
-
"form_urlencoded",
2249
2249
-
"idna 0.5.0",
2250
2250
-
"percent-encoding",
2251
2251
-
]
2252
2252
-
2253
2253
-
[[package]]
2254
2254
-
name = "utf8parse"
2255
2255
-
version = "0.2.2"
2256
2256
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2257
2257
-
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2258
2258
-
2259
2259
-
[[package]]
2260
2260
-
name = "vcpkg"
2261
2261
-
version = "0.2.15"
2262
2262
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2263
2263
-
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2264
2264
-
2265
2265
-
[[package]]
2266
2266
-
name = "version_check"
2267
2267
-
version = "0.9.4"
2268
2268
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2269
2269
-
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2270
2270
-
2271
2271
-
[[package]]
2272
2272
-
name = "wasi"
2273
2273
-
version = "0.11.0+wasi-snapshot-preview1"
2274
2274
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2275
2275
-
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2276
2276
-
2277
2277
-
[[package]]
2278
2278
-
name = "wasm-bindgen"
2279
2279
-
version = "0.2.92"
2280
2280
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2281
2281
-
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
2282
2282
-
dependencies = [
2283
2283
-
"cfg-if",
2284
2284
-
"wasm-bindgen-macro",
2285
2285
-
]
2286
2286
-
2287
2287
-
[[package]]
2288
2288
-
name = "wasm-bindgen-backend"
2289
2289
-
version = "0.2.92"
2290
2290
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2291
2291
-
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
2292
2292
-
dependencies = [
2293
2293
-
"bumpalo",
2294
2294
-
"log",
2295
2295
-
"once_cell",
2296
2296
-
"proc-macro2",
2297
2297
-
"quote",
2298
2298
-
"syn 2.0.68",
2299
2299
-
"wasm-bindgen-shared",
2300
2300
-
]
2301
2301
-
2302
2302
-
[[package]]
2303
2303
-
name = "wasm-bindgen-macro"
2304
2304
-
version = "0.2.92"
2305
2305
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2306
2306
-
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
2307
2307
-
dependencies = [
2308
2308
-
"quote",
2309
2309
-
"wasm-bindgen-macro-support",
2310
2310
-
]
2311
2311
-
2312
2312
-
[[package]]
2313
2313
-
name = "wasm-bindgen-macro-support"
2314
2314
-
version = "0.2.92"
2315
2315
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2316
2316
-
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
2317
2317
-
dependencies = [
2318
2318
-
"proc-macro2",
2319
2319
-
"quote",
2320
2320
-
"syn 2.0.68",
2321
2321
-
"wasm-bindgen-backend",
2322
2322
-
"wasm-bindgen-shared",
2323
2323
-
]
2324
2324
-
2325
2325
-
[[package]]
2326
2326
-
name = "wasm-bindgen-shared"
2327
2327
-
version = "0.2.92"
2328
2328
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2329
2329
-
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2330
2330
-
2331
2331
-
[[package]]
2332
2332
-
name = "widestring"
2333
2333
-
version = "1.1.0"
2334
2334
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2335
2335
-
checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311"
2336
2336
-
2337
2337
-
[[package]]
2338
2338
-
name = "winapi"
2339
2339
-
version = "0.3.9"
2340
2340
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2341
2341
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2342
2342
-
dependencies = [
2343
2343
-
"winapi-i686-pc-windows-gnu",
2344
2344
-
"winapi-x86_64-pc-windows-gnu",
2345
2345
-
]
2346
2346
-
2347
2347
-
[[package]]
2348
2348
-
name = "winapi-i686-pc-windows-gnu"
2349
2349
-
version = "0.4.0"
2350
2350
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2351
2351
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2352
2352
-
2353
2353
-
[[package]]
2354
2354
-
name = "winapi-util"
2355
2355
-
version = "0.1.8"
2356
2356
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2357
2357
-
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
2358
2358
-
dependencies = [
2359
2359
-
"windows-sys 0.52.0",
2360
2360
-
]
2361
2361
-
2362
2362
-
[[package]]
2363
2363
-
name = "winapi-x86_64-pc-windows-gnu"
2364
2364
-
version = "0.4.0"
2365
2365
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2366
2366
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2367
2367
-
2368
2368
-
[[package]]
2369
2369
-
name = "windows"
2370
2370
-
version = "0.57.0"
2371
2371
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2372
2372
-
checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
2373
2373
-
dependencies = [
2374
2374
-
"windows-core 0.57.0",
2375
2375
-
"windows-targets 0.52.6",
2376
2376
-
]
2377
2377
-
2378
2378
-
[[package]]
2379
2379
-
name = "windows-core"
2380
2380
-
version = "0.52.0"
2381
2381
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2382
2382
-
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2383
2383
-
dependencies = [
2384
2384
-
"windows-targets 0.52.6",
2385
2385
-
]
2386
2386
-
2387
2387
-
[[package]]
2388
2388
-
name = "windows-core"
2389
2389
-
version = "0.57.0"
2390
2390
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2391
2391
-
checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
2392
2392
-
dependencies = [
2393
2393
-
"windows-implement",
2394
2394
-
"windows-interface",
2395
2395
-
"windows-result",
2396
2396
-
"windows-targets 0.52.6",
2397
2397
-
]
2398
2398
-
2399
2399
-
[[package]]
2400
2400
-
name = "windows-implement"
2401
2401
-
version = "0.57.0"
2402
2402
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2403
2403
-
checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
2404
2404
-
dependencies = [
2405
2405
-
"proc-macro2",
2406
2406
-
"quote",
2407
2407
-
"syn 2.0.68",
2408
2408
-
]
2409
2409
-
2410
2410
-
[[package]]
2411
2411
-
name = "windows-interface"
2412
2412
-
version = "0.57.0"
2413
2413
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2414
2414
-
checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
2415
2415
-
dependencies = [
2416
2416
-
"proc-macro2",
2417
2417
-
"quote",
2418
2418
-
"syn 2.0.68",
2419
2419
-
]
2420
2420
-
2421
2421
-
[[package]]
2422
2422
-
name = "windows-result"
2423
2423
-
version = "0.1.2"
2424
2424
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2425
2425
-
checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
2426
2426
-
dependencies = [
2427
2427
-
"windows-targets 0.52.6",
2428
2428
-
]
2429
2429
-
2430
2430
-
[[package]]
2431
2431
-
name = "windows-sys"
2432
2432
-
version = "0.48.0"
2433
2433
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2434
2434
-
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2435
2435
-
dependencies = [
2436
2436
-
"windows-targets 0.48.5",
2437
2437
-
]
2438
2438
-
2439
2439
-
[[package]]
2440
2440
-
name = "windows-sys"
2441
2441
-
version = "0.52.0"
2442
2442
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2443
2443
-
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2444
2444
-
dependencies = [
2445
2445
-
"windows-targets 0.52.6",
2446
2446
-
]
2447
2447
-
2448
2448
-
[[package]]
2449
2449
-
name = "windows-targets"
2450
2450
-
version = "0.48.5"
2451
2451
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2452
2452
-
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2453
2453
-
dependencies = [
2454
2454
-
"windows_aarch64_gnullvm 0.48.5",
2455
2455
-
"windows_aarch64_msvc 0.48.5",
2456
2456
-
"windows_i686_gnu 0.48.5",
2457
2457
-
"windows_i686_msvc 0.48.5",
2458
2458
-
"windows_x86_64_gnu 0.48.5",
2459
2459
-
"windows_x86_64_gnullvm 0.48.5",
2460
2460
-
"windows_x86_64_msvc 0.48.5",
2461
2461
-
]
2462
2462
-
2463
2463
-
[[package]]
2464
2464
-
name = "windows-targets"
2465
2465
-
version = "0.52.6"
2466
2466
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2467
2467
-
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2468
2468
-
dependencies = [
2469
2469
-
"windows_aarch64_gnullvm 0.52.6",
2470
2470
-
"windows_aarch64_msvc 0.52.6",
2471
2471
-
"windows_i686_gnu 0.52.6",
2472
2472
-
"windows_i686_gnullvm",
2473
2473
-
"windows_i686_msvc 0.52.6",
2474
2474
-
"windows_x86_64_gnu 0.52.6",
2475
2475
-
"windows_x86_64_gnullvm 0.52.6",
2476
2476
-
"windows_x86_64_msvc 0.52.6",
2477
2477
-
]
2478
2478
-
2479
2479
-
[[package]]
2480
2480
-
name = "windows_aarch64_gnullvm"
2481
2481
-
version = "0.48.5"
2482
2482
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2483
2483
-
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2484
2484
-
2485
2485
-
[[package]]
2486
2486
-
name = "windows_aarch64_gnullvm"
2487
2487
-
version = "0.52.6"
2488
2488
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2489
2489
-
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2490
2490
-
2491
2491
-
[[package]]
2492
2492
-
name = "windows_aarch64_msvc"
2493
2493
-
version = "0.48.5"
2494
2494
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2495
2495
-
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2496
2496
-
2497
2497
-
[[package]]
2498
2498
-
name = "windows_aarch64_msvc"
2499
2499
-
version = "0.52.6"
2500
2500
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2501
2501
-
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2502
2502
-
2503
2503
-
[[package]]
2504
2504
-
name = "windows_i686_gnu"
2505
2505
-
version = "0.48.5"
2506
2506
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2507
2507
-
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2508
2508
-
2509
2509
-
[[package]]
2510
2510
-
name = "windows_i686_gnu"
2511
2511
-
version = "0.52.6"
2512
2512
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2513
2513
-
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2514
2514
-
2515
2515
-
[[package]]
2516
2516
-
name = "windows_i686_gnullvm"
2517
2517
-
version = "0.52.6"
2518
2518
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2519
2519
-
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2520
2520
-
2521
2521
-
[[package]]
2522
2522
-
name = "windows_i686_msvc"
2523
2523
-
version = "0.48.5"
2524
2524
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2525
2525
-
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2526
2526
-
2527
2527
-
[[package]]
2528
2528
-
name = "windows_i686_msvc"
2529
2529
-
version = "0.52.6"
2530
2530
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2531
2531
-
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2532
2532
-
2533
2533
-
[[package]]
2534
2534
-
name = "windows_x86_64_gnu"
2535
2535
-
version = "0.48.5"
2536
2536
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2537
2537
-
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2538
2538
-
2539
2539
-
[[package]]
2540
2540
-
name = "windows_x86_64_gnu"
2541
2541
-
version = "0.52.6"
2542
2542
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2543
2543
-
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2544
2544
-
2545
2545
-
[[package]]
2546
2546
-
name = "windows_x86_64_gnullvm"
2547
2547
-
version = "0.48.5"
2548
2548
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2549
2549
-
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2550
2550
-
2551
2551
-
[[package]]
2552
2552
-
name = "windows_x86_64_gnullvm"
2553
2553
-
version = "0.52.6"
2554
2554
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2555
2555
-
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2556
2556
-
2557
2557
-
[[package]]
2558
2558
-
name = "windows_x86_64_msvc"
2559
2559
-
version = "0.48.5"
2560
2560
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2561
2561
-
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2562
2562
-
2563
2563
-
[[package]]
2564
2564
-
name = "windows_x86_64_msvc"
2565
2565
-
version = "0.52.6"
2566
2566
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2567
2567
-
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2568
2568
-
2569
2569
-
[[package]]
2570
2570
-
name = "winnow"
2571
2571
-
version = "0.5.40"
2572
2572
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2573
2573
-
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
2574
2574
-
dependencies = [
2575
2575
-
"memchr",
2576
2576
-
]
2577
2577
-
2578
2578
-
[[package]]
2579
2579
-
name = "winreg"
2580
2580
-
version = "0.50.0"
2581
2581
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2582
2582
-
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2583
2583
-
dependencies = [
2584
2584
-
"cfg-if",
2585
2585
-
"windows-sys 0.48.0",
2586
2586
-
]
2587
2587
-
2588
2588
-
[[package]]
2589
2589
-
name = "zerocopy"
2590
2590
-
version = "0.7.35"
2591
2591
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2592
2592
-
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2593
2593
-
dependencies = [
2594
2594
-
"zerocopy-derive",
2595
2595
-
]
2596
2596
-
2597
2597
-
[[package]]
2598
2598
-
name = "zerocopy-derive"
2599
2599
-
version = "0.7.35"
2600
2600
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2601
2601
-
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2602
2602
-
dependencies = [
2603
2603
-
"proc-macro2",
2604
2604
-
"quote",
2605
2605
-
"syn 2.0.68",
2606
2606
-
]
2607
2607
-
2608
2608
-
[[package]]
2609
2609
-
name = "zeroize"
2610
2610
-
version = "1.8.1"
2611
2611
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2612
2612
-
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2613
2613
-
dependencies = [
2614
2614
-
"zeroize_derive",
2615
2615
-
]
2616
2616
-
2617
2617
-
[[package]]
2618
2618
-
name = "zeroize_derive"
2619
2619
-
version = "1.4.2"
2620
2620
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2621
2621
-
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
2622
2622
-
dependencies = [
2623
2623
-
"proc-macro2",
2624
2624
-
"quote",
2625
2625
-
"syn 2.0.68",
2626
2626
-
]
2627
2627
-
2628
2628
-
[[package]]
2629
2629
-
name = "zip"
2630
2630
-
version = "2.1.6"
2631
2631
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2632
2632
-
checksum = "40dd8c92efc296286ce1fbd16657c5dbefff44f1b4ca01cc5f517d8b7b3d3e2e"
2633
2633
-
dependencies = [
2634
2634
-
"aes",
2635
2635
-
"arbitrary",
2636
2636
-
"bzip2",
2637
2637
-
"constant_time_eq",
2638
2638
-
"crc32fast",
2639
2639
-
"crossbeam-utils",
2640
2640
-
"deflate64",
2641
2641
-
"displaydoc",
2642
2642
-
"flate2",
2643
2643
-
"hmac",
2644
2644
-
"indexmap",
2645
2645
-
"lzma-rs",
2646
2646
-
"memchr",
2647
2647
-
"pbkdf2",
2648
2648
-
"rand",
2649
2649
-
"sha1",
2650
2650
-
"thiserror",
2651
2651
-
"time",
2652
2652
-
"zeroize",
2653
2653
-
"zopfli",
2654
2654
-
"zstd",
2655
2655
-
]
2656
2656
-
2657
2657
-
[[package]]
2658
2658
-
name = "zopfli"
2659
2659
-
version = "0.8.1"
2660
2660
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2661
2661
-
checksum = "e5019f391bac5cf252e93bbcc53d039ffd62c7bfb7c150414d61369afe57e946"
2662
2662
-
dependencies = [
2663
2663
-
"bumpalo",
2664
2664
-
"crc32fast",
2665
2665
-
"lockfree-object-pool",
2666
2666
-
"log",
2667
2667
-
"once_cell",
2668
2668
-
"simd-adler32",
2669
2669
-
]
2670
2670
-
2671
2671
-
[[package]]
2672
2672
-
name = "zstd"
2673
2673
-
version = "0.13.1"
2674
2674
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2675
2675
-
checksum = "2d789b1514203a1120ad2429eae43a7bd32b90976a7bb8a05f7ec02fa88cc23a"
2676
2676
-
dependencies = [
2677
2677
-
"zstd-safe",
2678
2678
-
]
2679
2679
-
2680
2680
-
[[package]]
2681
2681
-
name = "zstd-safe"
2682
2682
-
version = "7.1.0"
2683
2683
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2684
2684
-
checksum = "1cd99b45c6bc03a018c8b8a86025678c87e55526064e38f9df301989dce7ec0a"
2685
2685
-
dependencies = [
2686
2686
-
"zstd-sys",
2687
2687
-
]
2688
2688
-
2689
2689
-
[[package]]
2690
2690
-
name = "zstd-sys"
2691
2691
-
version = "2.0.11+zstd.1.5.6"
2692
2692
-
source = "registry+https://github.com/rust-lang/crates.io-index"
2693
2693
-
checksum = "75652c55c0b6f3e6f12eb786fe1bc960396bf05a1eb3bf1f3691c3610ac2e6d4"
2694
2694
-
dependencies = [
2695
2695
-
"cc",
2696
2696
-
"pkg-config",
2697
2697
-
]
+11
-23
pkgs/tools/networking/bandwhich/default.nix
pkgs/by-name/ba/bandwhich/package.nix
···
3
3
stdenv,
4
4
fetchFromGitHub,
5
5
rustPlatform,
6
6
-
Security,
7
6
installShellFiles,
7
7
+
8
8
+
darwin,
8
9
}:
9
10
10
11
rustPlatform.buildRustPackage rec {
11
12
pname = "bandwhich";
12
12
-
version = "0.23.0";
13
13
+
version = "0.23.1";
13
14
14
15
src = fetchFromGitHub {
15
16
owner = "imsnif";
16
17
repo = pname;
17
18
rev = "v${version}";
18
18
-
hash = "sha256-8PUtlhy8rsQw3TqgpxWiVettGhncHetWCZcrDXjsR5M=";
19
19
+
hash = "sha256-gXPX5drVXsfkssPMdhqIpFsYNSbelE9mKwO+nGEy4Qs=";
19
20
};
20
21
21
21
-
cargoLock = {
22
22
-
lockFile = ./Cargo.lock;
23
23
-
outputHashes = {
24
24
-
"packet-builder-0.7.0" = "sha256-KxNrnLZ/z3JJ3E1pCTJF9tNXI7XYNRc6ooTUz3avpjw=";
25
25
-
};
26
26
-
};
27
27
-
28
28
-
checkFlags = [
29
29
-
# failing in upstream CI
30
30
-
"--skip=tests::cases::ui::layout_under_50_width_under_50_height"
31
31
-
];
22
22
+
useFetchCargoVendor = true;
23
23
+
cargoHash = "sha256-bsyEEbwBTDcIOc+PRkZqcfqcDgQnchuVy8a8eSZZUHU=";
32
24
33
25
nativeBuildInputs = [ installShellFiles ];
34
26
35
35
-
buildInputs = lib.optional stdenv.hostPlatform.isDarwin Security;
27
27
+
buildInputs = lib.optional stdenv.hostPlatform.isDarwin darwin.apple_sdk.frameworks.Security;
36
28
37
29
# 10 passed; 47 failed https://hydra.nixos.org/build/148943783/nixlog/1
38
30
doCheck = !stdenv.hostPlatform.isDarwin;
39
39
-
40
40
-
postPatch = ''
41
41
-
ln --force -s ${./Cargo.lock} Cargo.lock
42
42
-
'';
43
31
44
32
preConfigure = ''
45
33
export BANDWHICH_GEN_DIR=_shell-files
···
53
41
--zsh $BANDWHICH_GEN_DIR/_bandwhich
54
42
'';
55
43
56
56
-
meta = with lib; {
44
44
+
meta = {
57
45
description = "CLI utility for displaying current network utilization";
58
46
longDescription = ''
59
47
bandwhich sniffs a given network interface and records IP packet size, cross
···
64
52
'';
65
53
homepage = "https://github.com/imsnif/bandwhich";
66
54
changelog = "https://github.com/imsnif/bandwhich/blob/${src.rev}/CHANGELOG.md";
67
67
-
license = licenses.mit;
68
68
-
maintainers = with maintainers; [
55
55
+
license = lib.licenses.mit;
56
56
+
maintainers = with lib.maintainers; [
69
57
Br1ght0ne
70
58
figsoda
71
59
];
72
72
-
platforms = platforms.unix;
60
60
+
platforms = lib.platforms.unix;
73
61
mainProgram = "bandwhich";
74
62
};
75
63
}
-4
pkgs/top-level/all-packages.nix
···
1993
1993
libssl = openssl;
1994
1994
};
1995
1995
1996
1996
-
bandwhich = callPackage ../tools/networking/bandwhich {
1997
1997
-
inherit (darwin.apple_sdk.frameworks) Security;
1998
1998
-
};
1999
1999
-
2000
1996
base16-builder = callPackage ../misc/base16-builder { };
2001
1997
2002
1998
babelfish = callPackage ../shells/fish/babelfish.nix { };
+1
pkgs/top-level/coq-packages.nix
···
150
150
ssprove = callPackage ../development/coq-modules/ssprove {};
151
151
stalmarck-tactic = callPackage ../development/coq-modules/stalmarck {};
152
152
stalmarck = self.stalmarck-tactic.stalmarck;
153
153
+
stdlib = callPackage ../development/coq-modules/stdlib {};
153
154
stdpp = callPackage ../development/coq-modules/stdpp { };
154
155
StructTact = callPackage ../development/coq-modules/StructTact {};
155
156
tlc = callPackage ../development/coq-modules/tlc {};