lol

Merge pull request #246564 from erictapen/kanidm

kanidm: 1.1.0-alpha.12 -> 1.1.0-beta.13

authored by

Martin Weinelt and committed by
GitHub
a98ba7fd c039ee5a

+29 -5457
+14 -3
nixos/modules/services/security/kanidm.nix
··· 122 122 }; 123 123 log_level = lib.mkOption { 124 124 description = lib.mdDoc "Log level of the server."; 125 - default = "default"; 126 - type = lib.types.enum [ "default" "verbose" "perfbasic" "perffull" ]; 125 + default = "info"; 126 + type = lib.types.enum [ "info" "debug" "trace" ]; 127 127 }; 128 128 role = lib.mkOption { 129 129 description = lib.mdDoc "The role of this server. This affects the replication relationship and thereby available features."; ··· 236 236 { 237 237 StateDirectory = "kanidm"; 238 238 StateDirectoryMode = "0700"; 239 + RuntimeDirectory = "kanidmd"; 239 240 ExecStart = "${pkgs.kanidm}/bin/kanidmd server -c ${serverConfigFile}"; 240 241 User = "kanidm"; 241 242 Group = "kanidm"; 242 243 244 + BindPaths = [ 245 + # To create the socket 246 + "/run/kanidmd:/run/kanidmd" 247 + ]; 248 + 243 249 AmbientCapabilities = [ "CAP_NET_BIND_SERVICE" ]; 244 250 CapabilityBoundingSet = [ "CAP_NET_BIND_SERVICE" ]; 245 251 # This would otherwise override the CAP_NET_BIND_SERVICE capability. 246 252 PrivateUsers = lib.mkForce false; 247 253 # Port needs to be exposed to the host network 248 254 PrivateNetwork = lib.mkForce false; 249 - RestrictAddressFamilies = [ "AF_INET" "AF_INET6" ]; 255 + RestrictAddressFamilies = [ "AF_INET" "AF_INET6" "AF_UNIX" ]; 250 256 TemporaryFileSystem = "/:ro"; 251 257 } 252 258 ]; ··· 273 279 "-/etc/static/kanidm" 274 280 "-/etc/ssl" 275 281 "-/etc/static/ssl" 282 + "-/etc/passwd" 283 + "-/etc/group" 276 284 ]; 277 285 BindPaths = [ 278 286 # To create the socket ··· 327 335 328 336 # These paths are hardcoded 329 337 environment.etc = lib.mkMerge [ 338 + (lib.mkIf cfg.enableServer { 339 + "kanidm/server.toml".source = serverConfigFile; 340 + }) 330 341 (lib.mkIf options.services.kanidm.clientSettings.isDefined { 331 342 "kanidm/config".source = clientConfigFile; 332 343 })
+3 -6
nixos/tests/kanidm.nix
··· 67 67 '' 68 68 start_all() 69 69 server.wait_for_unit("kanidm.service") 70 + client.wait_for_unit("network-online.target") 70 71 71 72 with subtest("Test HTTP interface"): 72 - server.wait_until_succeeds("curl -sf https://${serverDomain} | grep Kanidm") 73 + server.wait_until_succeeds("curl -Lsf https://${serverDomain} | grep Kanidm") 73 74 74 75 with subtest("Test LDAP interface"): 75 76 server.succeed("ldapsearch -H ldaps://${serverDomain}:636 -b '${ldapBaseDN}' -x '(name=test)'") ··· 80 81 client.succeed("kanidm logout") 81 82 82 83 with subtest("Recover idm_admin account"): 83 - # Must stop the server for account recovery or else kanidmd fails with 84 - # "unable to lock kanidm exclusive lock at /var/lib/kanidm/kanidm.db.klock". 85 - server.succeed("systemctl stop kanidm") 86 84 idm_admin_password = server.succeed("su - kanidm -c 'kanidmd recover-account -c ${serverConfigFile} idm_admin 2>&1 | rg -o \'[A-Za-z0-9]{48}\' '").strip().removeprefix("'").removesuffix("'") 87 - server.succeed("systemctl start kanidm") 88 85 89 86 with subtest("Test unixd connection"): 90 87 client.wait_for_unit("kanidm-unixd.service") 91 - # TODO: client.wait_for_file("/run/kanidm-unixd/sock") 88 + client.wait_for_file("/run/kanidm-unixd/sock") 92 89 client.wait_until_succeeds("kanidm-unix status | grep working!") 93 90 94 91 with subtest("Test user creation"):
-5427
pkgs/servers/kanidm/Cargo.lock
··· 1 - # This file is automatically @generated by Cargo. 2 - # It is not intended for manual editing. 3 - version = 3 4 - 5 - [[package]] 6 - name = "adler" 7 - version = "1.0.2" 8 - source = "registry+https://github.com/rust-lang/crates.io-index" 9 - checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 10 - 11 - [[package]] 12 - name = "aead" 13 - version = "0.3.2" 14 - source = "registry+https://github.com/rust-lang/crates.io-index" 15 - checksum = "7fc95d1bdb8e6666b2b217308eeeb09f2d6728d104be3e31916cc74d15420331" 16 - dependencies = [ 17 - "generic-array 0.14.7", 18 - ] 19 - 20 - [[package]] 21 - name = "aes" 22 - version = "0.6.0" 23 - source = "registry+https://github.com/rust-lang/crates.io-index" 24 - checksum = "884391ef1066acaa41e766ba8f596341b96e93ce34f9a43e7d24bf0a0eaf0561" 25 - dependencies = [ 26 - "aes-soft", 27 - "aesni", 28 - "cipher", 29 - ] 30 - 31 - [[package]] 32 - name = "aes-gcm" 33 - version = "0.8.0" 34 - source = "registry+https://github.com/rust-lang/crates.io-index" 35 - checksum = "5278b5fabbb9bd46e24aa69b2fdea62c99088e0a950a9be40e3e0101298f88da" 36 - dependencies = [ 37 - "aead", 38 - "aes", 39 - "cipher", 40 - "ctr", 41 - "ghash", 42 - "subtle", 43 - ] 44 - 45 - [[package]] 46 - name = "aes-soft" 47 - version = "0.6.4" 48 - source = "registry+https://github.com/rust-lang/crates.io-index" 49 - checksum = "be14c7498ea50828a38d0e24a765ed2effe92a705885b57d029cd67d45744072" 50 - dependencies = [ 51 - "cipher", 52 - "opaque-debug 0.3.0", 53 - ] 54 - 55 - [[package]] 56 - name = "aesni" 57 - version = "0.10.0" 58 - source = "registry+https://github.com/rust-lang/crates.io-index" 59 - checksum = "ea2e11f5e94c2f7d386164cc2aa1f97823fed6f259e486940a71c174dd01b0ce" 60 - dependencies = [ 61 - "cipher", 62 - "opaque-debug 0.3.0", 63 - ] 64 - 65 - [[package]] 66 - name = "ahash" 67 - version = "0.7.6" 68 - source = "registry+https://github.com/rust-lang/crates.io-index" 69 - checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" 70 - dependencies = [ 71 - "getrandom 0.2.9", 72 - "once_cell", 73 - "version_check", 74 - ] 75 - 76 - [[package]] 77 - name = "ahash" 78 - version = "0.8.3" 79 - source = "registry+https://github.com/rust-lang/crates.io-index" 80 - checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" 81 - dependencies = [ 82 - "cfg-if 1.0.0", 83 - "once_cell", 84 - "version_check", 85 - ] 86 - 87 - [[package]] 88 - name = "aho-corasick" 89 - version = "1.0.1" 90 - source = "registry+https://github.com/rust-lang/crates.io-index" 91 - checksum = "67fc08ce920c31afb70f013dcce1bfc3a3195de6a228474e45e1f145b36f8d04" 92 - dependencies = [ 93 - "memchr", 94 - ] 95 - 96 - [[package]] 97 - name = "android_system_properties" 98 - version = "0.1.5" 99 - source = "registry+https://github.com/rust-lang/crates.io-index" 100 - checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 101 - dependencies = [ 102 - "libc", 103 - ] 104 - 105 - [[package]] 106 - name = "anes" 107 - version = "0.1.6" 108 - source = "registry+https://github.com/rust-lang/crates.io-index" 109 - checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" 110 - 111 - [[package]] 112 - name = "anyhow" 113 - version = "1.0.71" 114 - source = "registry+https://github.com/rust-lang/crates.io-index" 115 - checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8" 116 - 117 - [[package]] 118 - name = "anymap2" 119 - version = "0.13.0" 120 - source = "registry+https://github.com/rust-lang/crates.io-index" 121 - checksum = "d301b3b94cb4b2f23d7917810addbbaff90738e0ca2be692bd027e70d7e0330c" 122 - 123 - [[package]] 124 - name = "arrayref" 125 - version = "0.3.7" 126 - source = "registry+https://github.com/rust-lang/crates.io-index" 127 - checksum = "6b4930d2cb77ce62f89ee5d5289b4ac049559b1c45539271f5ed4fdc7db34545" 128 - 129 - [[package]] 130 - name = "arrayvec" 131 - version = "0.5.2" 132 - source = "registry+https://github.com/rust-lang/crates.io-index" 133 - checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b" 134 - 135 - [[package]] 136 - name = "asn1-rs" 137 - version = "0.3.1" 138 - source = "registry+https://github.com/rust-lang/crates.io-index" 139 - checksum = "30ff05a702273012438132f449575dbc804e27b2f3cbe3069aa237d26c98fa33" 140 - dependencies = [ 141 - "asn1-rs-derive", 142 - "asn1-rs-impl", 143 - "displaydoc", 144 - "nom", 145 - "num-traits", 146 - "rusticata-macros", 147 - "thiserror", 148 - "time 0.3.21", 149 - ] 150 - 151 - [[package]] 152 - name = "asn1-rs-derive" 153 - version = "0.1.0" 154 - source = "registry+https://github.com/rust-lang/crates.io-index" 155 - checksum = "db8b7511298d5b7784b40b092d9e9dcd3a627a5707e4b5e507931ab0d44eeebf" 156 - dependencies = [ 157 - "proc-macro2", 158 - "quote", 159 - "syn 1.0.109", 160 - "synstructure", 161 - ] 162 - 163 - [[package]] 164 - name = "asn1-rs-impl" 165 - version = "0.1.0" 166 - source = "registry+https://github.com/rust-lang/crates.io-index" 167 - checksum = "2777730b2039ac0f95f093556e61b6d26cebed5393ca6f152717777cec3a42ed" 168 - dependencies = [ 169 - "proc-macro2", 170 - "quote", 171 - "syn 1.0.109", 172 - ] 173 - 174 - [[package]] 175 - name = "async-channel" 176 - version = "1.8.0" 177 - source = "registry+https://github.com/rust-lang/crates.io-index" 178 - checksum = "cf46fee83e5ccffc220104713af3292ff9bc7c64c7de289f66dae8e38d826833" 179 - dependencies = [ 180 - "concurrent-queue", 181 - "event-listener", 182 - "futures-core", 183 - ] 184 - 185 - [[package]] 186 - name = "async-compression" 187 - version = "0.3.15" 188 - source = "registry+https://github.com/rust-lang/crates.io-index" 189 - checksum = "942c7cd7ae39e91bde4820d74132e9862e62c2f386c3aa90ccf55949f5bad63a" 190 - dependencies = [ 191 - "flate2", 192 - "futures-core", 193 - "futures-io", 194 - "memchr", 195 - "pin-project-lite 0.2.9", 196 - ] 197 - 198 - [[package]] 199 - name = "async-compression" 200 - version = "0.4.0" 201 - source = "registry+https://github.com/rust-lang/crates.io-index" 202 - checksum = "5b0122885821398cc923ece939e24d1056a2384ee719432397fa9db87230ff11" 203 - dependencies = [ 204 - "flate2", 205 - "futures-core", 206 - "memchr", 207 - "pin-project-lite 0.2.9", 208 - "tokio", 209 - ] 210 - 211 - [[package]] 212 - name = "async-dup" 213 - version = "1.2.2" 214 - source = "registry+https://github.com/rust-lang/crates.io-index" 215 - checksum = "7427a12b8dc09291528cfb1da2447059adb4a257388c2acd6497a79d55cf6f7c" 216 - dependencies = [ 217 - "futures-io", 218 - "simple-mutex", 219 - ] 220 - 221 - [[package]] 222 - name = "async-executor" 223 - version = "1.5.1" 224 - source = "registry+https://github.com/rust-lang/crates.io-index" 225 - checksum = "6fa3dc5f2a8564f07759c008b9109dc0d39de92a88d5588b8a5036d286383afb" 226 - dependencies = [ 227 - "async-lock", 228 - "async-task", 229 - "concurrent-queue", 230 - "fastrand", 231 - "futures-lite", 232 - "slab", 233 - ] 234 - 235 - [[package]] 236 - name = "async-global-executor" 237 - version = "2.3.1" 238 - source = "registry+https://github.com/rust-lang/crates.io-index" 239 - checksum = "f1b6f5d7df27bd294849f8eec66ecfc63d11814df7a4f5d74168a2394467b776" 240 - dependencies = [ 241 - "async-channel", 242 - "async-executor", 243 - "async-io", 244 - "async-lock", 245 - "blocking", 246 - "futures-lite", 247 - "once_cell", 248 - ] 249 - 250 - [[package]] 251 - name = "async-h1" 252 - version = "2.3.3" 253 - source = "registry+https://github.com/rust-lang/crates.io-index" 254 - checksum = "8101020758a4fc3a7c326cb42aa99e9fa77cbfb76987c128ad956406fe1f70a7" 255 - dependencies = [ 256 - "async-channel", 257 - "async-dup", 258 - "async-std", 259 - "futures-core", 260 - "http-types", 261 - "httparse", 262 - "log", 263 - "pin-project", 264 - ] 265 - 266 - [[package]] 267 - name = "async-io" 268 - version = "1.13.0" 269 - source = "registry+https://github.com/rust-lang/crates.io-index" 270 - checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af" 271 - dependencies = [ 272 - "async-lock", 273 - "autocfg", 274 - "cfg-if 1.0.0", 275 - "concurrent-queue", 276 - "futures-lite", 277 - "log", 278 - "parking", 279 - "polling", 280 - "rustix", 281 - "slab", 282 - "socket2", 283 - "waker-fn", 284 - ] 285 - 286 - [[package]] 287 - name = "async-lock" 288 - version = "2.7.0" 289 - source = "registry+https://github.com/rust-lang/crates.io-index" 290 - checksum = "fa24f727524730b077666307f2734b4a1a1c57acb79193127dcc8914d5242dd7" 291 - dependencies = [ 292 - "event-listener", 293 - ] 294 - 295 - [[package]] 296 - name = "async-process" 297 - version = "1.7.0" 298 - source = "registry+https://github.com/rust-lang/crates.io-index" 299 - checksum = "7a9d28b1d97e08915212e2e45310d47854eafa69600756fc735fb788f75199c9" 300 - dependencies = [ 301 - "async-io", 302 - "async-lock", 303 - "autocfg", 304 - "blocking", 305 - "cfg-if 1.0.0", 306 - "event-listener", 307 - "futures-lite", 308 - "rustix", 309 - "signal-hook", 310 - "windows-sys 0.48.0", 311 - ] 312 - 313 - [[package]] 314 - name = "async-session" 315 - version = "2.0.1" 316 - source = "registry+https://github.com/rust-lang/crates.io-index" 317 - checksum = "345022a2eed092cd105cc1b26fd61c341e100bd5fcbbd792df4baf31c2cc631f" 318 - dependencies = [ 319 - "anyhow", 320 - "async-std", 321 - "async-trait", 322 - "base64 0.12.3", 323 - "bincode", 324 - "blake3", 325 - "chrono", 326 - "hmac 0.8.1", 327 - "kv-log-macro", 328 - "rand 0.7.3", 329 - "serde", 330 - "serde_json", 331 - "sha2 0.9.9", 332 - ] 333 - 334 - [[package]] 335 - name = "async-sse" 336 - version = "4.1.0" 337 - source = "registry+https://github.com/rust-lang/crates.io-index" 338 - checksum = "53bba003996b8fd22245cd0c59b869ba764188ed435392cf2796d03b805ade10" 339 - dependencies = [ 340 - "async-channel", 341 - "async-std", 342 - "http-types", 343 - "log", 344 - "memchr", 345 - "pin-project-lite 0.1.12", 346 - ] 347 - 348 - [[package]] 349 - name = "async-std" 350 - version = "1.12.0" 351 - source = "registry+https://github.com/rust-lang/crates.io-index" 352 - checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d" 353 - dependencies = [ 354 - "async-channel", 355 - "async-global-executor", 356 - "async-io", 357 - "async-lock", 358 - "async-process", 359 - "crossbeam-utils", 360 - "futures-channel", 361 - "futures-core", 362 - "futures-io", 363 - "futures-lite", 364 - "gloo-timers", 365 - "kv-log-macro", 366 - "log", 367 - "memchr", 368 - "once_cell", 369 - "pin-project-lite 0.2.9", 370 - "pin-utils", 371 - "slab", 372 - "wasm-bindgen-futures", 373 - ] 374 - 375 - [[package]] 376 - name = "async-std-openssl" 377 - version = "0.6.3" 378 - source = "registry+https://github.com/rust-lang/crates.io-index" 379 - checksum = "408a76b00fc49b11fe78f1f7a90557a3c887af1d4570fb33e15a70eb7e6b95ee" 380 - dependencies = [ 381 - "async-dup", 382 - "async-std", 383 - "futures-util", 384 - "openssl", 385 - "openssl-sys", 386 - ] 387 - 388 - [[package]] 389 - name = "async-task" 390 - version = "4.4.0" 391 - source = "registry+https://github.com/rust-lang/crates.io-index" 392 - checksum = "ecc7ab41815b3c653ccd2978ec3255c81349336702dfdf62ee6f7069b12a3aae" 393 - 394 - [[package]] 395 - name = "async-trait" 396 - version = "0.1.68" 397 - source = "registry+https://github.com/rust-lang/crates.io-index" 398 - checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842" 399 - dependencies = [ 400 - "proc-macro2", 401 - "quote", 402 - "syn 2.0.16", 403 - ] 404 - 405 - [[package]] 406 - name = "atomic-waker" 407 - version = "1.1.1" 408 - source = "registry+https://github.com/rust-lang/crates.io-index" 409 - checksum = "1181e1e0d1fce796a03db1ae795d67167da795f9cf4a39c37589e85ef57f26d3" 410 - 411 - [[package]] 412 - name = "atty" 413 - version = "0.2.14" 414 - source = "registry+https://github.com/rust-lang/crates.io-index" 415 - checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" 416 - dependencies = [ 417 - "hermit-abi 0.1.19", 418 - "libc", 419 - "winapi", 420 - ] 421 - 422 - [[package]] 423 - name = "authenticator-ctap2-2021" 424 - version = "0.3.2-dev.1" 425 - source = "registry+https://github.com/rust-lang/crates.io-index" 426 - checksum = "d06c690e5e2800f70c0cf8773a9fe7680d66e719dae9b4cabedd13ef4885d056" 427 - dependencies = [ 428 - "base64 0.13.1", 429 - "bitflags", 430 - "cfg-if 1.0.0", 431 - "core-foundation", 432 - "devd-rs", 433 - "libc", 434 - "libudev", 435 - "log", 436 - "memoffset 0.6.5", 437 - "nom", 438 - "openssl", 439 - "openssl-sys", 440 - "rand 0.8.5", 441 - "runloop", 442 - "serde", 443 - "serde_bytes", 444 - "serde_cbor", 445 - "serde_json", 446 - "sha2 0.10.6", 447 - "winapi", 448 - ] 449 - 450 - [[package]] 451 - name = "autocfg" 452 - version = "1.1.0" 453 - source = "registry+https://github.com/rust-lang/crates.io-index" 454 - checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 455 - 456 - [[package]] 457 - name = "base-x" 458 - version = "0.2.11" 459 - source = "registry+https://github.com/rust-lang/crates.io-index" 460 - checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" 461 - 462 - [[package]] 463 - name = "base32" 464 - version = "0.4.0" 465 - source = "registry+https://github.com/rust-lang/crates.io-index" 466 - checksum = "23ce669cd6c8588f79e15cf450314f9638f967fc5770ff1c7c1deb0925ea7cfa" 467 - 468 - [[package]] 469 - name = "base64" 470 - version = "0.12.3" 471 - source = "registry+https://github.com/rust-lang/crates.io-index" 472 - checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff" 473 - 474 - [[package]] 475 - name = "base64" 476 - version = "0.13.1" 477 - source = "registry+https://github.com/rust-lang/crates.io-index" 478 - checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 479 - 480 - [[package]] 481 - name = "base64" 482 - version = "0.21.1" 483 - source = "registry+https://github.com/rust-lang/crates.io-index" 484 - checksum = "3f1e31e207a6b8fb791a38ea3105e6cb541f55e4d029902d3039a4ad07cc4105" 485 - 486 - [[package]] 487 - name = "base64urlsafedata" 488 - version = "0.1.3" 489 - source = "registry+https://github.com/rust-lang/crates.io-index" 490 - checksum = "18b3d30abb74120a9d5267463b9e0045fdccc4dd152e7249d966612dc1721384" 491 - dependencies = [ 492 - "base64 0.21.1", 493 - "serde", 494 - "serde_json", 495 - ] 496 - 497 - [[package]] 498 - name = "bincode" 499 - version = "1.3.3" 500 - source = "registry+https://github.com/rust-lang/crates.io-index" 501 - checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" 502 - dependencies = [ 503 - "serde", 504 - ] 505 - 506 - [[package]] 507 - name = "bit-set" 508 - version = "0.5.3" 509 - source = "registry+https://github.com/rust-lang/crates.io-index" 510 - checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1" 511 - dependencies = [ 512 - "bit-vec", 513 - ] 514 - 515 - [[package]] 516 - name = "bit-vec" 517 - version = "0.6.3" 518 - source = "registry+https://github.com/rust-lang/crates.io-index" 519 - checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb" 520 - 521 - [[package]] 522 - name = "bitflags" 523 - version = "1.3.2" 524 - source = "registry+https://github.com/rust-lang/crates.io-index" 525 - checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 526 - 527 - [[package]] 528 - name = "blake3" 529 - version = "0.3.8" 530 - source = "registry+https://github.com/rust-lang/crates.io-index" 531 - checksum = "b64485778c4f16a6a5a9d335e80d449ac6c70cdd6a06d2af18a6f6f775a125b3" 532 - dependencies = [ 533 - "arrayref", 534 - "arrayvec", 535 - "cc", 536 - "cfg-if 0.1.10", 537 - "constant_time_eq", 538 - "crypto-mac 0.8.0", 539 - "digest 0.9.0", 540 - ] 541 - 542 - [[package]] 543 - name = "block-buffer" 544 - version = "0.7.3" 545 - source = "registry+https://github.com/rust-lang/crates.io-index" 546 - checksum = "c0940dc441f31689269e10ac70eb1002a3a1d3ad1390e030043662eb7fe4688b" 547 - dependencies = [ 548 - "block-padding", 549 - "byte-tools", 550 - "byteorder", 551 - "generic-array 0.12.4", 552 - ] 553 - 554 - [[package]] 555 - name = "block-buffer" 556 - version = "0.9.0" 557 - source = "registry+https://github.com/rust-lang/crates.io-index" 558 - checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" 559 - dependencies = [ 560 - "generic-array 0.14.7", 561 - ] 562 - 563 - [[package]] 564 - name = "block-buffer" 565 - version = "0.10.4" 566 - source = "registry+https://github.com/rust-lang/crates.io-index" 567 - checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 568 - dependencies = [ 569 - "generic-array 0.14.7", 570 - ] 571 - 572 - [[package]] 573 - name = "block-padding" 574 - version = "0.1.5" 575 - source = "registry+https://github.com/rust-lang/crates.io-index" 576 - checksum = "fa79dedbb091f449f1f39e53edf88d5dbe95f895dae6135a8d7b881fb5af73f5" 577 - dependencies = [ 578 - "byte-tools", 579 - ] 580 - 581 - [[package]] 582 - name = "blocking" 583 - version = "1.3.1" 584 - source = "registry+https://github.com/rust-lang/crates.io-index" 585 - checksum = "77231a1c8f801696fc0123ec6150ce92cffb8e164a02afb9c8ddee0e9b65ad65" 586 - dependencies = [ 587 - "async-channel", 588 - "async-lock", 589 - "async-task", 590 - "atomic-waker", 591 - "fastrand", 592 - "futures-lite", 593 - "log", 594 - ] 595 - 596 - [[package]] 597 - name = "boolinator" 598 - version = "2.4.0" 599 - source = "registry+https://github.com/rust-lang/crates.io-index" 600 - checksum = "cfa8873f51c92e232f9bac4065cddef41b714152812bfc5f7672ba16d6ef8cd9" 601 - 602 - [[package]] 603 - name = "bumpalo" 604 - version = "3.13.0" 605 - source = "registry+https://github.com/rust-lang/crates.io-index" 606 - checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1" 607 - 608 - [[package]] 609 - name = "byte-tools" 610 - version = "0.3.1" 611 - source = "registry+https://github.com/rust-lang/crates.io-index" 612 - checksum = "e3b5ca7a04898ad4bcd41c90c5285445ff5b791899bb1b0abdd2a2aa791211d7" 613 - 614 - [[package]] 615 - name = "bytemuck" 616 - version = "1.13.1" 617 - source = "registry+https://github.com/rust-lang/crates.io-index" 618 - checksum = "17febce684fd15d89027105661fec94afb475cb995fbc59d2865198446ba2eea" 619 - 620 - [[package]] 621 - name = "byteorder" 622 - version = "1.4.3" 623 - source = "registry+https://github.com/rust-lang/crates.io-index" 624 - checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" 625 - 626 - [[package]] 627 - name = "bytes" 628 - version = "1.4.0" 629 - source = "registry+https://github.com/rust-lang/crates.io-index" 630 - checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be" 631 - 632 - [[package]] 633 - name = "cast" 634 - version = "0.3.0" 635 - source = "registry+https://github.com/rust-lang/crates.io-index" 636 - checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5" 637 - 638 - [[package]] 639 - name = "cc" 640 - version = "1.0.79" 641 - source = "registry+https://github.com/rust-lang/crates.io-index" 642 - checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f" 643 - dependencies = [ 644 - "jobserver", 645 - ] 646 - 647 - [[package]] 648 - name = "cfg-if" 649 - version = "0.1.10" 650 - source = "registry+https://github.com/rust-lang/crates.io-index" 651 - checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" 652 - 653 - [[package]] 654 - name = "cfg-if" 655 - version = "1.0.0" 656 - source = "registry+https://github.com/rust-lang/crates.io-index" 657 - checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 658 - 659 - [[package]] 660 - name = "checked_int_cast" 661 - version = "1.0.0" 662 - source = "registry+https://github.com/rust-lang/crates.io-index" 663 - checksum = "17cc5e6b5ab06331c33589842070416baa137e8b0eb912b008cfd4a78ada7919" 664 - 665 - [[package]] 666 - name = "chrono" 667 - version = "0.4.24" 668 - source = "registry+https://github.com/rust-lang/crates.io-index" 669 - checksum = "4e3c5919066adf22df73762e50cffcde3a758f2a848b113b586d1f86728b673b" 670 - dependencies = [ 671 - "iana-time-zone", 672 - "js-sys", 673 - "num-integer", 674 - "num-traits", 675 - "serde", 676 - "time 0.1.45", 677 - "wasm-bindgen", 678 - "winapi", 679 - ] 680 - 681 - [[package]] 682 - name = "ciborium" 683 - version = "0.2.1" 684 - source = "registry+https://github.com/rust-lang/crates.io-index" 685 - checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926" 686 - dependencies = [ 687 - "ciborium-io", 688 - "ciborium-ll", 689 - "serde", 690 - ] 691 - 692 - [[package]] 693 - name = "ciborium-io" 694 - version = "0.2.1" 695 - source = "registry+https://github.com/rust-lang/crates.io-index" 696 - checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656" 697 - 698 - [[package]] 699 - name = "ciborium-ll" 700 - version = "0.2.1" 701 - source = "registry+https://github.com/rust-lang/crates.io-index" 702 - checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b" 703 - dependencies = [ 704 - "ciborium-io", 705 - "half", 706 - ] 707 - 708 - [[package]] 709 - name = "cipher" 710 - version = "0.2.5" 711 - source = "registry+https://github.com/rust-lang/crates.io-index" 712 - checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801" 713 - dependencies = [ 714 - "generic-array 0.14.7", 715 - ] 716 - 717 - [[package]] 718 - name = "clap" 719 - version = "3.2.25" 720 - source = "registry+https://github.com/rust-lang/crates.io-index" 721 - checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123" 722 - dependencies = [ 723 - "atty", 724 - "bitflags", 725 - "clap_derive", 726 - "clap_lex", 727 - "indexmap", 728 - "once_cell", 729 - "strsim", 730 - "termcolor", 731 - "textwrap", 732 - ] 733 - 734 - [[package]] 735 - name = "clap_complete" 736 - version = "3.2.5" 737 - source = "registry+https://github.com/rust-lang/crates.io-index" 738 - checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8" 739 - dependencies = [ 740 - "clap", 741 - ] 742 - 743 - [[package]] 744 - name = "clap_derive" 745 - version = "3.2.25" 746 - source = "registry+https://github.com/rust-lang/crates.io-index" 747 - checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008" 748 - dependencies = [ 749 - "heck", 750 - "proc-macro-error", 751 - "proc-macro2", 752 - "quote", 753 - "syn 1.0.109", 754 - ] 755 - 756 - [[package]] 757 - name = "clap_lex" 758 - version = "0.2.4" 759 - source = "registry+https://github.com/rust-lang/crates.io-index" 760 - checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5" 761 - dependencies = [ 762 - "os_str_bytes", 763 - ] 764 - 765 - [[package]] 766 - name = "color_quant" 767 - version = "1.1.0" 768 - source = "registry+https://github.com/rust-lang/crates.io-index" 769 - checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" 770 - 771 - [[package]] 772 - name = "compact_jwt" 773 - version = "0.2.9" 774 - source = "registry+https://github.com/rust-lang/crates.io-index" 775 - checksum = "51f9032b96a89dd79ffc5f62523d5351ebb40680cbdfc4029393b511b9e971aa" 776 - dependencies = [ 777 - "base64 0.13.1", 778 - "base64urlsafedata", 779 - "hex", 780 - "openssl", 781 - "serde", 782 - "serde_json", 783 - "tracing", 784 - "url", 785 - "uuid", 786 - ] 787 - 788 - [[package]] 789 - name = "concread" 790 - version = "0.4.1" 791 - source = "registry+https://github.com/rust-lang/crates.io-index" 792 - checksum = "5d3d825450e64aece76bdcf5c6d115c454ebb284c892da3e4cc7ff1e62e72069" 793 - dependencies = [ 794 - "ahash 0.7.6", 795 - "crossbeam-epoch", 796 - "crossbeam-queue", 797 - "crossbeam-utils", 798 - "lru 0.7.8", 799 - "smallvec", 800 - "sptr", 801 - "tokio", 802 - "tracing", 803 - ] 804 - 805 - [[package]] 806 - name = "concurrent-queue" 807 - version = "2.2.0" 808 - source = "registry+https://github.com/rust-lang/crates.io-index" 809 - checksum = "62ec6771ecfa0762d24683ee5a32ad78487a3d3afdc0fb8cae19d2c5deb50b7c" 810 - dependencies = [ 811 - "crossbeam-utils", 812 - ] 813 - 814 - [[package]] 815 - name = "console" 816 - version = "0.15.7" 817 - source = "registry+https://github.com/rust-lang/crates.io-index" 818 - checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8" 819 - dependencies = [ 820 - "encode_unicode", 821 - "lazy_static", 822 - "libc", 823 - "unicode-width", 824 - "windows-sys 0.45.0", 825 - ] 826 - 827 - [[package]] 828 - name = "console_error_panic_hook" 829 - version = "0.1.7" 830 - source = "registry+https://github.com/rust-lang/crates.io-index" 831 - checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc" 832 - dependencies = [ 833 - "cfg-if 1.0.0", 834 - "wasm-bindgen", 835 - ] 836 - 837 - [[package]] 838 - name = "const_fn" 839 - version = "0.4.9" 840 - source = "registry+https://github.com/rust-lang/crates.io-index" 841 - checksum = "fbdcdcb6d86f71c5e97409ad45898af11cbc995b4ee8112d59095a28d376c935" 842 - 843 - [[package]] 844 - name = "constant_time_eq" 845 - version = "0.1.5" 846 - source = "registry+https://github.com/rust-lang/crates.io-index" 847 - checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc" 848 - 849 - [[package]] 850 - name = "cookie" 851 - version = "0.14.4" 852 - source = "registry+https://github.com/rust-lang/crates.io-index" 853 - checksum = "03a5d7b21829bc7b4bf4754a978a241ae54ea55a40f92bb20216e54096f4b951" 854 - dependencies = [ 855 - "aes-gcm", 856 - "base64 0.13.1", 857 - "hkdf", 858 - "hmac 0.10.1", 859 - "percent-encoding", 860 - "rand 0.8.5", 861 - "sha2 0.9.9", 862 - "time 0.2.27", 863 - "version_check", 864 - ] 865 - 866 - [[package]] 867 - name = "cookie" 868 - version = "0.16.2" 869 - source = "registry+https://github.com/rust-lang/crates.io-index" 870 - checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb" 871 - dependencies = [ 872 - "percent-encoding", 873 - "time 0.3.21", 874 - "version_check", 875 - ] 876 - 877 - [[package]] 878 - name = "cookie_store" 879 - version = "0.16.1" 880 - source = "registry+https://github.com/rust-lang/crates.io-index" 881 - checksum = "2e4b6aa369f41f5faa04bb80c9b1f4216ea81646ed6124d76ba5c49a7aafd9cd" 882 - dependencies = [ 883 - "cookie 0.16.2", 884 - "idna 0.2.3", 885 - "log", 886 - "publicsuffix", 887 - "serde", 888 - "serde_json", 889 - "time 0.3.21", 890 - "url", 891 - ] 892 - 893 - [[package]] 894 - name = "core-foundation" 895 - version = "0.9.3" 896 - source = "registry+https://github.com/rust-lang/crates.io-index" 897 - checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 898 - dependencies = [ 899 - "core-foundation-sys", 900 - "libc", 901 - ] 902 - 903 - [[package]] 904 - name = "core-foundation-sys" 905 - version = "0.8.4" 906 - source = "registry+https://github.com/rust-lang/crates.io-index" 907 - checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 908 - 909 - [[package]] 910 - name = "cpufeatures" 911 - version = "0.2.7" 912 - source = "registry+https://github.com/rust-lang/crates.io-index" 913 - checksum = "3e4c1eaa2012c47becbbad2ab175484c2a84d1185b566fb2cc5b8707343dfe58" 914 - dependencies = [ 915 - "libc", 916 - ] 917 - 918 - [[package]] 919 - name = "cpuid-bool" 920 - version = "0.2.0" 921 - source = "registry+https://github.com/rust-lang/crates.io-index" 922 - checksum = "dcb25d077389e53838a8158c8e99174c5a9d902dee4904320db714f3c653ffba" 923 - 924 - [[package]] 925 - name = "crc32fast" 926 - version = "1.3.2" 927 - source = "registry+https://github.com/rust-lang/crates.io-index" 928 - checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 929 - dependencies = [ 930 - "cfg-if 1.0.0", 931 - ] 932 - 933 - [[package]] 934 - name = "criterion" 935 - version = "0.4.0" 936 - source = "registry+https://github.com/rust-lang/crates.io-index" 937 - checksum = "e7c76e09c1aae2bc52b3d2f29e13c6572553b30c4aa1b8a49fd70de6412654cb" 938 - dependencies = [ 939 - "anes", 940 - "atty", 941 - "cast", 942 - "ciborium", 943 - "clap", 944 - "criterion-plot", 945 - "itertools", 946 - "lazy_static", 947 - "num-traits", 948 - "oorandom", 949 - "plotters", 950 - "rayon", 951 - "regex", 952 - "serde", 953 - "serde_derive", 954 - "serde_json", 955 - "tinytemplate", 956 - "walkdir", 957 - ] 958 - 959 - [[package]] 960 - name = "criterion-plot" 961 - version = "0.5.0" 962 - source = "registry+https://github.com/rust-lang/crates.io-index" 963 - checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" 964 - dependencies = [ 965 - "cast", 966 - "itertools", 967 - ] 968 - 969 - [[package]] 970 - name = "cron" 971 - version = "0.12.0" 972 - source = "registry+https://github.com/rust-lang/crates.io-index" 973 - checksum = "1ff76b51e4c068c52bfd2866e1567bee7c567ae8f24ada09fd4307019e25eab7" 974 - dependencies = [ 975 - "chrono", 976 - "nom", 977 - "once_cell", 978 - ] 979 - 980 - [[package]] 981 - name = "crossbeam" 982 - version = "0.8.2" 983 - source = "registry+https://github.com/rust-lang/crates.io-index" 984 - checksum = "2801af0d36612ae591caa9568261fddce32ce6e08a7275ea334a06a4ad021a2c" 985 - dependencies = [ 986 - "cfg-if 1.0.0", 987 - "crossbeam-channel", 988 - "crossbeam-deque", 989 - "crossbeam-epoch", 990 - "crossbeam-queue", 991 - "crossbeam-utils", 992 - ] 993 - 994 - [[package]] 995 - name = "crossbeam-channel" 996 - version = "0.5.8" 997 - source = "registry+https://github.com/rust-lang/crates.io-index" 998 - checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200" 999 - dependencies = [ 1000 - "cfg-if 1.0.0", 1001 - "crossbeam-utils", 1002 - ] 1003 - 1004 - [[package]] 1005 - name = "crossbeam-deque" 1006 - version = "0.8.3" 1007 - source = "registry+https://github.com/rust-lang/crates.io-index" 1008 - checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef" 1009 - dependencies = [ 1010 - "cfg-if 1.0.0", 1011 - "crossbeam-epoch", 1012 - "crossbeam-utils", 1013 - ] 1014 - 1015 - [[package]] 1016 - name = "crossbeam-epoch" 1017 - version = "0.9.14" 1018 - source = "registry+https://github.com/rust-lang/crates.io-index" 1019 - checksum = "46bd5f3f85273295a9d14aedfb86f6aadbff6d8f5295c4a9edb08e819dcf5695" 1020 - dependencies = [ 1021 - "autocfg", 1022 - "cfg-if 1.0.0", 1023 - "crossbeam-utils", 1024 - "memoffset 0.8.0", 1025 - "scopeguard", 1026 - ] 1027 - 1028 - [[package]] 1029 - name = "crossbeam-queue" 1030 - version = "0.3.8" 1031 - source = "registry+https://github.com/rust-lang/crates.io-index" 1032 - checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" 1033 - dependencies = [ 1034 - "cfg-if 1.0.0", 1035 - "crossbeam-utils", 1036 - ] 1037 - 1038 - [[package]] 1039 - name = "crossbeam-utils" 1040 - version = "0.8.15" 1041 - source = "registry+https://github.com/rust-lang/crates.io-index" 1042 - checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b" 1043 - dependencies = [ 1044 - "cfg-if 1.0.0", 1045 - ] 1046 - 1047 - [[package]] 1048 - name = "crypto-common" 1049 - version = "0.1.6" 1050 - source = "registry+https://github.com/rust-lang/crates.io-index" 1051 - checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 1052 - dependencies = [ 1053 - "generic-array 0.14.7", 1054 - "typenum", 1055 - ] 1056 - 1057 - [[package]] 1058 - name = "crypto-mac" 1059 - version = "0.8.0" 1060 - source = "registry+https://github.com/rust-lang/crates.io-index" 1061 - checksum = "b584a330336237c1eecd3e94266efb216c56ed91225d634cb2991c5f3fd1aeab" 1062 - dependencies = [ 1063 - "generic-array 0.14.7", 1064 - "subtle", 1065 - ] 1066 - 1067 - [[package]] 1068 - name = "crypto-mac" 1069 - version = "0.10.1" 1070 - source = "registry+https://github.com/rust-lang/crates.io-index" 1071 - checksum = "bff07008ec701e8028e2ceb8f83f0e4274ee62bd2dbdc4fefff2e9a91824081a" 1072 - dependencies = [ 1073 - "generic-array 0.14.7", 1074 - "subtle", 1075 - ] 1076 - 1077 - [[package]] 1078 - name = "csv" 1079 - version = "1.2.1" 1080 - source = "registry+https://github.com/rust-lang/crates.io-index" 1081 - checksum = "0b015497079b9a9d69c02ad25de6c0a6edef051ea6360a327d0bd05802ef64ad" 1082 - dependencies = [ 1083 - "csv-core", 1084 - "itoa", 1085 - "ryu", 1086 - "serde", 1087 - ] 1088 - 1089 - [[package]] 1090 - name = "csv-core" 1091 - version = "0.1.10" 1092 - source = "registry+https://github.com/rust-lang/crates.io-index" 1093 - checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90" 1094 - dependencies = [ 1095 - "memchr", 1096 - ] 1097 - 1098 - [[package]] 1099 - name = "ctor" 1100 - version = "0.1.26" 1101 - source = "registry+https://github.com/rust-lang/crates.io-index" 1102 - checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" 1103 - dependencies = [ 1104 - "quote", 1105 - "syn 1.0.109", 1106 - ] 1107 - 1108 - [[package]] 1109 - name = "ctr" 1110 - version = "0.6.0" 1111 - source = "registry+https://github.com/rust-lang/crates.io-index" 1112 - checksum = "fb4a30d54f7443bf3d6191dcd486aca19e67cb3c49fa7a06a319966346707e7f" 1113 - dependencies = [ 1114 - "cipher", 1115 - ] 1116 - 1117 - [[package]] 1118 - name = "daemon" 1119 - version = "1.1.0-alpha.12" 1120 - dependencies = [ 1121 - "clap", 1122 - "clap_complete", 1123 - "fs2", 1124 - "kanidm_lib_file_permissions", 1125 - "kanidm_proto", 1126 - "kanidmd_core", 1127 - "profiles", 1128 - "reqwest", 1129 - "serde", 1130 - "sketching", 1131 - "tikv-jemallocator", 1132 - "tokio", 1133 - "toml", 1134 - "users", 1135 - "whoami", 1136 - ] 1137 - 1138 - [[package]] 1139 - name = "darling" 1140 - version = "0.14.4" 1141 - source = "registry+https://github.com/rust-lang/crates.io-index" 1142 - checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850" 1143 - dependencies = [ 1144 - "darling_core", 1145 - "darling_macro", 1146 - ] 1147 - 1148 - [[package]] 1149 - name = "darling_core" 1150 - version = "0.14.4" 1151 - source = "registry+https://github.com/rust-lang/crates.io-index" 1152 - checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0" 1153 - dependencies = [ 1154 - "fnv", 1155 - "ident_case", 1156 - "proc-macro2", 1157 - "quote", 1158 - "strsim", 1159 - "syn 1.0.109", 1160 - ] 1161 - 1162 - [[package]] 1163 - name = "darling_macro" 1164 - version = "0.14.4" 1165 - source = "registry+https://github.com/rust-lang/crates.io-index" 1166 - checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e" 1167 - dependencies = [ 1168 - "darling_core", 1169 - "quote", 1170 - "syn 1.0.109", 1171 - ] 1172 - 1173 - [[package]] 1174 - name = "data-encoding" 1175 - version = "2.4.0" 1176 - source = "registry+https://github.com/rust-lang/crates.io-index" 1177 - checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308" 1178 - 1179 - [[package]] 1180 - name = "der-parser" 1181 - version = "7.0.0" 1182 - source = "registry+https://github.com/rust-lang/crates.io-index" 1183 - checksum = "fe398ac75057914d7d07307bf67dc7f3f574a26783b4fc7805a20ffa9f506e82" 1184 - dependencies = [ 1185 - "asn1-rs", 1186 - "displaydoc", 1187 - "nom", 1188 - "num-bigint", 1189 - "num-traits", 1190 - "rusticata-macros", 1191 - ] 1192 - 1193 - [[package]] 1194 - name = "derive_builder" 1195 - version = "0.12.0" 1196 - source = "registry+https://github.com/rust-lang/crates.io-index" 1197 - checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8" 1198 - dependencies = [ 1199 - "derive_builder_macro", 1200 - ] 1201 - 1202 - [[package]] 1203 - name = "derive_builder_core" 1204 - version = "0.12.0" 1205 - source = "registry+https://github.com/rust-lang/crates.io-index" 1206 - checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f" 1207 - dependencies = [ 1208 - "darling", 1209 - "proc-macro2", 1210 - "quote", 1211 - "syn 1.0.109", 1212 - ] 1213 - 1214 - [[package]] 1215 - name = "derive_builder_macro" 1216 - version = "0.12.0" 1217 - source = "registry+https://github.com/rust-lang/crates.io-index" 1218 - checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e" 1219 - dependencies = [ 1220 - "derive_builder_core", 1221 - "syn 1.0.109", 1222 - ] 1223 - 1224 - [[package]] 1225 - name = "devd-rs" 1226 - version = "0.3.6" 1227 - source = "registry+https://github.com/rust-lang/crates.io-index" 1228 - checksum = "9313f104b590510b46fc01c0a324fc76505c13871454d3c48490468d04c8d395" 1229 - dependencies = [ 1230 - "libc", 1231 - "nom", 1232 - ] 1233 - 1234 - [[package]] 1235 - name = "dialoguer" 1236 - version = "0.10.4" 1237 - source = "registry+https://github.com/rust-lang/crates.io-index" 1238 - checksum = "59c6f2989294b9a498d3ad5491a79c6deb604617378e1cdc4bfc1c1361fe2f87" 1239 - dependencies = [ 1240 - "console", 1241 - "shell-words", 1242 - "tempfile", 1243 - "zeroize", 1244 - ] 1245 - 1246 - [[package]] 1247 - name = "digest" 1248 - version = "0.8.1" 1249 - source = "registry+https://github.com/rust-lang/crates.io-index" 1250 - checksum = "f3d0c8c8752312f9713efd397ff63acb9f85585afbf179282e720e7704954dd5" 1251 - dependencies = [ 1252 - "generic-array 0.12.4", 1253 - ] 1254 - 1255 - [[package]] 1256 - name = "digest" 1257 - version = "0.9.0" 1258 - source = "registry+https://github.com/rust-lang/crates.io-index" 1259 - checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" 1260 - dependencies = [ 1261 - "generic-array 0.14.7", 1262 - ] 1263 - 1264 - [[package]] 1265 - name = "digest" 1266 - version = "0.10.7" 1267 - source = "registry+https://github.com/rust-lang/crates.io-index" 1268 - checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 1269 - dependencies = [ 1270 - "block-buffer 0.10.4", 1271 - "crypto-common", 1272 - ] 1273 - 1274 - [[package]] 1275 - name = "dirs" 1276 - version = "4.0.0" 1277 - source = "registry+https://github.com/rust-lang/crates.io-index" 1278 - checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" 1279 - dependencies = [ 1280 - "dirs-sys", 1281 - ] 1282 - 1283 - [[package]] 1284 - name = "dirs-sys" 1285 - version = "0.3.7" 1286 - source = "registry+https://github.com/rust-lang/crates.io-index" 1287 - checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" 1288 - dependencies = [ 1289 - "libc", 1290 - "redox_users", 1291 - "winapi", 1292 - ] 1293 - 1294 - [[package]] 1295 - name = "discard" 1296 - version = "1.0.4" 1297 - source = "registry+https://github.com/rust-lang/crates.io-index" 1298 - checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0" 1299 - 1300 - [[package]] 1301 - name = "displaydoc" 1302 - version = "0.2.4" 1303 - source = "registry+https://github.com/rust-lang/crates.io-index" 1304 - checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" 1305 - dependencies = [ 1306 - "proc-macro2", 1307 - "quote", 1308 - "syn 2.0.16", 1309 - ] 1310 - 1311 - [[package]] 1312 - name = "dyn-clone" 1313 - version = "1.0.11" 1314 - source = "registry+https://github.com/rust-lang/crates.io-index" 1315 - checksum = "68b0cf012f1230e43cd00ebb729c6bb58707ecfa8ad08b52ef3a4ccd2697fc30" 1316 - 1317 - [[package]] 1318 - name = "either" 1319 - version = "1.8.1" 1320 - source = "registry+https://github.com/rust-lang/crates.io-index" 1321 - checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91" 1322 - 1323 - [[package]] 1324 - name = "encode_unicode" 1325 - version = "0.3.6" 1326 - source = "registry+https://github.com/rust-lang/crates.io-index" 1327 - checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" 1328 - 1329 - [[package]] 1330 - name = "encoding_rs" 1331 - version = "0.8.32" 1332 - source = "registry+https://github.com/rust-lang/crates.io-index" 1333 - checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" 1334 - dependencies = [ 1335 - "cfg-if 1.0.0", 1336 - ] 1337 - 1338 - [[package]] 1339 - name = "erased-serde" 1340 - version = "0.3.25" 1341 - source = "registry+https://github.com/rust-lang/crates.io-index" 1342 - checksum = "4f2b0c2380453a92ea8b6c8e5f64ecaafccddde8ceab55ff7a8ac1029f894569" 1343 - dependencies = [ 1344 - "serde", 1345 - ] 1346 - 1347 - [[package]] 1348 - name = "errno" 1349 - version = "0.3.1" 1350 - source = "registry+https://github.com/rust-lang/crates.io-index" 1351 - checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a" 1352 - dependencies = [ 1353 - "errno-dragonfly", 1354 - "libc", 1355 - "windows-sys 0.48.0", 1356 - ] 1357 - 1358 - [[package]] 1359 - name = "errno-dragonfly" 1360 - version = "0.1.2" 1361 - source = "registry+https://github.com/rust-lang/crates.io-index" 1362 - checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf" 1363 - dependencies = [ 1364 - "cc", 1365 - "libc", 1366 - ] 1367 - 1368 - [[package]] 1369 - name = "event-listener" 1370 - version = "2.5.3" 1371 - source = "registry+https://github.com/rust-lang/crates.io-index" 1372 - checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" 1373 - 1374 - [[package]] 1375 - name = "fake-simd" 1376 - version = "0.1.2" 1377 - source = "registry+https://github.com/rust-lang/crates.io-index" 1378 - checksum = "e88a8acf291dafb59c2d96e8f59828f3838bb1a70398823ade51a84de6a6deed" 1379 - 1380 - [[package]] 1381 - name = "fallible-iterator" 1382 - version = "0.2.0" 1383 - source = "registry+https://github.com/rust-lang/crates.io-index" 1384 - checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7" 1385 - 1386 - [[package]] 1387 - name = "fallible-streaming-iterator" 1388 - version = "0.1.9" 1389 - source = "registry+https://github.com/rust-lang/crates.io-index" 1390 - checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a" 1391 - 1392 - [[package]] 1393 - name = "fancy-regex" 1394 - version = "0.11.0" 1395 - source = "registry+https://github.com/rust-lang/crates.io-index" 1396 - checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2" 1397 - dependencies = [ 1398 - "bit-set", 1399 - "regex", 1400 - ] 1401 - 1402 - [[package]] 1403 - name = "fastrand" 1404 - version = "1.9.0" 1405 - source = "registry+https://github.com/rust-lang/crates.io-index" 1406 - checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be" 1407 - dependencies = [ 1408 - "instant", 1409 - ] 1410 - 1411 - [[package]] 1412 - name = "femme" 1413 - version = "2.2.1" 1414 - source = "registry+https://github.com/rust-lang/crates.io-index" 1415 - checksum = "cc04871e5ae3aa2952d552dae6b291b3099723bf779a8054281c1366a54613ef" 1416 - dependencies = [ 1417 - "cfg-if 1.0.0", 1418 - "js-sys", 1419 - "log", 1420 - "serde", 1421 - "serde_derive", 1422 - "serde_json", 1423 - "wasm-bindgen", 1424 - "web-sys", 1425 - ] 1426 - 1427 - [[package]] 1428 - name = "fernet" 1429 - version = "0.2.1" 1430 - source = "registry+https://github.com/rust-lang/crates.io-index" 1431 - checksum = "3364d69f691f3903b1a71605fa04f40a7c2d259f0f0512347e36d19a63debf1f" 1432 - dependencies = [ 1433 - "base64 0.21.1", 1434 - "byteorder", 1435 - "getrandom 0.2.9", 1436 - "openssl", 1437 - "zeroize", 1438 - ] 1439 - 1440 - [[package]] 1441 - name = "filetime" 1442 - version = "0.2.21" 1443 - source = "registry+https://github.com/rust-lang/crates.io-index" 1444 - checksum = "5cbc844cecaee9d4443931972e1289c8ff485cb4cc2767cb03ca139ed6885153" 1445 - dependencies = [ 1446 - "cfg-if 1.0.0", 1447 - "libc", 1448 - "redox_syscall 0.2.16", 1449 - "windows-sys 0.48.0", 1450 - ] 1451 - 1452 - [[package]] 1453 - name = "flate2" 1454 - version = "1.0.26" 1455 - source = "registry+https://github.com/rust-lang/crates.io-index" 1456 - checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743" 1457 - dependencies = [ 1458 - "crc32fast", 1459 - "miniz_oxide", 1460 - ] 1461 - 1462 - [[package]] 1463 - name = "fnv" 1464 - version = "1.0.7" 1465 - source = "registry+https://github.com/rust-lang/crates.io-index" 1466 - checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 1467 - 1468 - [[package]] 1469 - name = "foreign-types" 1470 - version = "0.3.2" 1471 - source = "registry+https://github.com/rust-lang/crates.io-index" 1472 - checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 1473 - dependencies = [ 1474 - "foreign-types-shared", 1475 - ] 1476 - 1477 - [[package]] 1478 - name = "foreign-types-shared" 1479 - version = "0.1.1" 1480 - source = "registry+https://github.com/rust-lang/crates.io-index" 1481 - checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 1482 - 1483 - [[package]] 1484 - name = "form_urlencoded" 1485 - version = "1.1.0" 1486 - source = "registry+https://github.com/rust-lang/crates.io-index" 1487 - checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8" 1488 - dependencies = [ 1489 - "percent-encoding", 1490 - ] 1491 - 1492 - [[package]] 1493 - name = "fs2" 1494 - version = "0.4.3" 1495 - source = "registry+https://github.com/rust-lang/crates.io-index" 1496 - checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" 1497 - dependencies = [ 1498 - "libc", 1499 - "winapi", 1500 - ] 1501 - 1502 - [[package]] 1503 - name = "futures" 1504 - version = "0.3.28" 1505 - source = "registry+https://github.com/rust-lang/crates.io-index" 1506 - checksum = "23342abe12aba583913b2e62f22225ff9c950774065e4bfb61a19cd9770fec40" 1507 - dependencies = [ 1508 - "futures-channel", 1509 - "futures-core", 1510 - "futures-executor", 1511 - "futures-io", 1512 - "futures-sink", 1513 - "futures-task", 1514 - "futures-util", 1515 - ] 1516 - 1517 - [[package]] 1518 - name = "futures-channel" 1519 - version = "0.3.28" 1520 - source = "registry+https://github.com/rust-lang/crates.io-index" 1521 - checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" 1522 - dependencies = [ 1523 - "futures-core", 1524 - "futures-sink", 1525 - ] 1526 - 1527 - [[package]] 1528 - name = "futures-concurrency" 1529 - version = "3.1.0" 1530 - source = "registry+https://github.com/rust-lang/crates.io-index" 1531 - checksum = "113411b30b3a4fd9aba3eb9654f436976b71bc7f709318aeae7f8e90f74a71d6" 1532 - dependencies = [ 1533 - "async-trait", 1534 - "futures-core", 1535 - "pin-project", 1536 - ] 1537 - 1538 - [[package]] 1539 - name = "futures-core" 1540 - version = "0.3.28" 1541 - source = "registry+https://github.com/rust-lang/crates.io-index" 1542 - checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" 1543 - 1544 - [[package]] 1545 - name = "futures-executor" 1546 - version = "0.3.28" 1547 - source = "registry+https://github.com/rust-lang/crates.io-index" 1548 - checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" 1549 - dependencies = [ 1550 - "futures-core", 1551 - "futures-task", 1552 - "futures-util", 1553 - ] 1554 - 1555 - [[package]] 1556 - name = "futures-io" 1557 - version = "0.3.28" 1558 - source = "registry+https://github.com/rust-lang/crates.io-index" 1559 - checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" 1560 - 1561 - [[package]] 1562 - name = "futures-lite" 1563 - version = "1.13.0" 1564 - source = "registry+https://github.com/rust-lang/crates.io-index" 1565 - checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce" 1566 - dependencies = [ 1567 - "fastrand", 1568 - "futures-core", 1569 - "futures-io", 1570 - "memchr", 1571 - "parking", 1572 - "pin-project-lite 0.2.9", 1573 - "waker-fn", 1574 - ] 1575 - 1576 - [[package]] 1577 - name = "futures-macro" 1578 - version = "0.3.28" 1579 - source = "registry+https://github.com/rust-lang/crates.io-index" 1580 - checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72" 1581 - dependencies = [ 1582 - "proc-macro2", 1583 - "quote", 1584 - "syn 2.0.16", 1585 - ] 1586 - 1587 - [[package]] 1588 - name = "futures-sink" 1589 - version = "0.3.28" 1590 - source = "registry+https://github.com/rust-lang/crates.io-index" 1591 - checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" 1592 - 1593 - [[package]] 1594 - name = "futures-task" 1595 - version = "0.3.28" 1596 - source = "registry+https://github.com/rust-lang/crates.io-index" 1597 - checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65" 1598 - 1599 - [[package]] 1600 - name = "futures-util" 1601 - version = "0.3.28" 1602 - source = "registry+https://github.com/rust-lang/crates.io-index" 1603 - checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" 1604 - dependencies = [ 1605 - "futures-channel", 1606 - "futures-core", 1607 - "futures-io", 1608 - "futures-macro", 1609 - "futures-sink", 1610 - "futures-task", 1611 - "memchr", 1612 - "pin-project-lite 0.2.9", 1613 - "pin-utils", 1614 - "slab", 1615 - ] 1616 - 1617 - [[package]] 1618 - name = "generic-array" 1619 - version = "0.12.4" 1620 - source = "registry+https://github.com/rust-lang/crates.io-index" 1621 - checksum = "ffdf9f34f1447443d37393cc6c2b8313aebddcd96906caf34e54c68d8e57d7bd" 1622 - dependencies = [ 1623 - "typenum", 1624 - ] 1625 - 1626 - [[package]] 1627 - name = "generic-array" 1628 - version = "0.14.7" 1629 - source = "registry+https://github.com/rust-lang/crates.io-index" 1630 - checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 1631 - dependencies = [ 1632 - "typenum", 1633 - "version_check", 1634 - ] 1635 - 1636 - [[package]] 1637 - name = "getrandom" 1638 - version = "0.1.16" 1639 - source = "registry+https://github.com/rust-lang/crates.io-index" 1640 - checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" 1641 - dependencies = [ 1642 - "cfg-if 1.0.0", 1643 - "libc", 1644 - "wasi 0.9.0+wasi-snapshot-preview1", 1645 - ] 1646 - 1647 - [[package]] 1648 - name = "getrandom" 1649 - version = "0.2.9" 1650 - source = "registry+https://github.com/rust-lang/crates.io-index" 1651 - checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4" 1652 - dependencies = [ 1653 - "cfg-if 1.0.0", 1654 - "js-sys", 1655 - "libc", 1656 - "wasi 0.11.0+wasi-snapshot-preview1", 1657 - "wasm-bindgen", 1658 - ] 1659 - 1660 - [[package]] 1661 - name = "ghash" 1662 - version = "0.3.1" 1663 - source = "registry+https://github.com/rust-lang/crates.io-index" 1664 - checksum = "97304e4cd182c3846f7575ced3890c53012ce534ad9114046b0a9e00bb30a375" 1665 - dependencies = [ 1666 - "opaque-debug 0.3.0", 1667 - "polyval", 1668 - ] 1669 - 1670 - [[package]] 1671 - name = "git2" 1672 - version = "0.13.25" 1673 - source = "registry+https://github.com/rust-lang/crates.io-index" 1674 - checksum = "f29229cc1b24c0e6062f6e742aa3e256492a5323365e5ed3413599f8a5eff7d6" 1675 - dependencies = [ 1676 - "bitflags", 1677 - "libc", 1678 - "libgit2-sys", 1679 - "log", 1680 - "openssl-probe", 1681 - "openssl-sys", 1682 - "url", 1683 - ] 1684 - 1685 - [[package]] 1686 - name = "gloo" 1687 - version = "0.8.0" 1688 - source = "registry+https://github.com/rust-lang/crates.io-index" 1689 - checksum = "3a4bef6b277b3ab073253d4bca60761240cf8d6998f4bd142211957b69a61b20" 1690 - dependencies = [ 1691 - "gloo-console", 1692 - "gloo-dialogs", 1693 - "gloo-events", 1694 - "gloo-file", 1695 - "gloo-history", 1696 - "gloo-net", 1697 - "gloo-render", 1698 - "gloo-storage", 1699 - "gloo-timers", 1700 - "gloo-utils", 1701 - "gloo-worker", 1702 - ] 1703 - 1704 - [[package]] 1705 - name = "gloo-console" 1706 - version = "0.2.3" 1707 - source = "registry+https://github.com/rust-lang/crates.io-index" 1708 - checksum = "82b7ce3c05debe147233596904981848862b068862e9ec3e34be446077190d3f" 1709 - dependencies = [ 1710 - "gloo-utils", 1711 - "js-sys", 1712 - "serde", 1713 - "wasm-bindgen", 1714 - "web-sys", 1715 - ] 1716 - 1717 - [[package]] 1718 - name = "gloo-dialogs" 1719 - version = "0.1.1" 1720 - source = "registry+https://github.com/rust-lang/crates.io-index" 1721 - checksum = "67062364ac72d27f08445a46cab428188e2e224ec9e37efdba48ae8c289002e6" 1722 - dependencies = [ 1723 - "wasm-bindgen", 1724 - "web-sys", 1725 - ] 1726 - 1727 - [[package]] 1728 - name = "gloo-events" 1729 - version = "0.1.2" 1730 - source = "registry+https://github.com/rust-lang/crates.io-index" 1731 - checksum = "68b107f8abed8105e4182de63845afcc7b69c098b7852a813ea7462a320992fc" 1732 - dependencies = [ 1733 - "wasm-bindgen", 1734 - "web-sys", 1735 - ] 1736 - 1737 - [[package]] 1738 - name = "gloo-file" 1739 - version = "0.2.3" 1740 - source = "registry+https://github.com/rust-lang/crates.io-index" 1741 - checksum = "a8d5564e570a38b43d78bdc063374a0c3098c4f0d64005b12f9bbe87e869b6d7" 1742 - dependencies = [ 1743 - "futures-channel", 1744 - "gloo-events", 1745 - "js-sys", 1746 - "wasm-bindgen", 1747 - "web-sys", 1748 - ] 1749 - 1750 - [[package]] 1751 - name = "gloo-history" 1752 - version = "0.1.3" 1753 - source = "registry+https://github.com/rust-lang/crates.io-index" 1754 - checksum = "dd451019e0b7a2b8a7a7b23e74916601abf1135c54664e57ff71dcc26dfcdeb7" 1755 - dependencies = [ 1756 - "gloo-events", 1757 - "gloo-utils", 1758 - "serde", 1759 - "serde-wasm-bindgen", 1760 - "serde_urlencoded", 1761 - "thiserror", 1762 - "wasm-bindgen", 1763 - "web-sys", 1764 - ] 1765 - 1766 - [[package]] 1767 - name = "gloo-net" 1768 - version = "0.2.6" 1769 - source = "registry+https://github.com/rust-lang/crates.io-index" 1770 - checksum = "9902a044653b26b99f7e3693a42f171312d9be8b26b5697bd1e43ad1f8a35e10" 1771 - dependencies = [ 1772 - "futures-channel", 1773 - "futures-core", 1774 - "futures-sink", 1775 - "gloo-utils", 1776 - "js-sys", 1777 - "pin-project", 1778 - "serde", 1779 - "serde_json", 1780 - "thiserror", 1781 - "wasm-bindgen", 1782 - "wasm-bindgen-futures", 1783 - "web-sys", 1784 - ] 1785 - 1786 - [[package]] 1787 - name = "gloo-render" 1788 - version = "0.1.1" 1789 - source = "registry+https://github.com/rust-lang/crates.io-index" 1790 - checksum = "2fd9306aef67cfd4449823aadcd14e3958e0800aa2183955a309112a84ec7764" 1791 - dependencies = [ 1792 - "wasm-bindgen", 1793 - "web-sys", 1794 - ] 1795 - 1796 - [[package]] 1797 - name = "gloo-storage" 1798 - version = "0.2.2" 1799 - source = "registry+https://github.com/rust-lang/crates.io-index" 1800 - checksum = "5d6ab60bf5dbfd6f0ed1f7843da31b41010515c745735c970e821945ca91e480" 1801 - dependencies = [ 1802 - "gloo-utils", 1803 - "js-sys", 1804 - "serde", 1805 - "serde_json", 1806 - "thiserror", 1807 - "wasm-bindgen", 1808 - "web-sys", 1809 - ] 1810 - 1811 - [[package]] 1812 - name = "gloo-timers" 1813 - version = "0.2.6" 1814 - source = "registry+https://github.com/rust-lang/crates.io-index" 1815 - checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c" 1816 - dependencies = [ 1817 - "futures-channel", 1818 - "futures-core", 1819 - "js-sys", 1820 - "wasm-bindgen", 1821 - ] 1822 - 1823 - [[package]] 1824 - name = "gloo-utils" 1825 - version = "0.1.6" 1826 - source = "registry+https://github.com/rust-lang/crates.io-index" 1827 - checksum = "a8e8fc851e9c7b9852508bc6e3f690f452f474417e8545ec9857b7f7377036b5" 1828 - dependencies = [ 1829 - "js-sys", 1830 - "serde", 1831 - "serde_json", 1832 - "wasm-bindgen", 1833 - "web-sys", 1834 - ] 1835 - 1836 - [[package]] 1837 - name = "gloo-worker" 1838 - version = "0.2.1" 1839 - source = "registry+https://github.com/rust-lang/crates.io-index" 1840 - checksum = "13471584da78061a28306d1359dd0178d8d6fc1c7c80e5e35d27260346e0516a" 1841 - dependencies = [ 1842 - "anymap2", 1843 - "bincode", 1844 - "gloo-console", 1845 - "gloo-utils", 1846 - "js-sys", 1847 - "serde", 1848 - "wasm-bindgen", 1849 - "wasm-bindgen-futures", 1850 - "web-sys", 1851 - ] 1852 - 1853 - [[package]] 1854 - name = "h2" 1855 - version = "0.3.19" 1856 - source = "registry+https://github.com/rust-lang/crates.io-index" 1857 - checksum = "d357c7ae988e7d2182f7d7871d0b963962420b0678b0997ce7de72001aeab782" 1858 - dependencies = [ 1859 - "bytes", 1860 - "fnv", 1861 - "futures-core", 1862 - "futures-sink", 1863 - "futures-util", 1864 - "http", 1865 - "indexmap", 1866 - "slab", 1867 - "tokio", 1868 - "tokio-util", 1869 - "tracing", 1870 - ] 1871 - 1872 - [[package]] 1873 - name = "half" 1874 - version = "1.8.2" 1875 - source = "registry+https://github.com/rust-lang/crates.io-index" 1876 - checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" 1877 - 1878 - [[package]] 1879 - name = "hashbrown" 1880 - version = "0.12.3" 1881 - source = "registry+https://github.com/rust-lang/crates.io-index" 1882 - checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 1883 - dependencies = [ 1884 - "ahash 0.7.6", 1885 - "serde", 1886 - ] 1887 - 1888 - [[package]] 1889 - name = "hashbrown" 1890 - version = "0.13.2" 1891 - source = "registry+https://github.com/rust-lang/crates.io-index" 1892 - checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" 1893 - dependencies = [ 1894 - "ahash 0.8.3", 1895 - ] 1896 - 1897 - [[package]] 1898 - name = "hashlink" 1899 - version = "0.8.2" 1900 - source = "registry+https://github.com/rust-lang/crates.io-index" 1901 - checksum = "0761a1b9491c4f2e3d66aa0f62d0fba0af9a0e2852e4d48ea506632a4b56e6aa" 1902 - dependencies = [ 1903 - "hashbrown 0.13.2", 1904 - ] 1905 - 1906 - [[package]] 1907 - name = "heck" 1908 - version = "0.4.1" 1909 - source = "registry+https://github.com/rust-lang/crates.io-index" 1910 - checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 1911 - 1912 - [[package]] 1913 - name = "hermit-abi" 1914 - version = "0.1.19" 1915 - source = "registry+https://github.com/rust-lang/crates.io-index" 1916 - checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" 1917 - dependencies = [ 1918 - "libc", 1919 - ] 1920 - 1921 - [[package]] 1922 - name = "hermit-abi" 1923 - version = "0.2.6" 1924 - source = "registry+https://github.com/rust-lang/crates.io-index" 1925 - checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" 1926 - dependencies = [ 1927 - "libc", 1928 - ] 1929 - 1930 - [[package]] 1931 - name = "hermit-abi" 1932 - version = "0.3.1" 1933 - source = "registry+https://github.com/rust-lang/crates.io-index" 1934 - checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" 1935 - 1936 - [[package]] 1937 - name = "hex" 1938 - version = "0.4.3" 1939 - source = "registry+https://github.com/rust-lang/crates.io-index" 1940 - checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 1941 - 1942 - [[package]] 1943 - name = "hkdf" 1944 - version = "0.10.0" 1945 - source = "registry+https://github.com/rust-lang/crates.io-index" 1946 - checksum = "51ab2f639c231793c5f6114bdb9bbe50a7dbbfcd7c7c6bd8475dec2d991e964f" 1947 - dependencies = [ 1948 - "digest 0.9.0", 1949 - "hmac 0.10.1", 1950 - ] 1951 - 1952 - [[package]] 1953 - name = "hmac" 1954 - version = "0.8.1" 1955 - source = "registry+https://github.com/rust-lang/crates.io-index" 1956 - checksum = "126888268dcc288495a26bf004b38c5fdbb31682f992c84ceb046a1f0fe38840" 1957 - dependencies = [ 1958 - "crypto-mac 0.8.0", 1959 - "digest 0.9.0", 1960 - ] 1961 - 1962 - [[package]] 1963 - name = "hmac" 1964 - version = "0.10.1" 1965 - source = "registry+https://github.com/rust-lang/crates.io-index" 1966 - checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15" 1967 - dependencies = [ 1968 - "crypto-mac 0.10.1", 1969 - "digest 0.9.0", 1970 - ] 1971 - 1972 - [[package]] 1973 - name = "http" 1974 - version = "0.2.9" 1975 - source = "registry+https://github.com/rust-lang/crates.io-index" 1976 - checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482" 1977 - dependencies = [ 1978 - "bytes", 1979 - "fnv", 1980 - "itoa", 1981 - ] 1982 - 1983 - [[package]] 1984 - name = "http-body" 1985 - version = "0.4.5" 1986 - source = "registry+https://github.com/rust-lang/crates.io-index" 1987 - checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 1988 - dependencies = [ 1989 - "bytes", 1990 - "http", 1991 - "pin-project-lite 0.2.9", 1992 - ] 1993 - 1994 - [[package]] 1995 - name = "http-client" 1996 - version = "6.5.3" 1997 - source = "registry+https://github.com/rust-lang/crates.io-index" 1998 - checksum = "1947510dc91e2bf586ea5ffb412caad7673264e14bb39fb9078da114a94ce1a5" 1999 - dependencies = [ 2000 - "async-trait", 2001 - "cfg-if 1.0.0", 2002 - "http-types", 2003 - "log", 2004 - ] 2005 - 2006 - [[package]] 2007 - name = "http-types" 2008 - version = "2.12.0" 2009 - source = "registry+https://github.com/rust-lang/crates.io-index" 2010 - checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad" 2011 - dependencies = [ 2012 - "anyhow", 2013 - "async-channel", 2014 - "async-std", 2015 - "base64 0.13.1", 2016 - "cookie 0.14.4", 2017 - "futures-lite", 2018 - "infer", 2019 - "pin-project-lite 0.2.9", 2020 - "rand 0.7.3", 2021 - "serde", 2022 - "serde_json", 2023 - "serde_qs", 2024 - "serde_urlencoded", 2025 - "url", 2026 - ] 2027 - 2028 - [[package]] 2029 - name = "httparse" 2030 - version = "1.8.0" 2031 - source = "registry+https://github.com/rust-lang/crates.io-index" 2032 - checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 2033 - 2034 - [[package]] 2035 - name = "httpdate" 2036 - version = "1.0.2" 2037 - source = "registry+https://github.com/rust-lang/crates.io-index" 2038 - checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421" 2039 - 2040 - [[package]] 2041 - name = "hyper" 2042 - version = "0.14.26" 2043 - source = "registry+https://github.com/rust-lang/crates.io-index" 2044 - checksum = "ab302d72a6f11a3b910431ff93aae7e773078c769f0a3ef15fb9ec692ed147d4" 2045 - dependencies = [ 2046 - "bytes", 2047 - "futures-channel", 2048 - "futures-core", 2049 - "futures-util", 2050 - "h2", 2051 - "http", 2052 - "http-body", 2053 - "httparse", 2054 - "httpdate", 2055 - "itoa", 2056 - "pin-project-lite 0.2.9", 2057 - "socket2", 2058 - "tokio", 2059 - "tower-service", 2060 - "tracing", 2061 - "want", 2062 - ] 2063 - 2064 - [[package]] 2065 - name = "hyper-tls" 2066 - version = "0.5.0" 2067 - source = "registry+https://github.com/rust-lang/crates.io-index" 2068 - checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 2069 - dependencies = [ 2070 - "bytes", 2071 - "hyper", 2072 - "native-tls", 2073 - "tokio", 2074 - "tokio-native-tls", 2075 - ] 2076 - 2077 - [[package]] 2078 - name = "iana-time-zone" 2079 - version = "0.1.56" 2080 - source = "registry+https://github.com/rust-lang/crates.io-index" 2081 - checksum = "0722cd7114b7de04316e7ea5456a0bbb20e4adb46fd27a3697adb812cff0f37c" 2082 - dependencies = [ 2083 - "android_system_properties", 2084 - "core-foundation-sys", 2085 - "iana-time-zone-haiku", 2086 - "js-sys", 2087 - "wasm-bindgen", 2088 - "windows 0.48.0", 2089 - ] 2090 - 2091 - [[package]] 2092 - name = "iana-time-zone-haiku" 2093 - version = "0.1.2" 2094 - source = "registry+https://github.com/rust-lang/crates.io-index" 2095 - checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 2096 - dependencies = [ 2097 - "cc", 2098 - ] 2099 - 2100 - [[package]] 2101 - name = "ident_case" 2102 - version = "1.0.1" 2103 - source = "registry+https://github.com/rust-lang/crates.io-index" 2104 - checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" 2105 - 2106 - [[package]] 2107 - name = "idlset" 2108 - version = "0.2.4" 2109 - source = "registry+https://github.com/rust-lang/crates.io-index" 2110 - checksum = "340756d15be4b22d5e501bad90a9f68fcdc6b9b7d2f6d6afe350645e9839dac6" 2111 - dependencies = [ 2112 - "serde", 2113 - "serde_derive", 2114 - "smallvec", 2115 - ] 2116 - 2117 - [[package]] 2118 - name = "idna" 2119 - version = "0.2.3" 2120 - source = "registry+https://github.com/rust-lang/crates.io-index" 2121 - checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8" 2122 - dependencies = [ 2123 - "matches", 2124 - "unicode-bidi", 2125 - "unicode-normalization", 2126 - ] 2127 - 2128 - [[package]] 2129 - name = "idna" 2130 - version = "0.3.0" 2131 - source = "registry+https://github.com/rust-lang/crates.io-index" 2132 - checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6" 2133 - dependencies = [ 2134 - "unicode-bidi", 2135 - "unicode-normalization", 2136 - ] 2137 - 2138 - [[package]] 2139 - name = "image" 2140 - version = "0.23.14" 2141 - source = "registry+https://github.com/rust-lang/crates.io-index" 2142 - checksum = "24ffcb7e7244a9bf19d35bf2883b9c080c4ced3c07a9895572178cdb8f13f6a1" 2143 - dependencies = [ 2144 - "bytemuck", 2145 - "byteorder", 2146 - "color_quant", 2147 - "num-iter", 2148 - "num-rational", 2149 - "num-traits", 2150 - ] 2151 - 2152 - [[package]] 2153 - name = "implicit-clone" 2154 - version = "0.3.5" 2155 - source = "registry+https://github.com/rust-lang/crates.io-index" 2156 - checksum = "40fc102e70475c320b185cd18c1e48bba2d7210b63970a4d581ef903e4368ef7" 2157 - dependencies = [ 2158 - "indexmap", 2159 - ] 2160 - 2161 - [[package]] 2162 - name = "indexmap" 2163 - version = "1.9.3" 2164 - source = "registry+https://github.com/rust-lang/crates.io-index" 2165 - checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 2166 - dependencies = [ 2167 - "autocfg", 2168 - "hashbrown 0.12.3", 2169 - ] 2170 - 2171 - [[package]] 2172 - name = "infer" 2173 - version = "0.2.3" 2174 - source = "registry+https://github.com/rust-lang/crates.io-index" 2175 - checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac" 2176 - 2177 - [[package]] 2178 - name = "instant" 2179 - version = "0.1.12" 2180 - source = "registry+https://github.com/rust-lang/crates.io-index" 2181 - checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" 2182 - dependencies = [ 2183 - "cfg-if 1.0.0", 2184 - ] 2185 - 2186 - [[package]] 2187 - name = "io-lifetimes" 2188 - version = "1.0.11" 2189 - source = "registry+https://github.com/rust-lang/crates.io-index" 2190 - checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2" 2191 - dependencies = [ 2192 - "hermit-abi 0.3.1", 2193 - "libc", 2194 - "windows-sys 0.48.0", 2195 - ] 2196 - 2197 - [[package]] 2198 - name = "ipnet" 2199 - version = "2.7.2" 2200 - source = "registry+https://github.com/rust-lang/crates.io-index" 2201 - checksum = "12b6ee2129af8d4fb011108c73d99a1b83a85977f23b82460c0ae2e25bb4b57f" 2202 - 2203 - [[package]] 2204 - name = "itertools" 2205 - version = "0.10.5" 2206 - source = "registry+https://github.com/rust-lang/crates.io-index" 2207 - checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" 2208 - dependencies = [ 2209 - "either", 2210 - ] 2211 - 2212 - [[package]] 2213 - name = "itoa" 2214 - version = "1.0.6" 2215 - source = "registry+https://github.com/rust-lang/crates.io-index" 2216 - checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" 2217 - 2218 - [[package]] 2219 - name = "jobserver" 2220 - version = "0.1.26" 2221 - source = "registry+https://github.com/rust-lang/crates.io-index" 2222 - checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2" 2223 - dependencies = [ 2224 - "libc", 2225 - ] 2226 - 2227 - [[package]] 2228 - name = "js-sys" 2229 - version = "0.3.63" 2230 - source = "registry+https://github.com/rust-lang/crates.io-index" 2231 - checksum = "2f37a4a5928311ac501dee68b3c7613a1037d0edb30c8e5427bd832d55d1b790" 2232 - dependencies = [ 2233 - "wasm-bindgen", 2234 - ] 2235 - 2236 - [[package]] 2237 - name = "kanidm-ipa-sync" 2238 - version = "1.1.0-alpha.12" 2239 - dependencies = [ 2240 - "base64urlsafedata", 2241 - "chrono", 2242 - "clap", 2243 - "clap_complete", 2244 - "cron", 2245 - "kanidm_client", 2246 - "kanidm_proto", 2247 - "kanidmd_lib", 2248 - "ldap3_client", 2249 - "serde", 2250 - "serde_json", 2251 - "tokio", 2252 - "toml", 2253 - "tracing", 2254 - "tracing-subscriber", 2255 - "url", 2256 - "users", 2257 - "uuid", 2258 - ] 2259 - 2260 - [[package]] 2261 - name = "kanidm_client" 2262 - version = "1.1.0-alpha.12" 2263 - dependencies = [ 2264 - "kanidm_proto", 2265 - "reqwest", 2266 - "serde", 2267 - "serde_json", 2268 - "time 0.2.27", 2269 - "tokio", 2270 - "toml", 2271 - "tracing", 2272 - "url", 2273 - "uuid", 2274 - "webauthn-rs-proto", 2275 - ] 2276 - 2277 - [[package]] 2278 - name = "kanidm_lib_crypto" 2279 - version = "0.1.0" 2280 - dependencies = [ 2281 - "base64 0.21.1", 2282 - "base64urlsafedata", 2283 - "hex", 2284 - "kanidm_proto", 2285 - "openssl", 2286 - "openssl-sys", 2287 - "rand 0.8.5", 2288 - "serde", 2289 - "sketching", 2290 - "tracing", 2291 - ] 2292 - 2293 - [[package]] 2294 - name = "kanidm_lib_file_permissions" 2295 - version = "0.1.0" 2296 - dependencies = [ 2297 - "users", 2298 - "whoami", 2299 - ] 2300 - 2301 - [[package]] 2302 - name = "kanidm_proto" 2303 - version = "1.1.0-alpha.12" 2304 - dependencies = [ 2305 - "base32", 2306 - "base64urlsafedata", 2307 - "last-git-commit", 2308 - "num_enum", 2309 - "scim_proto", 2310 - "serde", 2311 - "serde_json", 2312 - "time 0.2.27", 2313 - "tracing", 2314 - "url", 2315 - "urlencoding", 2316 - "uuid", 2317 - "webauthn-rs-proto", 2318 - ] 2319 - 2320 - [[package]] 2321 - name = "kanidm_tools" 2322 - version = "1.1.0-alpha.12" 2323 - dependencies = [ 2324 - "clap", 2325 - "clap_complete", 2326 - "compact_jwt", 2327 - "dialoguer", 2328 - "futures-concurrency", 2329 - "kanidm_client", 2330 - "kanidm_proto", 2331 - "libc", 2332 - "qrcode", 2333 - "rpassword 7.2.0", 2334 - "serde", 2335 - "serde_json", 2336 - "shellexpand", 2337 - "time 0.2.27", 2338 - "tokio", 2339 - "tracing", 2340 - "tracing-subscriber", 2341 - "url", 2342 - "uuid", 2343 - "webauthn-authenticator-rs", 2344 - "zxcvbn", 2345 - ] 2346 - 2347 - [[package]] 2348 - name = "kanidm_unix_int" 2349 - version = "1.1.0-alpha.12" 2350 - dependencies = [ 2351 - "bytes", 2352 - "clap", 2353 - "clap_complete", 2354 - "futures", 2355 - "kanidm_client", 2356 - "kanidm_lib_crypto", 2357 - "kanidm_lib_file_permissions", 2358 - "kanidm_proto", 2359 - "kanidmd_core", 2360 - "libc", 2361 - "libsqlite3-sys", 2362 - "lru 0.8.1", 2363 - "profiles", 2364 - "r2d2", 2365 - "r2d2_sqlite", 2366 - "reqwest", 2367 - "rpassword 7.2.0", 2368 - "rusqlite", 2369 - "serde", 2370 - "serde_json", 2371 - "sketching", 2372 - "tokio", 2373 - "tokio-util", 2374 - "toml", 2375 - "tracing", 2376 - "users", 2377 - "walkdir", 2378 - ] 2379 - 2380 - [[package]] 2381 - name = "kanidmd_core" 2382 - version = "1.1.0-alpha.12" 2383 - dependencies = [ 2384 - "async-trait", 2385 - "chrono", 2386 - "compact_jwt", 2387 - "cron", 2388 - "futures-util", 2389 - "http-types", 2390 - "kanidm_proto", 2391 - "kanidmd_lib", 2392 - "ldap3_proto", 2393 - "libc", 2394 - "openssl", 2395 - "profiles", 2396 - "rand 0.8.5", 2397 - "regex", 2398 - "serde", 2399 - "serde_json", 2400 - "sketching", 2401 - "tide", 2402 - "tide-compress", 2403 - "tide-openssl", 2404 - "time 0.2.27", 2405 - "tokio", 2406 - "tokio-openssl", 2407 - "tokio-util", 2408 - "toml", 2409 - "tracing", 2410 - "uuid", 2411 - ] 2412 - 2413 - [[package]] 2414 - name = "kanidmd_lib" 2415 - version = "1.1.0-alpha.12" 2416 - dependencies = [ 2417 - "async-trait", 2418 - "base64 0.21.1", 2419 - "base64urlsafedata", 2420 - "compact_jwt", 2421 - "concread", 2422 - "criterion", 2423 - "dyn-clone", 2424 - "fernet", 2425 - "filetime", 2426 - "futures", 2427 - "futures-util", 2428 - "hashbrown 0.12.3", 2429 - "idlset", 2430 - "kanidm_lib_crypto", 2431 - "kanidm_proto", 2432 - "kanidmd_lib_macros", 2433 - "lazy_static", 2434 - "ldap3_proto", 2435 - "libc", 2436 - "libsqlite3-sys", 2437 - "nonempty", 2438 - "num_enum", 2439 - "openssl", 2440 - "openssl-sys", 2441 - "profiles", 2442 - "r2d2", 2443 - "r2d2_sqlite", 2444 - "rand 0.8.5", 2445 - "regex", 2446 - "rusqlite", 2447 - "serde", 2448 - "serde_cbor_2", 2449 - "serde_json", 2450 - "sketching", 2451 - "smartstring", 2452 - "smolset", 2453 - "sshkeys", 2454 - "tide", 2455 - "time 0.2.27", 2456 - "tokio", 2457 - "tokio-util", 2458 - "toml", 2459 - "touch", 2460 - "tracing", 2461 - "url", 2462 - "urlencoding", 2463 - "users", 2464 - "uuid", 2465 - "webauthn-authenticator-rs", 2466 - "webauthn-rs", 2467 - "webauthn-rs-core", 2468 - "whoami", 2469 - "zxcvbn", 2470 - ] 2471 - 2472 - [[package]] 2473 - name = "kanidmd_lib_macros" 2474 - version = "0.1.0" 2475 - dependencies = [ 2476 - "proc-macro2", 2477 - "quote", 2478 - "syn 2.0.16", 2479 - ] 2480 - 2481 - [[package]] 2482 - name = "kanidmd_testkit" 2483 - version = "1.1.0-alpha.12" 2484 - dependencies = [ 2485 - "compact_jwt", 2486 - "futures", 2487 - "kanidm_client", 2488 - "kanidm_proto", 2489 - "kanidmd_core", 2490 - "kanidmd_lib", 2491 - "oauth2", 2492 - "profiles", 2493 - "reqwest", 2494 - "serde_json", 2495 - "sketching", 2496 - "testkit-macros", 2497 - "time 0.2.27", 2498 - "tokio", 2499 - "tracing", 2500 - "url", 2501 - "webauthn-authenticator-rs", 2502 - ] 2503 - 2504 - [[package]] 2505 - name = "kanidmd_web_ui" 2506 - version = "1.1.0-alpha.12" 2507 - dependencies = [ 2508 - "compact_jwt", 2509 - "gloo", 2510 - "gloo-net", 2511 - "js-sys", 2512 - "kanidm_proto", 2513 - "qrcode", 2514 - "serde", 2515 - "serde-wasm-bindgen", 2516 - "serde_json", 2517 - "time 0.2.27", 2518 - "url", 2519 - "uuid", 2520 - "wasm-bindgen", 2521 - "wasm-bindgen-futures", 2522 - "wasm-bindgen-test", 2523 - "web-sys", 2524 - "yew", 2525 - "yew-router", 2526 - ] 2527 - 2528 - [[package]] 2529 - name = "kv-log-macro" 2530 - version = "1.0.7" 2531 - source = "registry+https://github.com/rust-lang/crates.io-index" 2532 - checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" 2533 - dependencies = [ 2534 - "log", 2535 - ] 2536 - 2537 - [[package]] 2538 - name = "last-git-commit" 2539 - version = "0.2.0" 2540 - source = "registry+https://github.com/rust-lang/crates.io-index" 2541 - checksum = "9f2e5243385b2ea0443d79fd6f5ea97b0509f2571e8f39e99d1ead2bcc1c89c0" 2542 - dependencies = [ 2543 - "git2", 2544 - ] 2545 - 2546 - [[package]] 2547 - name = "lazy_static" 2548 - version = "1.4.0" 2549 - source = "registry+https://github.com/rust-lang/crates.io-index" 2550 - checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 2551 - 2552 - [[package]] 2553 - name = "lber" 2554 - version = "0.4.0" 2555 - source = "registry+https://github.com/rust-lang/crates.io-index" 2556 - checksum = "b5d85f5e00e12cb50c70c3b1c1f0daff6546eb4c608b44d0a990e38a539e0446" 2557 - dependencies = [ 2558 - "bytes", 2559 - "nom", 2560 - ] 2561 - 2562 - [[package]] 2563 - name = "ldap3_client" 2564 - version = "0.3.2" 2565 - source = "registry+https://github.com/rust-lang/crates.io-index" 2566 - checksum = "0236f3aac28f4f79929664cd635f310fa7469f17b67d45c85848a0f3ca516d53" 2567 - dependencies = [ 2568 - "base64 0.13.1", 2569 - "base64urlsafedata", 2570 - "futures-util", 2571 - "ldap3_proto", 2572 - "openssl", 2573 - "serde", 2574 - "tokio", 2575 - "tokio-openssl", 2576 - "tokio-util", 2577 - "tracing", 2578 - "url", 2579 - "uuid", 2580 - ] 2581 - 2582 - [[package]] 2583 - name = "ldap3_proto" 2584 - version = "0.3.2" 2585 - source = "registry+https://github.com/rust-lang/crates.io-index" 2586 - checksum = "57ea4b099d9f84c8424a56e9b361f5f9aeae9d87ca9bd683c54a6a27c8676597" 2587 - dependencies = [ 2588 - "bytes", 2589 - "lber", 2590 - "nom", 2591 - "peg", 2592 - "tokio-util", 2593 - "tracing", 2594 - "uuid", 2595 - ] 2596 - 2597 - [[package]] 2598 - name = "libc" 2599 - version = "0.2.144" 2600 - source = "registry+https://github.com/rust-lang/crates.io-index" 2601 - checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" 2602 - 2603 - [[package]] 2604 - name = "libgit2-sys" 2605 - version = "0.12.26+1.3.0" 2606 - source = "registry+https://github.com/rust-lang/crates.io-index" 2607 - checksum = "19e1c899248e606fbfe68dcb31d8b0176ebab833b103824af31bddf4b7457494" 2608 - dependencies = [ 2609 - "cc", 2610 - "libc", 2611 - "libssh2-sys", 2612 - "libz-sys", 2613 - "openssl-sys", 2614 - "pkg-config", 2615 - ] 2616 - 2617 - [[package]] 2618 - name = "libnss" 2619 - version = "0.4.0" 2620 - source = "registry+https://github.com/rust-lang/crates.io-index" 2621 - checksum = "48b67ef5ebef2a035ac8106c9b71176b6246be2a580ff4ee94bb80919e55b34c" 2622 - dependencies = [ 2623 - "lazy_static", 2624 - "libc", 2625 - "paste 0.1.18", 2626 - ] 2627 - 2628 - [[package]] 2629 - name = "libsqlite3-sys" 2630 - version = "0.25.2" 2631 - source = "registry+https://github.com/rust-lang/crates.io-index" 2632 - checksum = "29f835d03d717946d28b1d1ed632eb6f0e24a299388ee623d0c23118d3e8a7fa" 2633 - dependencies = [ 2634 - "cc", 2635 - "pkg-config", 2636 - "vcpkg", 2637 - ] 2638 - 2639 - [[package]] 2640 - name = "libssh2-sys" 2641 - version = "0.2.23" 2642 - source = "registry+https://github.com/rust-lang/crates.io-index" 2643 - checksum = "b094a36eb4b8b8c8a7b4b8ae43b2944502be3e59cd87687595cf6b0a71b3f4ca" 2644 - dependencies = [ 2645 - "cc", 2646 - "libc", 2647 - "libz-sys", 2648 - "openssl-sys", 2649 - "pkg-config", 2650 - "vcpkg", 2651 - ] 2652 - 2653 - [[package]] 2654 - name = "libudev" 2655 - version = "0.2.0" 2656 - source = "registry+https://github.com/rust-lang/crates.io-index" 2657 - checksum = "ea626d3bdf40a1c5aee3bcd4f40826970cae8d80a8fec934c82a63840094dcfe" 2658 - dependencies = [ 2659 - "libc", 2660 - "libudev-sys", 2661 - ] 2662 - 2663 - [[package]] 2664 - name = "libudev-sys" 2665 - version = "0.1.4" 2666 - source = "registry+https://github.com/rust-lang/crates.io-index" 2667 - checksum = "3c8469b4a23b962c1396b9b451dda50ef5b283e8dd309d69033475fa9b334324" 2668 - dependencies = [ 2669 - "libc", 2670 - "pkg-config", 2671 - ] 2672 - 2673 - [[package]] 2674 - name = "libz-sys" 2675 - version = "1.1.9" 2676 - source = "registry+https://github.com/rust-lang/crates.io-index" 2677 - checksum = "56ee889ecc9568871456d42f603d6a0ce59ff328d291063a45cbdf0036baf6db" 2678 - dependencies = [ 2679 - "cc", 2680 - "libc", 2681 - "pkg-config", 2682 - "vcpkg", 2683 - ] 2684 - 2685 - [[package]] 2686 - name = "linux-raw-sys" 2687 - version = "0.3.8" 2688 - source = "registry+https://github.com/rust-lang/crates.io-index" 2689 - checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" 2690 - 2691 - [[package]] 2692 - name = "lock_api" 2693 - version = "0.4.9" 2694 - source = "registry+https://github.com/rust-lang/crates.io-index" 2695 - checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df" 2696 - dependencies = [ 2697 - "autocfg", 2698 - "scopeguard", 2699 - ] 2700 - 2701 - [[package]] 2702 - name = "log" 2703 - version = "0.4.17" 2704 - source = "registry+https://github.com/rust-lang/crates.io-index" 2705 - checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" 2706 - dependencies = [ 2707 - "cfg-if 1.0.0", 2708 - "serde", 2709 - "value-bag", 2710 - ] 2711 - 2712 - [[package]] 2713 - name = "lru" 2714 - version = "0.7.8" 2715 - source = "registry+https://github.com/rust-lang/crates.io-index" 2716 - checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" 2717 - dependencies = [ 2718 - "hashbrown 0.12.3", 2719 - ] 2720 - 2721 - [[package]] 2722 - name = "lru" 2723 - version = "0.8.1" 2724 - source = "registry+https://github.com/rust-lang/crates.io-index" 2725 - checksum = "b6e8aaa3f231bb4bd57b84b2d5dc3ae7f350265df8aa96492e0bc394a1571909" 2726 - dependencies = [ 2727 - "hashbrown 0.12.3", 2728 - ] 2729 - 2730 - [[package]] 2731 - name = "matchers" 2732 - version = "0.1.0" 2733 - source = "registry+https://github.com/rust-lang/crates.io-index" 2734 - checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 2735 - dependencies = [ 2736 - "regex-automata", 2737 - ] 2738 - 2739 - [[package]] 2740 - name = "matches" 2741 - version = "0.1.10" 2742 - source = "registry+https://github.com/rust-lang/crates.io-index" 2743 - checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" 2744 - 2745 - [[package]] 2746 - name = "mathru" 2747 - version = "0.13.0" 2748 - source = "registry+https://github.com/rust-lang/crates.io-index" 2749 - checksum = "9a42bf938e4c9a6ad581cf528d5606eb50c5458ac759ca23719291e2f6499bec" 2750 - dependencies = [ 2751 - "rand 0.8.5", 2752 - ] 2753 - 2754 - [[package]] 2755 - name = "memchr" 2756 - version = "2.5.0" 2757 - source = "registry+https://github.com/rust-lang/crates.io-index" 2758 - checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" 2759 - 2760 - [[package]] 2761 - name = "memoffset" 2762 - version = "0.6.5" 2763 - source = "registry+https://github.com/rust-lang/crates.io-index" 2764 - checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce" 2765 - dependencies = [ 2766 - "autocfg", 2767 - ] 2768 - 2769 - [[package]] 2770 - name = "memoffset" 2771 - version = "0.8.0" 2772 - source = "registry+https://github.com/rust-lang/crates.io-index" 2773 - checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1" 2774 - dependencies = [ 2775 - "autocfg", 2776 - ] 2777 - 2778 - [[package]] 2779 - name = "mime" 2780 - version = "0.3.17" 2781 - source = "registry+https://github.com/rust-lang/crates.io-index" 2782 - checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 2783 - 2784 - [[package]] 2785 - name = "minimal-lexical" 2786 - version = "0.2.1" 2787 - source = "registry+https://github.com/rust-lang/crates.io-index" 2788 - checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 2789 - 2790 - [[package]] 2791 - name = "miniz_oxide" 2792 - version = "0.7.1" 2793 - source = "registry+https://github.com/rust-lang/crates.io-index" 2794 - checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 2795 - dependencies = [ 2796 - "adler", 2797 - ] 2798 - 2799 - [[package]] 2800 - name = "mio" 2801 - version = "0.8.6" 2802 - source = "registry+https://github.com/rust-lang/crates.io-index" 2803 - checksum = "5b9d9a46eff5b4ff64b45a9e316a6d1e0bc719ef429cbec4dc630684212bfdf9" 2804 - dependencies = [ 2805 - "libc", 2806 - "log", 2807 - "wasi 0.11.0+wasi-snapshot-preview1", 2808 - "windows-sys 0.45.0", 2809 - ] 2810 - 2811 - [[package]] 2812 - name = "native-tls" 2813 - version = "0.2.11" 2814 - source = "registry+https://github.com/rust-lang/crates.io-index" 2815 - checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 2816 - dependencies = [ 2817 - "lazy_static", 2818 - "libc", 2819 - "log", 2820 - "openssl", 2821 - "openssl-probe", 2822 - "openssl-sys", 2823 - "schannel", 2824 - "security-framework", 2825 - "security-framework-sys", 2826 - "tempfile", 2827 - ] 2828 - 2829 - [[package]] 2830 - name = "nom" 2831 - version = "7.1.3" 2832 - source = "registry+https://github.com/rust-lang/crates.io-index" 2833 - checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 2834 - dependencies = [ 2835 - "memchr", 2836 - "minimal-lexical", 2837 - ] 2838 - 2839 - [[package]] 2840 - name = "nonempty" 2841 - version = "0.8.1" 2842 - source = "registry+https://github.com/rust-lang/crates.io-index" 2843 - checksum = "aeaf4ad7403de93e699c191202f017118df734d3850b01e13a3a8b2e6953d3c9" 2844 - dependencies = [ 2845 - "serde", 2846 - ] 2847 - 2848 - [[package]] 2849 - name = "nss_kanidm" 2850 - version = "1.1.0-alpha.12" 2851 - dependencies = [ 2852 - "kanidm_unix_int", 2853 - "lazy_static", 2854 - "libc", 2855 - "libnss", 2856 - "paste 1.0.12", 2857 - ] 2858 - 2859 - [[package]] 2860 - name = "nu-ansi-term" 2861 - version = "0.46.0" 2862 - source = "registry+https://github.com/rust-lang/crates.io-index" 2863 - checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 2864 - dependencies = [ 2865 - "overload", 2866 - "winapi", 2867 - ] 2868 - 2869 - [[package]] 2870 - name = "num-bigint" 2871 - version = "0.4.3" 2872 - source = "registry+https://github.com/rust-lang/crates.io-index" 2873 - checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f" 2874 - dependencies = [ 2875 - "autocfg", 2876 - "num-integer", 2877 - "num-traits", 2878 - ] 2879 - 2880 - [[package]] 2881 - name = "num-integer" 2882 - version = "0.1.45" 2883 - source = "registry+https://github.com/rust-lang/crates.io-index" 2884 - checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" 2885 - dependencies = [ 2886 - "autocfg", 2887 - "num-traits", 2888 - ] 2889 - 2890 - [[package]] 2891 - name = "num-iter" 2892 - version = "0.1.43" 2893 - source = "registry+https://github.com/rust-lang/crates.io-index" 2894 - checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" 2895 - dependencies = [ 2896 - "autocfg", 2897 - "num-integer", 2898 - "num-traits", 2899 - ] 2900 - 2901 - [[package]] 2902 - name = "num-rational" 2903 - version = "0.3.2" 2904 - source = "registry+https://github.com/rust-lang/crates.io-index" 2905 - checksum = "12ac428b1cb17fce6f731001d307d351ec70a6d202fc2e60f7d4c5e42d8f4f07" 2906 - dependencies = [ 2907 - "autocfg", 2908 - "num-integer", 2909 - "num-traits", 2910 - ] 2911 - 2912 - [[package]] 2913 - name = "num-traits" 2914 - version = "0.2.15" 2915 - source = "registry+https://github.com/rust-lang/crates.io-index" 2916 - checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd" 2917 - dependencies = [ 2918 - "autocfg", 2919 - ] 2920 - 2921 - [[package]] 2922 - name = "num_cpus" 2923 - version = "1.15.0" 2924 - source = "registry+https://github.com/rust-lang/crates.io-index" 2925 - checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" 2926 - dependencies = [ 2927 - "hermit-abi 0.2.6", 2928 - "libc", 2929 - ] 2930 - 2931 - [[package]] 2932 - name = "num_enum" 2933 - version = "0.5.11" 2934 - source = "registry+https://github.com/rust-lang/crates.io-index" 2935 - checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9" 2936 - dependencies = [ 2937 - "num_enum_derive", 2938 - ] 2939 - 2940 - [[package]] 2941 - name = "num_enum_derive" 2942 - version = "0.5.11" 2943 - source = "registry+https://github.com/rust-lang/crates.io-index" 2944 - checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799" 2945 - dependencies = [ 2946 - "proc-macro-crate", 2947 - "proc-macro2", 2948 - "quote", 2949 - "syn 1.0.109", 2950 - ] 2951 - 2952 - [[package]] 2953 - name = "oauth2" 2954 - version = "4.4.0" 2955 - source = "registry+https://github.com/rust-lang/crates.io-index" 2956 - checksum = "50df55a3cc0374df91ef8da8741542d9e0b9e6581481ed1cffe84f64d2f5fc3d" 2957 - dependencies = [ 2958 - "base64 0.13.1", 2959 - "chrono", 2960 - "getrandom 0.2.9", 2961 - "http", 2962 - "rand 0.8.5", 2963 - "serde", 2964 - "serde_json", 2965 - "serde_path_to_error", 2966 - "sha2 0.10.6", 2967 - "thiserror", 2968 - "url", 2969 - ] 2970 - 2971 - [[package]] 2972 - name = "oid-registry" 2973 - version = "0.4.0" 2974 - source = "registry+https://github.com/rust-lang/crates.io-index" 2975 - checksum = "38e20717fa0541f39bd146692035c37bedfa532b3e5071b35761082407546b2a" 2976 - dependencies = [ 2977 - "asn1-rs", 2978 - ] 2979 - 2980 - [[package]] 2981 - name = "once_cell" 2982 - version = "1.17.1" 2983 - source = "registry+https://github.com/rust-lang/crates.io-index" 2984 - checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3" 2985 - 2986 - [[package]] 2987 - name = "oorandom" 2988 - version = "11.1.3" 2989 - source = "registry+https://github.com/rust-lang/crates.io-index" 2990 - checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575" 2991 - 2992 - [[package]] 2993 - name = "opaque-debug" 2994 - version = "0.2.3" 2995 - source = "registry+https://github.com/rust-lang/crates.io-index" 2996 - checksum = "2839e79665f131bdb5782e51f2c6c9599c133c6098982a54c794358bf432529c" 2997 - 2998 - [[package]] 2999 - name = "opaque-debug" 3000 - version = "0.3.0" 3001 - source = "registry+https://github.com/rust-lang/crates.io-index" 3002 - checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 3003 - 3004 - [[package]] 3005 - name = "openssl" 3006 - version = "0.10.52" 3007 - source = "registry+https://github.com/rust-lang/crates.io-index" 3008 - checksum = "01b8574602df80f7b85fdfc5392fa884a4e3b3f4f35402c070ab34c3d3f78d56" 3009 - dependencies = [ 3010 - "bitflags", 3011 - "cfg-if 1.0.0", 3012 - "foreign-types", 3013 - "libc", 3014 - "once_cell", 3015 - "openssl-macros", 3016 - "openssl-sys", 3017 - ] 3018 - 3019 - [[package]] 3020 - name = "openssl-macros" 3021 - version = "0.1.1" 3022 - source = "registry+https://github.com/rust-lang/crates.io-index" 3023 - checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 3024 - dependencies = [ 3025 - "proc-macro2", 3026 - "quote", 3027 - "syn 2.0.16", 3028 - ] 3029 - 3030 - [[package]] 3031 - name = "openssl-probe" 3032 - version = "0.1.5" 3033 - source = "registry+https://github.com/rust-lang/crates.io-index" 3034 - checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 3035 - 3036 - [[package]] 3037 - name = "openssl-sys" 3038 - version = "0.9.87" 3039 - source = "registry+https://github.com/rust-lang/crates.io-index" 3040 - checksum = "8e17f59264b2809d77ae94f0e1ebabc434773f370d6ca667bd223ea10e06cc7e" 3041 - dependencies = [ 3042 - "cc", 3043 - "libc", 3044 - "pkg-config", 3045 - "vcpkg", 3046 - ] 3047 - 3048 - [[package]] 3049 - name = "orca" 3050 - version = "1.1.0-alpha.12" 3051 - dependencies = [ 3052 - "clap", 3053 - "crossbeam", 3054 - "csv", 3055 - "dialoguer", 3056 - "futures-util", 3057 - "kanidm_client", 3058 - "kanidm_proto", 3059 - "ldap3_proto", 3060 - "mathru", 3061 - "openssl", 3062 - "profiles", 3063 - "rand 0.8.5", 3064 - "serde", 3065 - "serde_json", 3066 - "tikv-jemallocator", 3067 - "tokio", 3068 - "tokio-openssl", 3069 - "tokio-util", 3070 - "toml", 3071 - "tracing", 3072 - "tracing-subscriber", 3073 - "uuid", 3074 - ] 3075 - 3076 - [[package]] 3077 - name = "os_str_bytes" 3078 - version = "6.5.0" 3079 - source = "registry+https://github.com/rust-lang/crates.io-index" 3080 - checksum = "ceedf44fb00f2d1984b0bc98102627ce622e083e49a5bacdb3e514fa4238e267" 3081 - 3082 - [[package]] 3083 - name = "overload" 3084 - version = "0.1.1" 3085 - source = "registry+https://github.com/rust-lang/crates.io-index" 3086 - checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 3087 - 3088 - [[package]] 3089 - name = "pam_kanidm" 3090 - version = "1.1.0-alpha.12" 3091 - dependencies = [ 3092 - "kanidm_unix_int", 3093 - "libc", 3094 - "pkg-config", 3095 - ] 3096 - 3097 - [[package]] 3098 - name = "parking" 3099 - version = "2.1.0" 3100 - source = "registry+https://github.com/rust-lang/crates.io-index" 3101 - checksum = "14f2252c834a40ed9bb5422029649578e63aa341ac401f74e719dd1afda8394e" 3102 - 3103 - [[package]] 3104 - name = "parking_lot" 3105 - version = "0.12.1" 3106 - source = "registry+https://github.com/rust-lang/crates.io-index" 3107 - checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 3108 - dependencies = [ 3109 - "lock_api", 3110 - "parking_lot_core", 3111 - ] 3112 - 3113 - [[package]] 3114 - name = "parking_lot_core" 3115 - version = "0.9.7" 3116 - source = "registry+https://github.com/rust-lang/crates.io-index" 3117 - checksum = "9069cbb9f99e3a5083476ccb29ceb1de18b9118cafa53e90c9551235de2b9521" 3118 - dependencies = [ 3119 - "cfg-if 1.0.0", 3120 - "libc", 3121 - "redox_syscall 0.2.16", 3122 - "smallvec", 3123 - "windows-sys 0.45.0", 3124 - ] 3125 - 3126 - [[package]] 3127 - name = "paste" 3128 - version = "0.1.18" 3129 - source = "registry+https://github.com/rust-lang/crates.io-index" 3130 - checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880" 3131 - dependencies = [ 3132 - "paste-impl", 3133 - "proc-macro-hack", 3134 - ] 3135 - 3136 - [[package]] 3137 - name = "paste" 3138 - version = "1.0.12" 3139 - source = "registry+https://github.com/rust-lang/crates.io-index" 3140 - checksum = "9f746c4065a8fa3fe23974dd82f15431cc8d40779821001404d10d2e79ca7d79" 3141 - 3142 - [[package]] 3143 - name = "paste-impl" 3144 - version = "0.1.18" 3145 - source = "registry+https://github.com/rust-lang/crates.io-index" 3146 - checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6" 3147 - dependencies = [ 3148 - "proc-macro-hack", 3149 - ] 3150 - 3151 - [[package]] 3152 - name = "peg" 3153 - version = "0.8.1" 3154 - source = "registry+https://github.com/rust-lang/crates.io-index" 3155 - checksum = "a07f2cafdc3babeebc087e499118343442b742cc7c31b4d054682cc598508554" 3156 - dependencies = [ 3157 - "peg-macros", 3158 - "peg-runtime", 3159 - ] 3160 - 3161 - [[package]] 3162 - name = "peg-macros" 3163 - version = "0.8.1" 3164 - source = "registry+https://github.com/rust-lang/crates.io-index" 3165 - checksum = "4a90084dc05cf0428428e3d12399f39faad19b0909f64fb9170c9fdd6d9cd49b" 3166 - dependencies = [ 3167 - "peg-runtime", 3168 - "proc-macro2", 3169 - "quote", 3170 - ] 3171 - 3172 - [[package]] 3173 - name = "peg-runtime" 3174 - version = "0.8.1" 3175 - source = "registry+https://github.com/rust-lang/crates.io-index" 3176 - checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739" 3177 - 3178 - [[package]] 3179 - name = "percent-encoding" 3180 - version = "2.2.0" 3181 - source = "registry+https://github.com/rust-lang/crates.io-index" 3182 - checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e" 3183 - 3184 - [[package]] 3185 - name = "pin-project" 3186 - version = "1.1.0" 3187 - source = "registry+https://github.com/rust-lang/crates.io-index" 3188 - checksum = "c95a7476719eab1e366eaf73d0260af3021184f18177925b07f54b30089ceead" 3189 - dependencies = [ 3190 - "pin-project-internal", 3191 - ] 3192 - 3193 - [[package]] 3194 - name = "pin-project-internal" 3195 - version = "1.1.0" 3196 - source = "registry+https://github.com/rust-lang/crates.io-index" 3197 - checksum = "39407670928234ebc5e6e580247dd567ad73a3578460c5990f9503df207e8f07" 3198 - dependencies = [ 3199 - "proc-macro2", 3200 - "quote", 3201 - "syn 2.0.16", 3202 - ] 3203 - 3204 - [[package]] 3205 - name = "pin-project-lite" 3206 - version = "0.1.12" 3207 - source = "registry+https://github.com/rust-lang/crates.io-index" 3208 - checksum = "257b64915a082f7811703966789728173279bdebb956b143dbcd23f6f970a777" 3209 - 3210 - [[package]] 3211 - name = "pin-project-lite" 3212 - version = "0.2.9" 3213 - source = "registry+https://github.com/rust-lang/crates.io-index" 3214 - checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" 3215 - 3216 - [[package]] 3217 - name = "pin-utils" 3218 - version = "0.1.0" 3219 - source = "registry+https://github.com/rust-lang/crates.io-index" 3220 - checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 3221 - 3222 - [[package]] 3223 - name = "pinned" 3224 - version = "0.1.0" 3225 - source = "registry+https://github.com/rust-lang/crates.io-index" 3226 - checksum = "a829027bd95e54cfe13e3e258a1ae7b645960553fb82b75ff852c29688ee595b" 3227 - dependencies = [ 3228 - "futures", 3229 - "rustversion", 3230 - "thiserror", 3231 - ] 3232 - 3233 - [[package]] 3234 - name = "pkg-config" 3235 - version = "0.3.27" 3236 - source = "registry+https://github.com/rust-lang/crates.io-index" 3237 - checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 3238 - 3239 - [[package]] 3240 - name = "plotters" 3241 - version = "0.3.4" 3242 - source = "registry+https://github.com/rust-lang/crates.io-index" 3243 - checksum = "2538b639e642295546c50fcd545198c9d64ee2a38620a628724a3b266d5fbf97" 3244 - dependencies = [ 3245 - "num-traits", 3246 - "plotters-backend", 3247 - "plotters-svg", 3248 - "wasm-bindgen", 3249 - "web-sys", 3250 - ] 3251 - 3252 - [[package]] 3253 - name = "plotters-backend" 3254 - version = "0.3.4" 3255 - source = "registry+https://github.com/rust-lang/crates.io-index" 3256 - checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142" 3257 - 3258 - [[package]] 3259 - name = "plotters-svg" 3260 - version = "0.3.3" 3261 - source = "registry+https://github.com/rust-lang/crates.io-index" 3262 - checksum = "f9a81d2759aae1dae668f783c308bc5c8ebd191ff4184aaa1b37f65a6ae5a56f" 3263 - dependencies = [ 3264 - "plotters-backend", 3265 - ] 3266 - 3267 - [[package]] 3268 - name = "polling" 3269 - version = "2.8.0" 3270 - source = "registry+https://github.com/rust-lang/crates.io-index" 3271 - checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce" 3272 - dependencies = [ 3273 - "autocfg", 3274 - "bitflags", 3275 - "cfg-if 1.0.0", 3276 - "concurrent-queue", 3277 - "libc", 3278 - "log", 3279 - "pin-project-lite 0.2.9", 3280 - "windows-sys 0.48.0", 3281 - ] 3282 - 3283 - [[package]] 3284 - name = "polyval" 3285 - version = "0.4.5" 3286 - source = "registry+https://github.com/rust-lang/crates.io-index" 3287 - checksum = "eebcc4aa140b9abd2bc40d9c3f7ccec842679cd79045ac3a7ac698c1a064b7cd" 3288 - dependencies = [ 3289 - "cpuid-bool", 3290 - "opaque-debug 0.3.0", 3291 - "universal-hash", 3292 - ] 3293 - 3294 - [[package]] 3295 - name = "ppv-lite86" 3296 - version = "0.2.17" 3297 - source = "registry+https://github.com/rust-lang/crates.io-index" 3298 - checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 3299 - 3300 - [[package]] 3301 - name = "prettyplease" 3302 - version = "0.1.25" 3303 - source = "registry+https://github.com/rust-lang/crates.io-index" 3304 - checksum = "6c8646e95016a7a6c4adea95bafa8a16baab64b583356217f2c85db4a39d9a86" 3305 - dependencies = [ 3306 - "proc-macro2", 3307 - "syn 1.0.109", 3308 - ] 3309 - 3310 - [[package]] 3311 - name = "proc-macro-crate" 3312 - version = "1.3.1" 3313 - source = "registry+https://github.com/rust-lang/crates.io-index" 3314 - checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" 3315 - dependencies = [ 3316 - "once_cell", 3317 - "toml_edit", 3318 - ] 3319 - 3320 - [[package]] 3321 - name = "proc-macro-error" 3322 - version = "1.0.4" 3323 - source = "registry+https://github.com/rust-lang/crates.io-index" 3324 - checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" 3325 - dependencies = [ 3326 - "proc-macro-error-attr", 3327 - "proc-macro2", 3328 - "quote", 3329 - "syn 1.0.109", 3330 - "version_check", 3331 - ] 3332 - 3333 - [[package]] 3334 - name = "proc-macro-error-attr" 3335 - version = "1.0.4" 3336 - source = "registry+https://github.com/rust-lang/crates.io-index" 3337 - checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" 3338 - dependencies = [ 3339 - "proc-macro2", 3340 - "quote", 3341 - "version_check", 3342 - ] 3343 - 3344 - [[package]] 3345 - name = "proc-macro-hack" 3346 - version = "0.5.20+deprecated" 3347 - source = "registry+https://github.com/rust-lang/crates.io-index" 3348 - checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" 3349 - 3350 - [[package]] 3351 - name = "proc-macro2" 3352 - version = "1.0.58" 3353 - source = "registry+https://github.com/rust-lang/crates.io-index" 3354 - checksum = "fa1fb82fc0c281dd9671101b66b771ebbe1eaf967b96ac8740dcba4b70005ca8" 3355 - dependencies = [ 3356 - "unicode-ident", 3357 - ] 3358 - 3359 - [[package]] 3360 - name = "profiles" 3361 - version = "1.1.0-alpha.12" 3362 - dependencies = [ 3363 - "base64 0.21.1", 3364 - "serde", 3365 - "toml", 3366 - ] 3367 - 3368 - [[package]] 3369 - name = "prokio" 3370 - version = "0.1.0" 3371 - source = "registry+https://github.com/rust-lang/crates.io-index" 3372 - checksum = "03b55e106e5791fa5a13abd13c85d6127312e8e09098059ca2bc9b03ca4cf488" 3373 - dependencies = [ 3374 - "futures", 3375 - "gloo", 3376 - "num_cpus", 3377 - "once_cell", 3378 - "pin-project", 3379 - "pinned", 3380 - "tokio", 3381 - "tokio-stream", 3382 - "wasm-bindgen-futures", 3383 - ] 3384 - 3385 - [[package]] 3386 - name = "psl-types" 3387 - version = "2.0.11" 3388 - source = "registry+https://github.com/rust-lang/crates.io-index" 3389 - checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac" 3390 - 3391 - [[package]] 3392 - name = "publicsuffix" 3393 - version = "2.2.3" 3394 - source = "registry+https://github.com/rust-lang/crates.io-index" 3395 - checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457" 3396 - dependencies = [ 3397 - "idna 0.3.0", 3398 - "psl-types", 3399 - ] 3400 - 3401 - [[package]] 3402 - name = "qrcode" 3403 - version = "0.12.0" 3404 - source = "registry+https://github.com/rust-lang/crates.io-index" 3405 - checksum = "16d2f1455f3630c6e5107b4f2b94e74d76dea80736de0981fd27644216cff57f" 3406 - dependencies = [ 3407 - "checked_int_cast", 3408 - "image", 3409 - ] 3410 - 3411 - [[package]] 3412 - name = "quick-error" 3413 - version = "2.0.1" 3414 - source = "registry+https://github.com/rust-lang/crates.io-index" 3415 - checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" 3416 - 3417 - [[package]] 3418 - name = "quote" 3419 - version = "1.0.27" 3420 - source = "registry+https://github.com/rust-lang/crates.io-index" 3421 - checksum = "8f4f29d145265ec1c483c7c654450edde0bfe043d3938d6972630663356d9500" 3422 - dependencies = [ 3423 - "proc-macro2", 3424 - ] 3425 - 3426 - [[package]] 3427 - name = "r2d2" 3428 - version = "0.8.10" 3429 - source = "registry+https://github.com/rust-lang/crates.io-index" 3430 - checksum = "51de85fb3fb6524929c8a2eb85e6b6d363de4e8c48f9e2c2eac4944abc181c93" 3431 - dependencies = [ 3432 - "log", 3433 - "parking_lot", 3434 - "scheduled-thread-pool", 3435 - ] 3436 - 3437 - [[package]] 3438 - name = "r2d2_sqlite" 3439 - version = "0.21.0" 3440 - source = "registry+https://github.com/rust-lang/crates.io-index" 3441 - checksum = "b4f5d0337e99cd5cacd91ffc326c6cc9d8078def459df560c4f9bf9ba4a51034" 3442 - dependencies = [ 3443 - "r2d2", 3444 - "rusqlite", 3445 - ] 3446 - 3447 - [[package]] 3448 - name = "rand" 3449 - version = "0.7.3" 3450 - source = "registry+https://github.com/rust-lang/crates.io-index" 3451 - checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" 3452 - dependencies = [ 3453 - "getrandom 0.1.16", 3454 - "libc", 3455 - "rand_chacha 0.2.2", 3456 - "rand_core 0.5.1", 3457 - "rand_hc", 3458 - ] 3459 - 3460 - [[package]] 3461 - name = "rand" 3462 - version = "0.8.5" 3463 - source = "registry+https://github.com/rust-lang/crates.io-index" 3464 - checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 3465 - dependencies = [ 3466 - "libc", 3467 - "rand_chacha 0.3.1", 3468 - "rand_core 0.6.4", 3469 - ] 3470 - 3471 - [[package]] 3472 - name = "rand_chacha" 3473 - version = "0.2.2" 3474 - source = "registry+https://github.com/rust-lang/crates.io-index" 3475 - checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" 3476 - dependencies = [ 3477 - "ppv-lite86", 3478 - "rand_core 0.5.1", 3479 - ] 3480 - 3481 - [[package]] 3482 - name = "rand_chacha" 3483 - version = "0.3.1" 3484 - source = "registry+https://github.com/rust-lang/crates.io-index" 3485 - checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 3486 - dependencies = [ 3487 - "ppv-lite86", 3488 - "rand_core 0.6.4", 3489 - ] 3490 - 3491 - [[package]] 3492 - name = "rand_core" 3493 - version = "0.5.1" 3494 - source = "registry+https://github.com/rust-lang/crates.io-index" 3495 - checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" 3496 - dependencies = [ 3497 - "getrandom 0.1.16", 3498 - ] 3499 - 3500 - [[package]] 3501 - name = "rand_core" 3502 - version = "0.6.4" 3503 - source = "registry+https://github.com/rust-lang/crates.io-index" 3504 - checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 3505 - dependencies = [ 3506 - "getrandom 0.2.9", 3507 - ] 3508 - 3509 - [[package]] 3510 - name = "rand_hc" 3511 - version = "0.2.0" 3512 - source = "registry+https://github.com/rust-lang/crates.io-index" 3513 - checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" 3514 - dependencies = [ 3515 - "rand_core 0.5.1", 3516 - ] 3517 - 3518 - [[package]] 3519 - name = "rayon" 3520 - version = "1.7.0" 3521 - source = "registry+https://github.com/rust-lang/crates.io-index" 3522 - checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b" 3523 - dependencies = [ 3524 - "either", 3525 - "rayon-core", 3526 - ] 3527 - 3528 - [[package]] 3529 - name = "rayon-core" 3530 - version = "1.11.0" 3531 - source = "registry+https://github.com/rust-lang/crates.io-index" 3532 - checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d" 3533 - dependencies = [ 3534 - "crossbeam-channel", 3535 - "crossbeam-deque", 3536 - "crossbeam-utils", 3537 - "num_cpus", 3538 - ] 3539 - 3540 - [[package]] 3541 - name = "redox_syscall" 3542 - version = "0.2.16" 3543 - source = "registry+https://github.com/rust-lang/crates.io-index" 3544 - checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a" 3545 - dependencies = [ 3546 - "bitflags", 3547 - ] 3548 - 3549 - [[package]] 3550 - name = "redox_syscall" 3551 - version = "0.3.5" 3552 - source = "registry+https://github.com/rust-lang/crates.io-index" 3553 - checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" 3554 - dependencies = [ 3555 - "bitflags", 3556 - ] 3557 - 3558 - [[package]] 3559 - name = "redox_users" 3560 - version = "0.4.3" 3561 - source = "registry+https://github.com/rust-lang/crates.io-index" 3562 - checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b" 3563 - dependencies = [ 3564 - "getrandom 0.2.9", 3565 - "redox_syscall 0.2.16", 3566 - "thiserror", 3567 - ] 3568 - 3569 - [[package]] 3570 - name = "regex" 3571 - version = "1.8.2" 3572 - source = "registry+https://github.com/rust-lang/crates.io-index" 3573 - checksum = "d1a59b5d8e97dee33696bf13c5ba8ab85341c002922fba050069326b9c498974" 3574 - dependencies = [ 3575 - "aho-corasick", 3576 - "memchr", 3577 - "regex-syntax 0.7.2", 3578 - ] 3579 - 3580 - [[package]] 3581 - name = "regex-automata" 3582 - version = "0.1.10" 3583 - source = "registry+https://github.com/rust-lang/crates.io-index" 3584 - checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 3585 - dependencies = [ 3586 - "regex-syntax 0.6.29", 3587 - ] 3588 - 3589 - [[package]] 3590 - name = "regex-syntax" 3591 - version = "0.6.29" 3592 - source = "registry+https://github.com/rust-lang/crates.io-index" 3593 - checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 3594 - 3595 - [[package]] 3596 - name = "regex-syntax" 3597 - version = "0.7.2" 3598 - source = "registry+https://github.com/rust-lang/crates.io-index" 3599 - checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78" 3600 - 3601 - [[package]] 3602 - name = "reqwest" 3603 - version = "0.11.18" 3604 - source = "registry+https://github.com/rust-lang/crates.io-index" 3605 - checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" 3606 - dependencies = [ 3607 - "async-compression 0.4.0", 3608 - "base64 0.21.1", 3609 - "bytes", 3610 - "cookie 0.16.2", 3611 - "cookie_store", 3612 - "encoding_rs", 3613 - "futures-core", 3614 - "futures-util", 3615 - "h2", 3616 - "http", 3617 - "http-body", 3618 - "hyper", 3619 - "hyper-tls", 3620 - "ipnet", 3621 - "js-sys", 3622 - "log", 3623 - "mime", 3624 - "native-tls", 3625 - "once_cell", 3626 - "percent-encoding", 3627 - "pin-project-lite 0.2.9", 3628 - "serde", 3629 - "serde_json", 3630 - "serde_urlencoded", 3631 - "tokio", 3632 - "tokio-native-tls", 3633 - "tokio-util", 3634 - "tower-service", 3635 - "url", 3636 - "wasm-bindgen", 3637 - "wasm-bindgen-futures", 3638 - "web-sys", 3639 - "winreg", 3640 - ] 3641 - 3642 - [[package]] 3643 - name = "route-recognizer" 3644 - version = "0.2.0" 3645 - source = "registry+https://github.com/rust-lang/crates.io-index" 3646 - checksum = "56770675ebc04927ded3e60633437841581c285dc6236109ea25fbf3beb7b59e" 3647 - 3648 - [[package]] 3649 - name = "route-recognizer" 3650 - version = "0.3.1" 3651 - source = "registry+https://github.com/rust-lang/crates.io-index" 3652 - checksum = "afab94fb28594581f62d981211a9a4d53cc8130bbcbbb89a0440d9b8e81a7746" 3653 - 3654 - [[package]] 3655 - name = "rpassword" 3656 - version = "5.0.1" 3657 - source = "registry+https://github.com/rust-lang/crates.io-index" 3658 - checksum = "ffc936cf8a7ea60c58f030fd36a612a48f440610214dc54bc36431f9ea0c3efb" 3659 - dependencies = [ 3660 - "libc", 3661 - "winapi", 3662 - ] 3663 - 3664 - [[package]] 3665 - name = "rpassword" 3666 - version = "7.2.0" 3667 - source = "registry+https://github.com/rust-lang/crates.io-index" 3668 - checksum = "6678cf63ab3491898c0d021b493c94c9b221d91295294a2a5746eacbe5928322" 3669 - dependencies = [ 3670 - "libc", 3671 - "rtoolbox", 3672 - "winapi", 3673 - ] 3674 - 3675 - [[package]] 3676 - name = "rtoolbox" 3677 - version = "0.0.1" 3678 - source = "registry+https://github.com/rust-lang/crates.io-index" 3679 - checksum = "034e22c514f5c0cb8a10ff341b9b048b5ceb21591f31c8f44c43b960f9b3524a" 3680 - dependencies = [ 3681 - "libc", 3682 - "winapi", 3683 - ] 3684 - 3685 - [[package]] 3686 - name = "runloop" 3687 - version = "0.1.0" 3688 - source = "registry+https://github.com/rust-lang/crates.io-index" 3689 - checksum = "5d79b4b604167921892e84afbbaad9d5ad74e091bf6c511d9dbfb0593f09fabd" 3690 - 3691 - [[package]] 3692 - name = "rusqlite" 3693 - version = "0.28.0" 3694 - source = "registry+https://github.com/rust-lang/crates.io-index" 3695 - checksum = "01e213bc3ecb39ac32e81e51ebe31fd888a940515173e3a18a35f8c6e896422a" 3696 - dependencies = [ 3697 - "bitflags", 3698 - "fallible-iterator", 3699 - "fallible-streaming-iterator", 3700 - "hashlink", 3701 - "libsqlite3-sys", 3702 - "smallvec", 3703 - ] 3704 - 3705 - [[package]] 3706 - name = "rustc_version" 3707 - version = "0.2.3" 3708 - source = "registry+https://github.com/rust-lang/crates.io-index" 3709 - checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" 3710 - dependencies = [ 3711 - "semver", 3712 - ] 3713 - 3714 - [[package]] 3715 - name = "rusticata-macros" 3716 - version = "4.1.0" 3717 - source = "registry+https://github.com/rust-lang/crates.io-index" 3718 - checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632" 3719 - dependencies = [ 3720 - "nom", 3721 - ] 3722 - 3723 - [[package]] 3724 - name = "rustix" 3725 - version = "0.37.19" 3726 - source = "registry+https://github.com/rust-lang/crates.io-index" 3727 - checksum = "acf8729d8542766f1b2cf77eb034d52f40d375bb8b615d0b147089946e16613d" 3728 - dependencies = [ 3729 - "bitflags", 3730 - "errno", 3731 - "io-lifetimes", 3732 - "libc", 3733 - "linux-raw-sys", 3734 - "windows-sys 0.48.0", 3735 - ] 3736 - 3737 - [[package]] 3738 - name = "rustversion" 3739 - version = "1.0.12" 3740 - source = "registry+https://github.com/rust-lang/crates.io-index" 3741 - checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06" 3742 - 3743 - [[package]] 3744 - name = "ryu" 3745 - version = "1.0.13" 3746 - source = "registry+https://github.com/rust-lang/crates.io-index" 3747 - checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" 3748 - 3749 - [[package]] 3750 - name = "same-file" 3751 - version = "1.0.6" 3752 - source = "registry+https://github.com/rust-lang/crates.io-index" 3753 - checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" 3754 - dependencies = [ 3755 - "winapi-util", 3756 - ] 3757 - 3758 - [[package]] 3759 - name = "schannel" 3760 - version = "0.1.21" 3761 - source = "registry+https://github.com/rust-lang/crates.io-index" 3762 - checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3" 3763 - dependencies = [ 3764 - "windows-sys 0.42.0", 3765 - ] 3766 - 3767 - [[package]] 3768 - name = "scheduled-thread-pool" 3769 - version = "0.2.7" 3770 - source = "registry+https://github.com/rust-lang/crates.io-index" 3771 - checksum = "3cbc66816425a074528352f5789333ecff06ca41b36b0b0efdfbb29edc391a19" 3772 - dependencies = [ 3773 - "parking_lot", 3774 - ] 3775 - 3776 - [[package]] 3777 - name = "scim_proto" 3778 - version = "0.1.1" 3779 - source = "registry+https://github.com/rust-lang/crates.io-index" 3780 - checksum = "e5abc672c8241e5bd368c0a73bf24727e98b0000a8636a44b8eb42a1e22835ef" 3781 - dependencies = [ 3782 - "base64urlsafedata", 3783 - "peg", 3784 - "serde", 3785 - "serde_json", 3786 - "time 0.2.27", 3787 - "tracing", 3788 - "tracing-subscriber", 3789 - "url", 3790 - "uuid", 3791 - ] 3792 - 3793 - [[package]] 3794 - name = "scoped-tls" 3795 - version = "1.0.1" 3796 - source = "registry+https://github.com/rust-lang/crates.io-index" 3797 - checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 3798 - 3799 - [[package]] 3800 - name = "scopeguard" 3801 - version = "1.1.0" 3802 - source = "registry+https://github.com/rust-lang/crates.io-index" 3803 - checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" 3804 - 3805 - [[package]] 3806 - name = "security-framework" 3807 - version = "2.9.1" 3808 - source = "registry+https://github.com/rust-lang/crates.io-index" 3809 - checksum = "1fc758eb7bffce5b308734e9b0c1468893cae9ff70ebf13e7090be8dcbcc83a8" 3810 - dependencies = [ 3811 - "bitflags", 3812 - "core-foundation", 3813 - "core-foundation-sys", 3814 - "libc", 3815 - "security-framework-sys", 3816 - ] 3817 - 3818 - [[package]] 3819 - name = "security-framework-sys" 3820 - version = "2.9.0" 3821 - source = "registry+https://github.com/rust-lang/crates.io-index" 3822 - checksum = "f51d0c0d83bec45f16480d0ce0058397a69e48fcdc52d1dc8855fb68acbd31a7" 3823 - dependencies = [ 3824 - "core-foundation-sys", 3825 - "libc", 3826 - ] 3827 - 3828 - [[package]] 3829 - name = "semver" 3830 - version = "0.9.0" 3831 - source = "registry+https://github.com/rust-lang/crates.io-index" 3832 - checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" 3833 - dependencies = [ 3834 - "semver-parser", 3835 - ] 3836 - 3837 - [[package]] 3838 - name = "semver-parser" 3839 - version = "0.7.0" 3840 - source = "registry+https://github.com/rust-lang/crates.io-index" 3841 - checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" 3842 - 3843 - [[package]] 3844 - name = "serde" 3845 - version = "1.0.163" 3846 - source = "registry+https://github.com/rust-lang/crates.io-index" 3847 - checksum = "2113ab51b87a539ae008b5c6c02dc020ffa39afd2d83cffcb3f4eb2722cebec2" 3848 - dependencies = [ 3849 - "serde_derive", 3850 - ] 3851 - 3852 - [[package]] 3853 - name = "serde-wasm-bindgen" 3854 - version = "0.4.5" 3855 - source = "registry+https://github.com/rust-lang/crates.io-index" 3856 - checksum = "e3b4c031cd0d9014307d82b8abf653c0290fbdaeb4c02d00c63cf52f728628bf" 3857 - dependencies = [ 3858 - "js-sys", 3859 - "serde", 3860 - "wasm-bindgen", 3861 - ] 3862 - 3863 - [[package]] 3864 - name = "serde_bytes" 3865 - version = "0.11.9" 3866 - source = "registry+https://github.com/rust-lang/crates.io-index" 3867 - checksum = "416bda436f9aab92e02c8e10d49a15ddd339cea90b6e340fe51ed97abb548294" 3868 - dependencies = [ 3869 - "serde", 3870 - ] 3871 - 3872 - [[package]] 3873 - name = "serde_cbor" 3874 - version = "0.11.2" 3875 - source = "registry+https://github.com/rust-lang/crates.io-index" 3876 - checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5" 3877 - dependencies = [ 3878 - "half", 3879 - "serde", 3880 - ] 3881 - 3882 - [[package]] 3883 - name = "serde_cbor_2" 3884 - version = "0.12.0-dev" 3885 - source = "registry+https://github.com/rust-lang/crates.io-index" 3886 - checksum = "b46d75f449e01f1eddbe9b00f432d616fbbd899b809c837d0fbc380496a0dd55" 3887 - dependencies = [ 3888 - "half", 3889 - "serde", 3890 - ] 3891 - 3892 - [[package]] 3893 - name = "serde_derive" 3894 - version = "1.0.163" 3895 - source = "registry+https://github.com/rust-lang/crates.io-index" 3896 - checksum = "8c805777e3930c8883389c602315a24224bcc738b63905ef87cd1420353ea93e" 3897 - dependencies = [ 3898 - "proc-macro2", 3899 - "quote", 3900 - "syn 2.0.16", 3901 - ] 3902 - 3903 - [[package]] 3904 - name = "serde_fmt" 3905 - version = "1.0.3" 3906 - source = "registry+https://github.com/rust-lang/crates.io-index" 3907 - checksum = "e1d4ddca14104cd60529e8c7f7ba71a2c8acd8f7f5cfcdc2faf97eeb7c3010a4" 3908 - dependencies = [ 3909 - "serde", 3910 - ] 3911 - 3912 - [[package]] 3913 - name = "serde_json" 3914 - version = "1.0.96" 3915 - source = "registry+https://github.com/rust-lang/crates.io-index" 3916 - checksum = "057d394a50403bcac12672b2b18fb387ab6d289d957dab67dd201875391e52f1" 3917 - dependencies = [ 3918 - "itoa", 3919 - "ryu", 3920 - "serde", 3921 - ] 3922 - 3923 - [[package]] 3924 - name = "serde_path_to_error" 3925 - version = "0.1.11" 3926 - source = "registry+https://github.com/rust-lang/crates.io-index" 3927 - checksum = "f7f05c1d5476066defcdfacce1f52fc3cae3af1d3089727100c02ae92e5abbe0" 3928 - dependencies = [ 3929 - "serde", 3930 - ] 3931 - 3932 - [[package]] 3933 - name = "serde_qs" 3934 - version = "0.8.5" 3935 - source = "registry+https://github.com/rust-lang/crates.io-index" 3936 - checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6" 3937 - dependencies = [ 3938 - "percent-encoding", 3939 - "serde", 3940 - "thiserror", 3941 - ] 3942 - 3943 - [[package]] 3944 - name = "serde_urlencoded" 3945 - version = "0.7.1" 3946 - source = "registry+https://github.com/rust-lang/crates.io-index" 3947 - checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 3948 - dependencies = [ 3949 - "form_urlencoded", 3950 - "itoa", 3951 - "ryu", 3952 - "serde", 3953 - ] 3954 - 3955 - [[package]] 3956 - name = "sha1" 3957 - version = "0.6.1" 3958 - source = "registry+https://github.com/rust-lang/crates.io-index" 3959 - checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770" 3960 - dependencies = [ 3961 - "sha1_smol", 3962 - ] 3963 - 3964 - [[package]] 3965 - name = "sha1_smol" 3966 - version = "1.0.0" 3967 - source = "registry+https://github.com/rust-lang/crates.io-index" 3968 - checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012" 3969 - 3970 - [[package]] 3971 - name = "sha2" 3972 - version = "0.8.2" 3973 - source = "registry+https://github.com/rust-lang/crates.io-index" 3974 - checksum = "a256f46ea78a0c0d9ff00077504903ac881a1dafdc20da66545699e7776b3e69" 3975 - dependencies = [ 3976 - "block-buffer 0.7.3", 3977 - "digest 0.8.1", 3978 - "fake-simd", 3979 - "opaque-debug 0.2.3", 3980 - ] 3981 - 3982 - [[package]] 3983 - name = "sha2" 3984 - version = "0.9.9" 3985 - source = "registry+https://github.com/rust-lang/crates.io-index" 3986 - checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" 3987 - dependencies = [ 3988 - "block-buffer 0.9.0", 3989 - "cfg-if 1.0.0", 3990 - "cpufeatures", 3991 - "digest 0.9.0", 3992 - "opaque-debug 0.3.0", 3993 - ] 3994 - 3995 - [[package]] 3996 - name = "sha2" 3997 - version = "0.10.6" 3998 - source = "registry+https://github.com/rust-lang/crates.io-index" 3999 - checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0" 4000 - dependencies = [ 4001 - "cfg-if 1.0.0", 4002 - "cpufeatures", 4003 - "digest 0.10.7", 4004 - ] 4005 - 4006 - [[package]] 4007 - name = "sharded-slab" 4008 - version = "0.1.4" 4009 - source = "registry+https://github.com/rust-lang/crates.io-index" 4010 - checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" 4011 - dependencies = [ 4012 - "lazy_static", 4013 - ] 4014 - 4015 - [[package]] 4016 - name = "shell-words" 4017 - version = "1.1.0" 4018 - source = "registry+https://github.com/rust-lang/crates.io-index" 4019 - checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde" 4020 - 4021 - [[package]] 4022 - name = "shellexpand" 4023 - version = "2.1.2" 4024 - source = "registry+https://github.com/rust-lang/crates.io-index" 4025 - checksum = "7ccc8076840c4da029af4f87e4e8daeb0fca6b87bbb02e10cb60b791450e11e4" 4026 - dependencies = [ 4027 - "dirs", 4028 - ] 4029 - 4030 - [[package]] 4031 - name = "signal-hook" 4032 - version = "0.3.15" 4033 - source = "registry+https://github.com/rust-lang/crates.io-index" 4034 - checksum = "732768f1176d21d09e076c23a93123d40bba92d50c4058da34d45c8de8e682b9" 4035 - dependencies = [ 4036 - "libc", 4037 - "signal-hook-registry", 4038 - ] 4039 - 4040 - [[package]] 4041 - name = "signal-hook-registry" 4042 - version = "1.4.1" 4043 - source = "registry+https://github.com/rust-lang/crates.io-index" 4044 - checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 4045 - dependencies = [ 4046 - "libc", 4047 - ] 4048 - 4049 - [[package]] 4050 - name = "simple-mutex" 4051 - version = "1.1.5" 4052 - source = "registry+https://github.com/rust-lang/crates.io-index" 4053 - checksum = "38aabbeafa6f6dead8cebf246fe9fae1f9215c8d29b3a69f93bd62a9e4a3dcd6" 4054 - dependencies = [ 4055 - "event-listener", 4056 - ] 4057 - 4058 - [[package]] 4059 - name = "sketching" 4060 - version = "1.1.0-alpha.12" 4061 - dependencies = [ 4062 - "async-trait", 4063 - "num_enum", 4064 - "tide", 4065 - "tracing", 4066 - "tracing-forest", 4067 - "tracing-subscriber", 4068 - ] 4069 - 4070 - [[package]] 4071 - name = "slab" 4072 - version = "0.4.8" 4073 - source = "registry+https://github.com/rust-lang/crates.io-index" 4074 - checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d" 4075 - dependencies = [ 4076 - "autocfg", 4077 - ] 4078 - 4079 - [[package]] 4080 - name = "smallvec" 4081 - version = "1.10.0" 4082 - source = "registry+https://github.com/rust-lang/crates.io-index" 4083 - checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" 4084 - dependencies = [ 4085 - "serde", 4086 - ] 4087 - 4088 - [[package]] 4089 - name = "smartstring" 4090 - version = "1.0.1" 4091 - source = "registry+https://github.com/rust-lang/crates.io-index" 4092 - checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29" 4093 - dependencies = [ 4094 - "autocfg", 4095 - "serde", 4096 - "static_assertions", 4097 - "version_check", 4098 - ] 4099 - 4100 - [[package]] 4101 - name = "smolset" 4102 - version = "1.3.1" 4103 - source = "registry+https://github.com/rust-lang/crates.io-index" 4104 - checksum = "a8d372e8fe15dc5229e7d6c65f5810849385e79e24f9d9d64263e132879c7be0" 4105 - dependencies = [ 4106 - "smallvec", 4107 - ] 4108 - 4109 - [[package]] 4110 - name = "socket2" 4111 - version = "0.4.9" 4112 - source = "registry+https://github.com/rust-lang/crates.io-index" 4113 - checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" 4114 - dependencies = [ 4115 - "libc", 4116 - "winapi", 4117 - ] 4118 - 4119 - [[package]] 4120 - name = "sptr" 4121 - version = "0.3.2" 4122 - source = "registry+https://github.com/rust-lang/crates.io-index" 4123 - checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a" 4124 - 4125 - [[package]] 4126 - name = "sshkeys" 4127 - version = "0.3.2" 4128 - source = "registry+https://github.com/rust-lang/crates.io-index" 4129 - checksum = "c926cb006a77964474a13a86aa0135ea82c9fd43e6793a1151cc54143db6637c" 4130 - dependencies = [ 4131 - "base64 0.12.3", 4132 - "byteorder", 4133 - "sha2 0.8.2", 4134 - ] 4135 - 4136 - [[package]] 4137 - name = "standback" 4138 - version = "0.2.17" 4139 - source = "registry+https://github.com/rust-lang/crates.io-index" 4140 - checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff" 4141 - dependencies = [ 4142 - "version_check", 4143 - ] 4144 - 4145 - [[package]] 4146 - name = "static_assertions" 4147 - version = "1.1.0" 4148 - source = "registry+https://github.com/rust-lang/crates.io-index" 4149 - checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" 4150 - 4151 - [[package]] 4152 - name = "stdweb" 4153 - version = "0.4.20" 4154 - source = "registry+https://github.com/rust-lang/crates.io-index" 4155 - checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5" 4156 - dependencies = [ 4157 - "discard", 4158 - "rustc_version", 4159 - "stdweb-derive", 4160 - "stdweb-internal-macros", 4161 - "stdweb-internal-runtime", 4162 - "wasm-bindgen", 4163 - ] 4164 - 4165 - [[package]] 4166 - name = "stdweb-derive" 4167 - version = "0.5.3" 4168 - source = "registry+https://github.com/rust-lang/crates.io-index" 4169 - checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef" 4170 - dependencies = [ 4171 - "proc-macro2", 4172 - "quote", 4173 - "serde", 4174 - "serde_derive", 4175 - "syn 1.0.109", 4176 - ] 4177 - 4178 - [[package]] 4179 - name = "stdweb-internal-macros" 4180 - version = "0.2.9" 4181 - source = "registry+https://github.com/rust-lang/crates.io-index" 4182 - checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11" 4183 - dependencies = [ 4184 - "base-x", 4185 - "proc-macro2", 4186 - "quote", 4187 - "serde", 4188 - "serde_derive", 4189 - "serde_json", 4190 - "sha1", 4191 - "syn 1.0.109", 4192 - ] 4193 - 4194 - [[package]] 4195 - name = "stdweb-internal-runtime" 4196 - version = "0.1.5" 4197 - source = "registry+https://github.com/rust-lang/crates.io-index" 4198 - checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0" 4199 - 4200 - [[package]] 4201 - name = "strsim" 4202 - version = "0.10.0" 4203 - source = "registry+https://github.com/rust-lang/crates.io-index" 4204 - checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" 4205 - 4206 - [[package]] 4207 - name = "subtle" 4208 - version = "2.4.1" 4209 - source = "registry+https://github.com/rust-lang/crates.io-index" 4210 - checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 4211 - 4212 - [[package]] 4213 - name = "sval" 4214 - version = "1.0.0-alpha.5" 4215 - source = "registry+https://github.com/rust-lang/crates.io-index" 4216 - checksum = "45f6ee7c7b87caf59549e9fe45d6a69c75c8019e79e212a835c5da0e92f0ba08" 4217 - dependencies = [ 4218 - "serde", 4219 - ] 4220 - 4221 - [[package]] 4222 - name = "syn" 4223 - version = "1.0.109" 4224 - source = "registry+https://github.com/rust-lang/crates.io-index" 4225 - checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 4226 - dependencies = [ 4227 - "proc-macro2", 4228 - "quote", 4229 - "unicode-ident", 4230 - ] 4231 - 4232 - [[package]] 4233 - name = "syn" 4234 - version = "2.0.16" 4235 - source = "registry+https://github.com/rust-lang/crates.io-index" 4236 - checksum = "a6f671d4b5ffdb8eadec19c0ae67fe2639df8684bd7bc4b83d986b8db549cf01" 4237 - dependencies = [ 4238 - "proc-macro2", 4239 - "quote", 4240 - "unicode-ident", 4241 - ] 4242 - 4243 - [[package]] 4244 - name = "synstructure" 4245 - version = "0.12.6" 4246 - source = "registry+https://github.com/rust-lang/crates.io-index" 4247 - checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" 4248 - dependencies = [ 4249 - "proc-macro2", 4250 - "quote", 4251 - "syn 1.0.109", 4252 - "unicode-xid", 4253 - ] 4254 - 4255 - [[package]] 4256 - name = "tempfile" 4257 - version = "3.5.0" 4258 - source = "registry+https://github.com/rust-lang/crates.io-index" 4259 - checksum = "b9fbec84f381d5795b08656e4912bec604d162bff9291d6189a78f4c8ab87998" 4260 - dependencies = [ 4261 - "cfg-if 1.0.0", 4262 - "fastrand", 4263 - "redox_syscall 0.3.5", 4264 - "rustix", 4265 - "windows-sys 0.45.0", 4266 - ] 4267 - 4268 - [[package]] 4269 - name = "termcolor" 4270 - version = "1.2.0" 4271 - source = "registry+https://github.com/rust-lang/crates.io-index" 4272 - checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6" 4273 - dependencies = [ 4274 - "winapi-util", 4275 - ] 4276 - 4277 - [[package]] 4278 - name = "testkit-macros" 4279 - version = "0.1.0" 4280 - dependencies = [ 4281 - "proc-macro2", 4282 - "quote", 4283 - "syn 2.0.16", 4284 - ] 4285 - 4286 - [[package]] 4287 - name = "textwrap" 4288 - version = "0.16.0" 4289 - source = "registry+https://github.com/rust-lang/crates.io-index" 4290 - checksum = "222a222a5bfe1bba4a77b45ec488a741b3cb8872e5e499451fd7d0129c9c7c3d" 4291 - 4292 - [[package]] 4293 - name = "thiserror" 4294 - version = "1.0.40" 4295 - source = "registry+https://github.com/rust-lang/crates.io-index" 4296 - checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac" 4297 - dependencies = [ 4298 - "thiserror-impl", 4299 - ] 4300 - 4301 - [[package]] 4302 - name = "thiserror-impl" 4303 - version = "1.0.40" 4304 - source = "registry+https://github.com/rust-lang/crates.io-index" 4305 - checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f" 4306 - dependencies = [ 4307 - "proc-macro2", 4308 - "quote", 4309 - "syn 2.0.16", 4310 - ] 4311 - 4312 - [[package]] 4313 - name = "thread_local" 4314 - version = "1.1.7" 4315 - source = "registry+https://github.com/rust-lang/crates.io-index" 4316 - checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 4317 - dependencies = [ 4318 - "cfg-if 1.0.0", 4319 - "once_cell", 4320 - ] 4321 - 4322 - [[package]] 4323 - name = "tide" 4324 - version = "0.16.0" 4325 - source = "registry+https://github.com/rust-lang/crates.io-index" 4326 - checksum = "c459573f0dd2cc734b539047f57489ea875af8ee950860ded20cf93a79a1dee0" 4327 - dependencies = [ 4328 - "async-h1", 4329 - "async-session", 4330 - "async-sse", 4331 - "async-std", 4332 - "async-trait", 4333 - "femme", 4334 - "futures-util", 4335 - "http-client", 4336 - "http-types", 4337 - "kv-log-macro", 4338 - "log", 4339 - "pin-project-lite 0.2.9", 4340 - "route-recognizer 0.2.0", 4341 - "serde", 4342 - "serde_json", 4343 - ] 4344 - 4345 - [[package]] 4346 - name = "tide-compress" 4347 - version = "0.10.6" 4348 - source = "registry+https://github.com/rust-lang/crates.io-index" 4349 - checksum = "92a55e754f247bb04c6ea1c2ec46f1a4e8a91dabca9dc7a38c67aa3a9df6b359" 4350 - dependencies = [ 4351 - "async-compression 0.3.15", 4352 - "futures-lite", 4353 - "http-types", 4354 - "regex", 4355 - "tide", 4356 - ] 4357 - 4358 - [[package]] 4359 - name = "tide-openssl" 4360 - version = "0.1.1" 4361 - source = "registry+https://github.com/rust-lang/crates.io-index" 4362 - checksum = "5ca37203863763d3faf05b22d32a0c2da7a2d429b8fb22345e19e45ec2ad1071" 4363 - dependencies = [ 4364 - "async-dup", 4365 - "async-h1", 4366 - "async-std", 4367 - "async-std-openssl", 4368 - "futures-util", 4369 - "openssl", 4370 - "openssl-sys", 4371 - "tide", 4372 - ] 4373 - 4374 - [[package]] 4375 - name = "tikv-jemalloc-sys" 4376 - version = "0.5.3+5.3.0-patched" 4377 - source = "registry+https://github.com/rust-lang/crates.io-index" 4378 - checksum = "a678df20055b43e57ef8cddde41cdfda9a3c1a060b67f4c5836dfb1d78543ba8" 4379 - dependencies = [ 4380 - "cc", 4381 - "libc", 4382 - ] 4383 - 4384 - [[package]] 4385 - name = "tikv-jemallocator" 4386 - version = "0.5.0" 4387 - source = "registry+https://github.com/rust-lang/crates.io-index" 4388 - checksum = "20612db8a13a6c06d57ec83953694185a367e16945f66565e8028d2c0bd76979" 4389 - dependencies = [ 4390 - "libc", 4391 - "tikv-jemalloc-sys", 4392 - ] 4393 - 4394 - [[package]] 4395 - name = "time" 4396 - version = "0.1.45" 4397 - source = "registry+https://github.com/rust-lang/crates.io-index" 4398 - checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a" 4399 - dependencies = [ 4400 - "libc", 4401 - "wasi 0.10.0+wasi-snapshot-preview1", 4402 - "winapi", 4403 - ] 4404 - 4405 - [[package]] 4406 - name = "time" 4407 - version = "0.2.27" 4408 - source = "registry+https://github.com/rust-lang/crates.io-index" 4409 - checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242" 4410 - dependencies = [ 4411 - "const_fn", 4412 - "libc", 4413 - "serde", 4414 - "standback", 4415 - "stdweb", 4416 - "time-macros 0.1.1", 4417 - "version_check", 4418 - "winapi", 4419 - ] 4420 - 4421 - [[package]] 4422 - name = "time" 4423 - version = "0.3.21" 4424 - source = "registry+https://github.com/rust-lang/crates.io-index" 4425 - checksum = "8f3403384eaacbca9923fa06940178ac13e4edb725486d70e8e15881d0c836cc" 4426 - dependencies = [ 4427 - "itoa", 4428 - "serde", 4429 - "time-core", 4430 - "time-macros 0.2.9", 4431 - ] 4432 - 4433 - [[package]] 4434 - name = "time-core" 4435 - version = "0.1.1" 4436 - source = "registry+https://github.com/rust-lang/crates.io-index" 4437 - checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb" 4438 - 4439 - [[package]] 4440 - name = "time-macros" 4441 - version = "0.1.1" 4442 - source = "registry+https://github.com/rust-lang/crates.io-index" 4443 - checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1" 4444 - dependencies = [ 4445 - "proc-macro-hack", 4446 - "time-macros-impl", 4447 - ] 4448 - 4449 - [[package]] 4450 - name = "time-macros" 4451 - version = "0.2.9" 4452 - source = "registry+https://github.com/rust-lang/crates.io-index" 4453 - checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b" 4454 - dependencies = [ 4455 - "time-core", 4456 - ] 4457 - 4458 - [[package]] 4459 - name = "time-macros-impl" 4460 - version = "0.1.2" 4461 - source = "registry+https://github.com/rust-lang/crates.io-index" 4462 - checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f" 4463 - dependencies = [ 4464 - "proc-macro-hack", 4465 - "proc-macro2", 4466 - "quote", 4467 - "standback", 4468 - "syn 1.0.109", 4469 - ] 4470 - 4471 - [[package]] 4472 - name = "tinytemplate" 4473 - version = "1.2.1" 4474 - source = "registry+https://github.com/rust-lang/crates.io-index" 4475 - checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc" 4476 - dependencies = [ 4477 - "serde", 4478 - "serde_json", 4479 - ] 4480 - 4481 - [[package]] 4482 - name = "tinyvec" 4483 - version = "1.6.0" 4484 - source = "registry+https://github.com/rust-lang/crates.io-index" 4485 - checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 4486 - dependencies = [ 4487 - "tinyvec_macros", 4488 - ] 4489 - 4490 - [[package]] 4491 - name = "tinyvec_macros" 4492 - version = "0.1.1" 4493 - source = "registry+https://github.com/rust-lang/crates.io-index" 4494 - checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 4495 - 4496 - [[package]] 4497 - name = "tokio" 4498 - version = "1.28.1" 4499 - source = "registry+https://github.com/rust-lang/crates.io-index" 4500 - checksum = "0aa32867d44e6f2ce3385e89dceb990188b8bb0fb25b0cf576647a6f98ac5105" 4501 - dependencies = [ 4502 - "autocfg", 4503 - "bytes", 4504 - "libc", 4505 - "mio", 4506 - "num_cpus", 4507 - "pin-project-lite 0.2.9", 4508 - "signal-hook-registry", 4509 - "socket2", 4510 - "tokio-macros", 4511 - "windows-sys 0.48.0", 4512 - ] 4513 - 4514 - [[package]] 4515 - name = "tokio-macros" 4516 - version = "2.1.0" 4517 - source = "registry+https://github.com/rust-lang/crates.io-index" 4518 - checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" 4519 - dependencies = [ 4520 - "proc-macro2", 4521 - "quote", 4522 - "syn 2.0.16", 4523 - ] 4524 - 4525 - [[package]] 4526 - name = "tokio-native-tls" 4527 - version = "0.3.1" 4528 - source = "registry+https://github.com/rust-lang/crates.io-index" 4529 - checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 4530 - dependencies = [ 4531 - "native-tls", 4532 - "tokio", 4533 - ] 4534 - 4535 - [[package]] 4536 - name = "tokio-openssl" 4537 - version = "0.6.3" 4538 - source = "registry+https://github.com/rust-lang/crates.io-index" 4539 - checksum = "c08f9ffb7809f1b20c1b398d92acf4cc719874b3b2b2d9ea2f09b4a80350878a" 4540 - dependencies = [ 4541 - "futures-util", 4542 - "openssl", 4543 - "openssl-sys", 4544 - "tokio", 4545 - ] 4546 - 4547 - [[package]] 4548 - name = "tokio-stream" 4549 - version = "0.1.14" 4550 - source = "registry+https://github.com/rust-lang/crates.io-index" 4551 - checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" 4552 - dependencies = [ 4553 - "futures-core", 4554 - "pin-project-lite 0.2.9", 4555 - "tokio", 4556 - ] 4557 - 4558 - [[package]] 4559 - name = "tokio-util" 4560 - version = "0.7.8" 4561 - source = "registry+https://github.com/rust-lang/crates.io-index" 4562 - checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" 4563 - dependencies = [ 4564 - "bytes", 4565 - "futures-core", 4566 - "futures-sink", 4567 - "pin-project-lite 0.2.9", 4568 - "tokio", 4569 - "tracing", 4570 - ] 4571 - 4572 - [[package]] 4573 - name = "toml" 4574 - version = "0.5.11" 4575 - source = "registry+https://github.com/rust-lang/crates.io-index" 4576 - checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" 4577 - dependencies = [ 4578 - "serde", 4579 - ] 4580 - 4581 - [[package]] 4582 - name = "toml_datetime" 4583 - version = "0.6.2" 4584 - source = "registry+https://github.com/rust-lang/crates.io-index" 4585 - checksum = "5a76a9312f5ba4c2dec6b9161fdf25d87ad8a09256ccea5a556fef03c706a10f" 4586 - 4587 - [[package]] 4588 - name = "toml_edit" 4589 - version = "0.19.10" 4590 - source = "registry+https://github.com/rust-lang/crates.io-index" 4591 - checksum = "2380d56e8670370eee6566b0bfd4265f65b3f432e8c6d85623f728d4fa31f739" 4592 - dependencies = [ 4593 - "indexmap", 4594 - "toml_datetime", 4595 - "winnow", 4596 - ] 4597 - 4598 - [[package]] 4599 - name = "touch" 4600 - version = "0.0.1" 4601 - source = "registry+https://github.com/rust-lang/crates.io-index" 4602 - checksum = "c0ff985ccaedc537018a1b6c7f377d25e16d08aa1fcc5f8f4fba984c7e69cf09" 4603 - dependencies = [ 4604 - "log", 4605 - ] 4606 - 4607 - [[package]] 4608 - name = "tower-service" 4609 - version = "0.3.2" 4610 - source = "registry+https://github.com/rust-lang/crates.io-index" 4611 - checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 4612 - 4613 - [[package]] 4614 - name = "tracing" 4615 - version = "0.1.37" 4616 - source = "registry+https://github.com/rust-lang/crates.io-index" 4617 - checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" 4618 - dependencies = [ 4619 - "cfg-if 1.0.0", 4620 - "pin-project-lite 0.2.9", 4621 - "tracing-attributes", 4622 - "tracing-core", 4623 - ] 4624 - 4625 - [[package]] 4626 - name = "tracing-attributes" 4627 - version = "0.1.24" 4628 - source = "registry+https://github.com/rust-lang/crates.io-index" 4629 - checksum = "0f57e3ca2a01450b1a921183a9c9cbfda207fd822cef4ccb00a65402cbba7a74" 4630 - dependencies = [ 4631 - "proc-macro2", 4632 - "quote", 4633 - "syn 2.0.16", 4634 - ] 4635 - 4636 - [[package]] 4637 - name = "tracing-core" 4638 - version = "0.1.31" 4639 - source = "registry+https://github.com/rust-lang/crates.io-index" 4640 - checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a" 4641 - dependencies = [ 4642 - "once_cell", 4643 - "valuable", 4644 - ] 4645 - 4646 - [[package]] 4647 - name = "tracing-forest" 4648 - version = "0.1.5" 4649 - source = "git+https://github.com/QnnOkabayashi/tracing-forest.git?rev=77daf8c8abf010b87d45ece2bf656983c6f8cecb#77daf8c8abf010b87d45ece2bf656983c6f8cecb" 4650 - dependencies = [ 4651 - "smallvec", 4652 - "thiserror", 4653 - "tokio", 4654 - "tracing", 4655 - "tracing-subscriber", 4656 - "uuid", 4657 - ] 4658 - 4659 - [[package]] 4660 - name = "tracing-log" 4661 - version = "0.1.3" 4662 - source = "registry+https://github.com/rust-lang/crates.io-index" 4663 - checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" 4664 - dependencies = [ 4665 - "lazy_static", 4666 - "log", 4667 - "tracing-core", 4668 - ] 4669 - 4670 - [[package]] 4671 - name = "tracing-subscriber" 4672 - version = "0.3.17" 4673 - source = "registry+https://github.com/rust-lang/crates.io-index" 4674 - checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 4675 - dependencies = [ 4676 - "matchers", 4677 - "nu-ansi-term", 4678 - "once_cell", 4679 - "regex", 4680 - "sharded-slab", 4681 - "smallvec", 4682 - "thread_local", 4683 - "tracing", 4684 - "tracing-core", 4685 - "tracing-log", 4686 - ] 4687 - 4688 - [[package]] 4689 - name = "try-lock" 4690 - version = "0.2.4" 4691 - source = "registry+https://github.com/rust-lang/crates.io-index" 4692 - checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 4693 - 4694 - [[package]] 4695 - name = "typenum" 4696 - version = "1.16.0" 4697 - source = "registry+https://github.com/rust-lang/crates.io-index" 4698 - checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba" 4699 - 4700 - [[package]] 4701 - name = "unicode-bidi" 4702 - version = "0.3.13" 4703 - source = "registry+https://github.com/rust-lang/crates.io-index" 4704 - checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 4705 - 4706 - [[package]] 4707 - name = "unicode-ident" 4708 - version = "1.0.9" 4709 - source = "registry+https://github.com/rust-lang/crates.io-index" 4710 - checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0" 4711 - 4712 - [[package]] 4713 - name = "unicode-normalization" 4714 - version = "0.1.22" 4715 - source = "registry+https://github.com/rust-lang/crates.io-index" 4716 - checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 4717 - dependencies = [ 4718 - "tinyvec", 4719 - ] 4720 - 4721 - [[package]] 4722 - name = "unicode-width" 4723 - version = "0.1.10" 4724 - source = "registry+https://github.com/rust-lang/crates.io-index" 4725 - checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b" 4726 - 4727 - [[package]] 4728 - name = "unicode-xid" 4729 - version = "0.2.4" 4730 - source = "registry+https://github.com/rust-lang/crates.io-index" 4731 - checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" 4732 - 4733 - [[package]] 4734 - name = "universal-hash" 4735 - version = "0.4.1" 4736 - source = "registry+https://github.com/rust-lang/crates.io-index" 4737 - checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 4738 - dependencies = [ 4739 - "generic-array 0.14.7", 4740 - "subtle", 4741 - ] 4742 - 4743 - [[package]] 4744 - name = "url" 4745 - version = "2.3.1" 4746 - source = "registry+https://github.com/rust-lang/crates.io-index" 4747 - checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643" 4748 - dependencies = [ 4749 - "form_urlencoded", 4750 - "idna 0.3.0", 4751 - "percent-encoding", 4752 - "serde", 4753 - ] 4754 - 4755 - [[package]] 4756 - name = "urlencoding" 4757 - version = "2.1.2" 4758 - source = "registry+https://github.com/rust-lang/crates.io-index" 4759 - checksum = "e8db7427f936968176eaa7cdf81b7f98b980b18495ec28f1b5791ac3bfe3eea9" 4760 - 4761 - [[package]] 4762 - name = "users" 4763 - version = "0.11.0" 4764 - source = "registry+https://github.com/rust-lang/crates.io-index" 4765 - checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032" 4766 - dependencies = [ 4767 - "libc", 4768 - "log", 4769 - ] 4770 - 4771 - [[package]] 4772 - name = "uuid" 4773 - version = "1.3.3" 4774 - source = "registry+https://github.com/rust-lang/crates.io-index" 4775 - checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2" 4776 - dependencies = [ 4777 - "getrandom 0.2.9", 4778 - "serde", 4779 - ] 4780 - 4781 - [[package]] 4782 - name = "valuable" 4783 - version = "0.1.0" 4784 - source = "registry+https://github.com/rust-lang/crates.io-index" 4785 - checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 4786 - 4787 - [[package]] 4788 - name = "value-bag" 4789 - version = "1.0.0-alpha.9" 4790 - source = "registry+https://github.com/rust-lang/crates.io-index" 4791 - checksum = "2209b78d1249f7e6f3293657c9779fe31ced465df091bbd433a1cf88e916ec55" 4792 - dependencies = [ 4793 - "ctor", 4794 - "erased-serde", 4795 - "serde", 4796 - "serde_fmt", 4797 - "sval", 4798 - "version_check", 4799 - ] 4800 - 4801 - [[package]] 4802 - name = "vcpkg" 4803 - version = "0.2.15" 4804 - source = "registry+https://github.com/rust-lang/crates.io-index" 4805 - checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 4806 - 4807 - [[package]] 4808 - name = "version_check" 4809 - version = "0.9.4" 4810 - source = "registry+https://github.com/rust-lang/crates.io-index" 4811 - checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 4812 - 4813 - [[package]] 4814 - name = "waker-fn" 4815 - version = "1.1.0" 4816 - source = "registry+https://github.com/rust-lang/crates.io-index" 4817 - checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca" 4818 - 4819 - [[package]] 4820 - name = "walkdir" 4821 - version = "2.3.3" 4822 - source = "registry+https://github.com/rust-lang/crates.io-index" 4823 - checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698" 4824 - dependencies = [ 4825 - "same-file", 4826 - "winapi-util", 4827 - ] 4828 - 4829 - [[package]] 4830 - name = "want" 4831 - version = "0.3.0" 4832 - source = "registry+https://github.com/rust-lang/crates.io-index" 4833 - checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0" 4834 - dependencies = [ 4835 - "log", 4836 - "try-lock", 4837 - ] 4838 - 4839 - [[package]] 4840 - name = "wasi" 4841 - version = "0.9.0+wasi-snapshot-preview1" 4842 - source = "registry+https://github.com/rust-lang/crates.io-index" 4843 - checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" 4844 - 4845 - [[package]] 4846 - name = "wasi" 4847 - version = "0.10.0+wasi-snapshot-preview1" 4848 - source = "registry+https://github.com/rust-lang/crates.io-index" 4849 - checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f" 4850 - 4851 - [[package]] 4852 - name = "wasi" 4853 - version = "0.11.0+wasi-snapshot-preview1" 4854 - source = "registry+https://github.com/rust-lang/crates.io-index" 4855 - checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 4856 - 4857 - [[package]] 4858 - name = "wasm-bindgen" 4859 - version = "0.2.86" 4860 - source = "registry+https://github.com/rust-lang/crates.io-index" 4861 - checksum = "5bba0e8cb82ba49ff4e229459ff22a191bbe9a1cb3a341610c9c33efc27ddf73" 4862 - dependencies = [ 4863 - "cfg-if 1.0.0", 4864 - "serde", 4865 - "serde_json", 4866 - "wasm-bindgen-macro", 4867 - ] 4868 - 4869 - [[package]] 4870 - name = "wasm-bindgen-backend" 4871 - version = "0.2.86" 4872 - source = "registry+https://github.com/rust-lang/crates.io-index" 4873 - checksum = "19b04bc93f9d6bdee709f6bd2118f57dd6679cf1176a1af464fca3ab0d66d8fb" 4874 - dependencies = [ 4875 - "bumpalo", 4876 - "log", 4877 - "once_cell", 4878 - "proc-macro2", 4879 - "quote", 4880 - "syn 2.0.16", 4881 - "wasm-bindgen-shared", 4882 - ] 4883 - 4884 - [[package]] 4885 - name = "wasm-bindgen-futures" 4886 - version = "0.4.36" 4887 - source = "registry+https://github.com/rust-lang/crates.io-index" 4888 - checksum = "2d1985d03709c53167ce907ff394f5316aa22cb4e12761295c5dc57dacb6297e" 4889 - dependencies = [ 4890 - "cfg-if 1.0.0", 4891 - "js-sys", 4892 - "wasm-bindgen", 4893 - "web-sys", 4894 - ] 4895 - 4896 - [[package]] 4897 - name = "wasm-bindgen-macro" 4898 - version = "0.2.86" 4899 - source = "registry+https://github.com/rust-lang/crates.io-index" 4900 - checksum = "14d6b024f1a526bb0234f52840389927257beb670610081360e5a03c5df9c258" 4901 - dependencies = [ 4902 - "quote", 4903 - "wasm-bindgen-macro-support", 4904 - ] 4905 - 4906 - [[package]] 4907 - name = "wasm-bindgen-macro-support" 4908 - version = "0.2.86" 4909 - source = "registry+https://github.com/rust-lang/crates.io-index" 4910 - checksum = "e128beba882dd1eb6200e1dc92ae6c5dbaa4311aa7bb211ca035779e5efc39f8" 4911 - dependencies = [ 4912 - "proc-macro2", 4913 - "quote", 4914 - "syn 2.0.16", 4915 - "wasm-bindgen-backend", 4916 - "wasm-bindgen-shared", 4917 - ] 4918 - 4919 - [[package]] 4920 - name = "wasm-bindgen-shared" 4921 - version = "0.2.86" 4922 - source = "registry+https://github.com/rust-lang/crates.io-index" 4923 - checksum = "ed9d5b4305409d1fc9482fee2d7f9bcbf24b3972bf59817ef757e23982242a93" 4924 - 4925 - [[package]] 4926 - name = "wasm-bindgen-test" 4927 - version = "0.3.36" 4928 - source = "registry+https://github.com/rust-lang/crates.io-index" 4929 - checksum = "c9e636f3a428ff62b3742ebc3c70e254dfe12b8c2b469d688ea59cdd4abcf502" 4930 - dependencies = [ 4931 - "console_error_panic_hook", 4932 - "js-sys", 4933 - "scoped-tls", 4934 - "wasm-bindgen", 4935 - "wasm-bindgen-futures", 4936 - "wasm-bindgen-test-macro", 4937 - ] 4938 - 4939 - [[package]] 4940 - name = "wasm-bindgen-test-macro" 4941 - version = "0.3.36" 4942 - source = "registry+https://github.com/rust-lang/crates.io-index" 4943 - checksum = "f18c1fad2f7c4958e7bcce014fa212f59a65d5e3721d0f77e6c0b27ede936ba3" 4944 - dependencies = [ 4945 - "proc-macro2", 4946 - "quote", 4947 - ] 4948 - 4949 - [[package]] 4950 - name = "web-sys" 4951 - version = "0.3.63" 4952 - source = "registry+https://github.com/rust-lang/crates.io-index" 4953 - checksum = "3bdd9ef4e984da1187bf8110c5cf5b845fbc87a23602cdf912386a76fcd3a7c2" 4954 - dependencies = [ 4955 - "js-sys", 4956 - "wasm-bindgen", 4957 - ] 4958 - 4959 - [[package]] 4960 - name = "webauthn-authenticator-rs" 4961 - version = "0.4.9" 4962 - source = "registry+https://github.com/rust-lang/crates.io-index" 4963 - checksum = "603b8602cae2d6c3706b6195765ff582389494d10c442d84a1de2ed5a25679ef" 4964 - dependencies = [ 4965 - "authenticator-ctap2-2021", 4966 - "base64urlsafedata", 4967 - "nom", 4968 - "openssl", 4969 - "rpassword 5.0.1", 4970 - "serde", 4971 - "serde_cbor_2", 4972 - "serde_json", 4973 - "tracing", 4974 - "url", 4975 - "uuid", 4976 - "webauthn-rs-proto", 4977 - "windows 0.41.0", 4978 - ] 4979 - 4980 - [[package]] 4981 - name = "webauthn-rs" 4982 - version = "0.4.8" 4983 - source = "registry+https://github.com/rust-lang/crates.io-index" 4984 - checksum = "2db00711c712414e93b019c4596315085792215bc2ac2d5872f9e8913b0a6316" 4985 - dependencies = [ 4986 - "base64urlsafedata", 4987 - "serde", 4988 - "tracing", 4989 - "url", 4990 - "uuid", 4991 - "webauthn-rs-core", 4992 - ] 4993 - 4994 - [[package]] 4995 - name = "webauthn-rs-core" 4996 - version = "0.4.9" 4997 - source = "registry+https://github.com/rust-lang/crates.io-index" 4998 - checksum = "294c78c83f12153a51e1cf1e6970b5da1397645dada39033a9c3173a8fc4fc2b" 4999 - dependencies = [ 5000 - "base64 0.13.1", 5001 - "base64urlsafedata", 5002 - "compact_jwt", 5003 - "der-parser", 5004 - "nom", 5005 - "openssl", 5006 - "rand 0.8.5", 5007 - "serde", 5008 - "serde_cbor_2", 5009 - "serde_json", 5010 - "thiserror", 5011 - "tracing", 5012 - "url", 5013 - "uuid", 5014 - "webauthn-rs-proto", 5015 - "x509-parser", 5016 - ] 5017 - 5018 - [[package]] 5019 - name = "webauthn-rs-proto" 5020 - version = "0.4.9" 5021 - source = "registry+https://github.com/rust-lang/crates.io-index" 5022 - checksum = "d24e638361a63ba5c0a0be6a60229490fcdf33740ed63df5bb6bdb627b52a138" 5023 - dependencies = [ 5024 - "base64urlsafedata", 5025 - "js-sys", 5026 - "serde", 5027 - "serde-wasm-bindgen", 5028 - "serde_json", 5029 - "url", 5030 - "wasm-bindgen", 5031 - "web-sys", 5032 - ] 5033 - 5034 - [[package]] 5035 - name = "whoami" 5036 - version = "1.4.0" 5037 - source = "registry+https://github.com/rust-lang/crates.io-index" 5038 - checksum = "2c70234412ca409cc04e864e89523cb0fc37f5e1344ebed5a3ebf4192b6b9f68" 5039 - dependencies = [ 5040 - "wasm-bindgen", 5041 - "web-sys", 5042 - ] 5043 - 5044 - [[package]] 5045 - name = "winapi" 5046 - version = "0.3.9" 5047 - source = "registry+https://github.com/rust-lang/crates.io-index" 5048 - checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 5049 - dependencies = [ 5050 - "winapi-i686-pc-windows-gnu", 5051 - "winapi-x86_64-pc-windows-gnu", 5052 - ] 5053 - 5054 - [[package]] 5055 - name = "winapi-i686-pc-windows-gnu" 5056 - version = "0.4.0" 5057 - source = "registry+https://github.com/rust-lang/crates.io-index" 5058 - checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 5059 - 5060 - [[package]] 5061 - name = "winapi-util" 5062 - version = "0.1.5" 5063 - source = "registry+https://github.com/rust-lang/crates.io-index" 5064 - checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" 5065 - dependencies = [ 5066 - "winapi", 5067 - ] 5068 - 5069 - [[package]] 5070 - name = "winapi-x86_64-pc-windows-gnu" 5071 - version = "0.4.0" 5072 - source = "registry+https://github.com/rust-lang/crates.io-index" 5073 - checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 5074 - 5075 - [[package]] 5076 - name = "windows" 5077 - version = "0.41.0" 5078 - source = "registry+https://github.com/rust-lang/crates.io-index" 5079 - checksum = "5a3ed69de2c1f8d0524a8a3417a80a85dd316a071745fbfdf5eb028b310058ab" 5080 - dependencies = [ 5081 - "windows_aarch64_gnullvm 0.41.0", 5082 - "windows_aarch64_msvc 0.41.0", 5083 - "windows_i686_gnu 0.41.0", 5084 - "windows_i686_msvc 0.41.0", 5085 - "windows_x86_64_gnu 0.41.0", 5086 - "windows_x86_64_gnullvm 0.41.0", 5087 - "windows_x86_64_msvc 0.41.0", 5088 - ] 5089 - 5090 - [[package]] 5091 - name = "windows" 5092 - version = "0.48.0" 5093 - source = "registry+https://github.com/rust-lang/crates.io-index" 5094 - checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 5095 - dependencies = [ 5096 - "windows-targets 0.48.0", 5097 - ] 5098 - 5099 - [[package]] 5100 - name = "windows-sys" 5101 - version = "0.42.0" 5102 - source = "registry+https://github.com/rust-lang/crates.io-index" 5103 - checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7" 5104 - dependencies = [ 5105 - "windows_aarch64_gnullvm 0.42.2", 5106 - "windows_aarch64_msvc 0.42.2", 5107 - "windows_i686_gnu 0.42.2", 5108 - "windows_i686_msvc 0.42.2", 5109 - "windows_x86_64_gnu 0.42.2", 5110 - "windows_x86_64_gnullvm 0.42.2", 5111 - "windows_x86_64_msvc 0.42.2", 5112 - ] 5113 - 5114 - [[package]] 5115 - name = "windows-sys" 5116 - version = "0.45.0" 5117 - source = "registry+https://github.com/rust-lang/crates.io-index" 5118 - checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" 5119 - dependencies = [ 5120 - "windows-targets 0.42.2", 5121 - ] 5122 - 5123 - [[package]] 5124 - name = "windows-sys" 5125 - version = "0.48.0" 5126 - source = "registry+https://github.com/rust-lang/crates.io-index" 5127 - checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 5128 - dependencies = [ 5129 - "windows-targets 0.48.0", 5130 - ] 5131 - 5132 - [[package]] 5133 - name = "windows-targets" 5134 - version = "0.42.2" 5135 - source = "registry+https://github.com/rust-lang/crates.io-index" 5136 - checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" 5137 - dependencies = [ 5138 - "windows_aarch64_gnullvm 0.42.2", 5139 - "windows_aarch64_msvc 0.42.2", 5140 - "windows_i686_gnu 0.42.2", 5141 - "windows_i686_msvc 0.42.2", 5142 - "windows_x86_64_gnu 0.42.2", 5143 - "windows_x86_64_gnullvm 0.42.2", 5144 - "windows_x86_64_msvc 0.42.2", 5145 - ] 5146 - 5147 - [[package]] 5148 - name = "windows-targets" 5149 - version = "0.48.0" 5150 - source = "registry+https://github.com/rust-lang/crates.io-index" 5151 - checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5" 5152 - dependencies = [ 5153 - "windows_aarch64_gnullvm 0.48.0", 5154 - "windows_aarch64_msvc 0.48.0", 5155 - "windows_i686_gnu 0.48.0", 5156 - "windows_i686_msvc 0.48.0", 5157 - "windows_x86_64_gnu 0.48.0", 5158 - "windows_x86_64_gnullvm 0.48.0", 5159 - "windows_x86_64_msvc 0.48.0", 5160 - ] 5161 - 5162 - [[package]] 5163 - name = "windows_aarch64_gnullvm" 5164 - version = "0.41.0" 5165 - source = "registry+https://github.com/rust-lang/crates.io-index" 5166 - checksum = "163d2761774f2278ecb4e6719e80b2b5e92e5a2be73a7bcd3ef624dd5e3091fd" 5167 - 5168 - [[package]] 5169 - name = "windows_aarch64_gnullvm" 5170 - version = "0.42.2" 5171 - source = "registry+https://github.com/rust-lang/crates.io-index" 5172 - checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" 5173 - 5174 - [[package]] 5175 - name = "windows_aarch64_gnullvm" 5176 - version = "0.48.0" 5177 - source = "registry+https://github.com/rust-lang/crates.io-index" 5178 - checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc" 5179 - 5180 - [[package]] 5181 - name = "windows_aarch64_msvc" 5182 - version = "0.41.0" 5183 - source = "registry+https://github.com/rust-lang/crates.io-index" 5184 - checksum = "ef005ff2bceb00d3b84166a359cc19084f9459754fd3fe5a504dee3dddcd0a0c" 5185 - 5186 - [[package]] 5187 - name = "windows_aarch64_msvc" 5188 - version = "0.42.2" 5189 - source = "registry+https://github.com/rust-lang/crates.io-index" 5190 - checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" 5191 - 5192 - [[package]] 5193 - name = "windows_aarch64_msvc" 5194 - version = "0.48.0" 5195 - source = "registry+https://github.com/rust-lang/crates.io-index" 5196 - checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3" 5197 - 5198 - [[package]] 5199 - name = "windows_i686_gnu" 5200 - version = "0.41.0" 5201 - source = "registry+https://github.com/rust-lang/crates.io-index" 5202 - checksum = "02b4df2d51e32f03f8b4b228e487828c03bcb36d97b216fc5463bcea5bb1440b" 5203 - 5204 - [[package]] 5205 - name = "windows_i686_gnu" 5206 - version = "0.42.2" 5207 - source = "registry+https://github.com/rust-lang/crates.io-index" 5208 - checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" 5209 - 5210 - [[package]] 5211 - name = "windows_i686_gnu" 5212 - version = "0.48.0" 5213 - source = "registry+https://github.com/rust-lang/crates.io-index" 5214 - checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241" 5215 - 5216 - [[package]] 5217 - name = "windows_i686_msvc" 5218 - version = "0.41.0" 5219 - source = "registry+https://github.com/rust-lang/crates.io-index" 5220 - checksum = "568a966834571f2f3267f07dd72b4d8507381f25e53d056808483b2637385ef7" 5221 - 5222 - [[package]] 5223 - name = "windows_i686_msvc" 5224 - version = "0.42.2" 5225 - source = "registry+https://github.com/rust-lang/crates.io-index" 5226 - checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" 5227 - 5228 - [[package]] 5229 - name = "windows_i686_msvc" 5230 - version = "0.48.0" 5231 - source = "registry+https://github.com/rust-lang/crates.io-index" 5232 - checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00" 5233 - 5234 - [[package]] 5235 - name = "windows_x86_64_gnu" 5236 - version = "0.41.0" 5237 - source = "registry+https://github.com/rust-lang/crates.io-index" 5238 - checksum = "fc395dac1adf444e276d096d933ae7961361c8cda3245cffef7a9b3a70a8f994" 5239 - 5240 - [[package]] 5241 - name = "windows_x86_64_gnu" 5242 - version = "0.42.2" 5243 - source = "registry+https://github.com/rust-lang/crates.io-index" 5244 - checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" 5245 - 5246 - [[package]] 5247 - name = "windows_x86_64_gnu" 5248 - version = "0.48.0" 5249 - source = "registry+https://github.com/rust-lang/crates.io-index" 5250 - checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1" 5251 - 5252 - [[package]] 5253 - name = "windows_x86_64_gnullvm" 5254 - version = "0.41.0" 5255 - source = "registry+https://github.com/rust-lang/crates.io-index" 5256 - checksum = "90e8ec22b715d5b436e1d59c8adad6c744dc20cd984710121d5836b4e8dbb5e0" 5257 - 5258 - [[package]] 5259 - name = "windows_x86_64_gnullvm" 5260 - version = "0.42.2" 5261 - source = "registry+https://github.com/rust-lang/crates.io-index" 5262 - checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" 5263 - 5264 - [[package]] 5265 - name = "windows_x86_64_gnullvm" 5266 - version = "0.48.0" 5267 - source = "registry+https://github.com/rust-lang/crates.io-index" 5268 - checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953" 5269 - 5270 - [[package]] 5271 - name = "windows_x86_64_msvc" 5272 - version = "0.41.0" 5273 - source = "registry+https://github.com/rust-lang/crates.io-index" 5274 - checksum = "8b9761f0216b669019df1512f6e25e5ee779bf61c5cdc43c7293858e7efd7926" 5275 - 5276 - [[package]] 5277 - name = "windows_x86_64_msvc" 5278 - version = "0.42.2" 5279 - source = "registry+https://github.com/rust-lang/crates.io-index" 5280 - checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" 5281 - 5282 - [[package]] 5283 - name = "windows_x86_64_msvc" 5284 - version = "0.48.0" 5285 - source = "registry+https://github.com/rust-lang/crates.io-index" 5286 - checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a" 5287 - 5288 - [[package]] 5289 - name = "winnow" 5290 - version = "0.4.6" 5291 - source = "registry+https://github.com/rust-lang/crates.io-index" 5292 - checksum = "61de7bac303dc551fe038e2b3cef0f571087a47571ea6e79a87692ac99b99699" 5293 - dependencies = [ 5294 - "memchr", 5295 - ] 5296 - 5297 - [[package]] 5298 - name = "winreg" 5299 - version = "0.10.1" 5300 - source = "registry+https://github.com/rust-lang/crates.io-index" 5301 - checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" 5302 - dependencies = [ 5303 - "winapi", 5304 - ] 5305 - 5306 - [[package]] 5307 - name = "x509-parser" 5308 - version = "0.13.2" 5309 - source = "registry+https://github.com/rust-lang/crates.io-index" 5310 - checksum = "9fb9bace5b5589ffead1afb76e43e34cff39cd0f3ce7e170ae0c29e53b88eb1c" 5311 - dependencies = [ 5312 - "asn1-rs", 5313 - "base64 0.13.1", 5314 - "data-encoding", 5315 - "der-parser", 5316 - "lazy_static", 5317 - "nom", 5318 - "oid-registry", 5319 - "rusticata-macros", 5320 - "thiserror", 5321 - "time 0.3.21", 5322 - ] 5323 - 5324 - [[package]] 5325 - name = "yew" 5326 - version = "0.20.0" 5327 - source = "registry+https://github.com/rust-lang/crates.io-index" 5328 - checksum = "5dbecfe44343b70cc2932c3eb445425969ae21754a8ab3a0966981c1cf7af1cc" 5329 - dependencies = [ 5330 - "console_error_panic_hook", 5331 - "futures", 5332 - "gloo", 5333 - "implicit-clone", 5334 - "indexmap", 5335 - "js-sys", 5336 - "prokio", 5337 - "rustversion", 5338 - "serde", 5339 - "slab", 5340 - "thiserror", 5341 - "tokio", 5342 - "tracing", 5343 - "wasm-bindgen", 5344 - "wasm-bindgen-futures", 5345 - "web-sys", 5346 - "yew-macro", 5347 - ] 5348 - 5349 - [[package]] 5350 - name = "yew-macro" 5351 - version = "0.20.0" 5352 - source = "registry+https://github.com/rust-lang/crates.io-index" 5353 - checksum = "b64c253c1d401f1ea868ca9988db63958cfa15a69f739101f338d6f05eea8301" 5354 - dependencies = [ 5355 - "boolinator", 5356 - "once_cell", 5357 - "prettyplease", 5358 - "proc-macro-error", 5359 - "proc-macro2", 5360 - "quote", 5361 - "syn 1.0.109", 5362 - ] 5363 - 5364 - [[package]] 5365 - name = "yew-router" 5366 - version = "0.17.0" 5367 - source = "registry+https://github.com/rust-lang/crates.io-index" 5368 - checksum = "426ee0486d2572a6c5e39fbdbc48b58d59bb555f3326f54631025266cf04146e" 5369 - dependencies = [ 5370 - "gloo", 5371 - "js-sys", 5372 - "route-recognizer 0.3.1", 5373 - "serde", 5374 - "serde_urlencoded", 5375 - "tracing", 5376 - "wasm-bindgen", 5377 - "web-sys", 5378 - "yew", 5379 - "yew-router-macro", 5380 - ] 5381 - 5382 - [[package]] 5383 - name = "yew-router-macro" 5384 - version = "0.17.0" 5385 - source = "registry+https://github.com/rust-lang/crates.io-index" 5386 - checksum = "89b249cdb39e0cddaf0644dedc781854524374664793479fdc01e6a65d6e6ae3" 5387 - dependencies = [ 5388 - "proc-macro2", 5389 - "quote", 5390 - "syn 1.0.109", 5391 - ] 5392 - 5393 - [[package]] 5394 - name = "zeroize" 5395 - version = "1.6.0" 5396 - source = "registry+https://github.com/rust-lang/crates.io-index" 5397 - checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" 5398 - dependencies = [ 5399 - "zeroize_derive", 5400 - ] 5401 - 5402 - [[package]] 5403 - name = "zeroize_derive" 5404 - version = "1.4.2" 5405 - source = "registry+https://github.com/rust-lang/crates.io-index" 5406 - checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" 5407 - dependencies = [ 5408 - "proc-macro2", 5409 - "quote", 5410 - "syn 2.0.16", 5411 - ] 5412 - 5413 - [[package]] 5414 - name = "zxcvbn" 5415 - version = "2.2.2" 5416 - source = "registry+https://github.com/rust-lang/crates.io-index" 5417 - checksum = "103fa851fff70ea29af380e87c25c48ff7faac5c530c70bd0e65366d4e0c94e4" 5418 - dependencies = [ 5419 - "derive_builder", 5420 - "fancy-regex", 5421 - "itertools", 5422 - "js-sys", 5423 - "lazy_static", 5424 - "quick-error", 5425 - "regex", 5426 - "time 0.3.21", 5427 - ]
+12 -21
pkgs/servers/kanidm/default.nix
··· 4 4 , nixosTests 5 5 , rustPlatform 6 6 , fetchFromGitHub 7 - , fetchpatch 8 7 , installShellFiles 9 8 , pkg-config 10 9 , udev 11 10 , openssl 12 11 , sqlite 13 12 , pam 13 + , bashInteractive 14 14 }: 15 15 16 16 let ··· 18 18 in 19 19 rustPlatform.buildRustPackage rec { 20 20 pname = "kanidm"; 21 - version = "1.1.0-alpha.12"; 21 + version = "1.1.0-beta.13"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = pname; 25 25 repo = pname; 26 - rev = "f5924443f08e462067937a5dd0e2c19e5e1255da"; 27 - hash = "sha256-kJUxVrGpczIdOqKQbgRp1xERfKP6C0SDQgWdjtSuvZ8="; 26 + # Latest 1.1.0-beta.13 tip 27 + rev = "5d1e2f90e6901017ab3ef9b5fbc10e25a5451fd2"; 28 + hash = "sha256-70yeHVOrCuC+H96UC84kly3CCQ+y1RGzF5K/2FIag/o="; 28 29 }; 29 30 30 - cargoLock = { 31 - lockFile = ./Cargo.lock; 32 - outputHashes = { 33 - "tracing-forest-0.1.5" = "sha256-L6auSKB4DCnZBZpx7spiikhSOD6i1W3erc3zjn+26Ao="; 34 - }; 35 - }; 31 + cargoHash = "sha256-Qdc+E5+k9NNE4s6eAnpkam56pc2JJPahkuT4lB328cY="; 36 32 37 33 KANIDM_BUILD_PROFILE = "release_nixos_${arch}"; 38 34 39 - patches = [ 40 - (fetchpatch { 41 - # Bring back x86_64-v1 microarchitecture level 42 - name = "cpu-opt-level.patch"; 43 - url = "https://github.com/kanidm/kanidm/commit/59c6723f7dfb2266eae45c3b2ddd377872a7a113.patch"; 44 - hash = "sha256-8rVEYitxvdVduQ/+AD/UG3v+mgT/VxkLoxNIXczUfCQ="; 45 - }) 46 - ]; 47 - 48 35 postPatch = 49 36 let 50 37 format = (formats.toml { }).generate "${KANIDM_BUILD_PROFILE}.toml"; 51 38 profile = { 39 + admin_bind_path = "/run/kanidmd/sock"; 40 + cpu_flags = if stdenv.isx86_64 then "x86_64_legacy" else "none"; 41 + default_config_path = "/etc/kanidm/server.toml"; 42 + default_unix_shell_path = "${lib.getBin bashInteractive}/bin/bash"; 52 43 web_ui_pkg_path = "@web_ui_pkg_path@"; 53 - cpu_flags = if stdenv.isx86_64 then "x86_64_legacy" else "none"; 54 44 }; 55 45 in 56 46 '' 57 47 cp ${format profile} libs/profiles/${KANIDM_BUILD_PROFILE}.toml 58 48 substituteInPlace libs/profiles/${KANIDM_BUILD_PROFILE}.toml \ 59 - --replace '@web_ui_pkg_path@' "$out/ui" 49 + --replace '@web_ui_pkg_path@' "${placeholder "out"}/ui" 60 50 ''; 61 51 62 52 nativeBuildInputs = [ ··· 92 82 passthru.tests = { inherit (nixosTests) kanidm; }; 93 83 94 84 meta = with lib; { 85 + changelog = "https://github.com/kanidm/kanidm/releases/tag/v${version}"; 95 86 description = "A simple, secure and fast identity management platform"; 96 87 homepage = "https://github.com/kanidm/kanidm"; 97 88 license = licenses.mpl20;