icechunk 1.1.17__tar.gz → 2.0.0a0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- icechunk-2.0.0a0/Cargo.lock +4718 -0
- icechunk-2.0.0a0/Cargo.toml +23 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/PKG-INFO +2 -63
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/Cargo.toml +29 -14
- icechunk-2.0.0a0/icechunk/examples/limits_chunk_refs.rs +134 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/examples/low_level_dataset.rs +2 -1
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/examples/multithreaded_get_chunk_refs.rs +2 -1
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/examples/multithreaded_store.rs +1 -1
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/flatbuffers/all.fbs +2 -1
- icechunk-2.0.0a0/icechunk/flatbuffers/common.fbs +21 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/flatbuffers/manifest.fbs +2 -2
- icechunk-2.0.0a0/icechunk/flatbuffers/repo.fbs +125 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/flatbuffers/snapshot.fbs +3 -12
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/flatbuffers/transaction_log.fbs +13 -4
- icechunk-2.0.0a0/icechunk/proptest-regressions/config.txt +7 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/asset_manager.rs +716 -120
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/bin/icechunk/main.rs +2 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/change_set.rs +486 -113
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/cli/config.rs +2 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/cli/interface.rs +5 -7
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/cli/mod.rs +2 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/config.rs +158 -63
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/conflicts/basic_solver.rs +4 -1
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/conflicts/detector.rs +9 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/conflicts/mod.rs +12 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/error.rs +10 -0
- icechunk-2.0.0a0/icechunk/src/format/attributes.rs +4 -0
- icechunk-2.0.0a0/icechunk/src/format/flatbuffers/all_generated.rs +6658 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/format/manifest.rs +15 -4
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/format/mod.rs +108 -7
- icechunk-2.0.0a0/icechunk/src/format/repo_info.rs +1521 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/format/serializers/mod.rs +51 -12
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/format/snapshot.rs +41 -13
- icechunk-2.0.0a0/icechunk/src/format/transaction_log.rs +771 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/inspect.rs +5 -4
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/lib.rs +35 -19
- icechunk-2.0.0a0/icechunk/src/migrations/mod.rs +457 -0
- icechunk-2.0.0a0/icechunk/src/ops/expiration_v1.rs +233 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/ops/gc.rs +327 -254
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/ops/manifests.rs +5 -2
- icechunk-2.0.0a0/icechunk/src/ops/mod.rs +188 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/ops/stats.rs +6 -13
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/refs.rs +121 -38
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/repository.rs +1101 -260
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/session.rs +1164 -318
- icechunk-2.0.0a0/icechunk/src/storage/logging.rs +150 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/storage/mod.rs +171 -295
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/storage/object_store.rs +139 -418
- icechunk-2.0.0a0/icechunk/src/storage/redirect.rs +341 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/storage/s3.rs +302 -595
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/store.rs +15 -6
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/strategies.rs +284 -47
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/stream_utils.rs +2 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/src/virtual_chunks.rs +10 -6
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/tests/test_concurrency.rs +11 -4
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/tests/test_distributed_writes.rs +17 -4
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/tests/test_gc.rs +65 -343
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/tests/test_large_manifests.rs +1 -1
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/tests/test_stats.rs +13 -18
- icechunk-2.0.0a0/icechunk/tests/test_storage.rs +958 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/tests/test_virtual_refs.rs +12 -4
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/Cargo.toml +7 -7
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/__init__.py +67 -7
- {icechunk-1.1.17 → icechunk-2.0.0a0/icechunk-python}/python/icechunk/_icechunk_python.pyi +287 -17
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/dask.py +2 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/repository.py +213 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/session.py +148 -4
- {icechunk-1.1.17 → icechunk-2.0.0a0/icechunk-python}/python/icechunk/storage.py +23 -1
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/config.rs +64 -17
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/conflicts.rs +74 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/errors.rs +3 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/lib.rs +37 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/repository.rs +731 -95
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/session.rs +189 -8
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/conftest.py +17 -4
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/0VYEJ6SEF59FBW7PN8E0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/2B5THGJ1KX3CM6VDS0B0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/2PGFBYC75TQ3KC9TGX70 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/2QVDGD6B35QE3PD873HG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/38ZJBEMJC4CT5CGSRTH0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/3B4SSBWQYEMCG4ZG91N0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/4264T92N97AVNFA1RRXG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/4BXTYZF4KSQ26FZ0AEKG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/5PYAXD95Y2YXBAJ7BS3G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/6FPJ04WZ54RCDD5QASNG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/6S1G8T8TBTYVQX6G56P0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/6XVMGBQ7TCN92CCA49W0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/7B2S5FTF33XCKZVXQDG0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/886D9QM31CN0DC83450G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/95PTPJQZ33SQDDGN68BG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/AR9HXH93D697DXTY91VG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/B2Y98VRVJMCNJT2YBXD0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/DBETARJW5Z3SKAPBCMWG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/EBZ2K21PBKXXS5FVQW00 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/EDWX1MPYBCQNWVEEVGPG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/FQNZDMJ7TX9GET1HNFZ0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/FZZ8J37EWN3RQ1H4G4MG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/G4DPCCAR1H93E8J6C3K0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/GK3PHR5FS7ANY06QWG70 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/H2PB4D123ZZ1PYP8QWQG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/H5WSPCWRFD1YA57TCTF0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/JK26TEYFD1MHC1FN5QQ0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/KCF4T3CA37RVSKVCD400 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/M34NP9DW3AJEKH8N7BM0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/M511AR8G78XKKDW65QMG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/MXXZ2G6ZWWMHG2BNW7HG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/NPK0H3EV56TAEG3Z9330 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/NPZQD57AEZHAKEFBZ9K0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/NQJTJS9PQ4VHRE58N0GG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/Q911RVVQ0EKWWZWWJ9F0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/QBHMDWWX919N6YG7Q700 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/QHCCRMBV7QW79RBGPCPG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/QJ6DWNQVXK1571KZ88V0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/QJ788RDGF6AVTNRXZBFG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/QQ84SV9F3M4WX0EE4ET0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/SFYHNKEMZJVF45W1S41G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/TE96DSKTEXF5MEKKHNNG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/VBPPHGBH848RA7Z4QH9G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/WS1YDPY2KVBKB9W5VTT0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/XDMKRBFTBT5MQ71BDRE0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/YHHCBZ4GDMZR0PGFZEV0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/Z36YFV65G14D0YG98ZS0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/chunks/ZGC3DR5JF6MWGCQ8PNT0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/config.yaml +20 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/05VC19ZP794YMR42WS0G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/09NGF1V9ADE2R1JADMB0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/1BDRKBXJSJ00FBAFR62G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/23CS3K56RYXMCPDZSA90 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/2KW69A63064B0ABXRAC0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/3K20NQMMY0JFG589K8PG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/5QCXNMJ5PGW524HM4X2G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/63PY17KJ3WT9TNYFVT80 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/6H65H84XKNVWQD844QTG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/6K862RRA4ZX6S69XTSCG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/6WA0HNA0XKMSW9Y5X7AG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/8SM0XZF614EB0W2RW6QG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/90T6DZ9Z3VY4YDB64NP0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/9FG7MP43CZR6KPX2S5PG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/9JPZ069QQBTYWQ8533D0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/D6H2VDFBW00D1C8FJ2CG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/D7BJR3Y32XY9B0XV4ZKG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/DHXDCKYFAZT2EEC1M04G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/DQ449BPS7CZ51FQNCSHG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/DW698P3XQFZWE1AGQ090 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/EFFGAJ4JPP44Q1GQEJG0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/ES8TNF4XHA4P8XRX56BG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/FV89KH0ZJA8863Z4SBMG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/HJJFVAX6VXKGHHPHTMFG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/J8Y2NRAERJ8B67XS8C1G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/M2E137KNPPP32JAHZKMG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/NVNFXM580ATSE0SNYZ20 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/QFGKR9MMTCCE4S82PYT0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/QXT7BWMAF0HPT0X816Z0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/R1H5C67M4HF61RRN1DDG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/R68838EDRFFQWR9KEFS0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/SB4YED27P09EAJ4WMYQG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/W9WNJFG5DM1JB99DRJ20 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/XQRV8VM9MAB4WN6RPC00 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/manifests/Z2AN639VEMTQGGS5P4E0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/overwritten/config.yaml.30734148059791.5XRG9V6QK7XRRSNDWA8G +20 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/overwritten/repo.30734148059725.62EMTM4TRVPG1X928F50 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/overwritten/repo.30734148059794.ADT7TX2VC87HF03DD360 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/overwritten/repo.30734148059822.PSGV85PQJW2WV40VAW6G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/overwritten/repo.30734148059859.WX09ZNMCS34JAW86XD10 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/repo +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/snapshots/0Z6K15F35ZZS78PRRJK0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/snapshots/1CECHNKREP0F1RSTCMT0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/snapshots/HPQQ6MGCRJD029TCQET0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/snapshots/PP97N5KCA4688DYM7KNG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/snapshots/V7EWTH8VACC9VYW7KXJG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/transactions/0Z6K15F35ZZS78PRRJK0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/transactions/HPQQ6MGCRJD029TCQET0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/transactions/PP97N5KCA4688DYM7KNG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2/transactions/V7EWTH8VACC9VYW7KXJG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/28H289BT7JSZKZ6W5F70 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/29CS30CK3D3CFVFBEZ80 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/39KTEACWZDMQ42C0TK5G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/3CQH7MY9P8QFNE5TWMZ0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/3JWEBSQZ1AQT9RK46JHG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/4DCZD8GC46090M65S46G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/4KXQX71CPA8ASE25X02G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/5M551EG8VHX6GK2RVYEG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/8Y59PE3EQ1NHY32W80PG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/9JSXG2S6R7JW530266FG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/9Q4DF3ZK93B35EW1Q0W0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/A14DFW1AMR9GJY82B480 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/C43XA0532YJN8FFJQSV0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/DB0FK4TGE2CYP5N5H5MG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/DN7QKGTXF72JRSP1R59G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/E06NN106F0RD1DKC57B0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/E88W8NWPPQ0DDP6MAQE0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/EDKREXA5PA5KMVMYT1T0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/EMXV4G2NH651YQHCN5SG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/F2FF589RGM5TQPJ4XS30 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/FX2THCNDEF1TPJVVW6CG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/GD7FA0K8HRGV0XK609W0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/HNW4TH4RRN5ECR7PH4Z0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/JH2K5GX77HJWDR3BRHN0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/KYA9AWYNRNH4KDN3YS1G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/MHYQZGW0T34H7566ND30 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/MJC2EWJ8DTBA7P46REFG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/N4EXVBQKBGCMTXX6PEJ0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/P6C9986C6R2P9EP30XCG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/P9JDEJ02DTDBGJDASRB0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/PAMW4ZQ7FVP7E1AZR2W0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/PZ5F8FQKKA144F08ANG0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/QDZDYMBSPJ4M0T34BEPG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/QEDGZDXTPJEX179WCT6G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/RQM2HG8XAD9KP8S2TRKG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/T394Y31WDT1VCVFY3A80 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/TXZ35HQMB7RHFJKRNXZG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/V66JMMKW77DCFEGRVSK0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/VGFD4TNTAETR77B9RK8G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/VJM5MNFQ7KQ7ERCWFNT0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/W4G0HS519TZDQBDAD01G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/XZAFNSMV272D9X70HC50 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/YFGVD91WZJM9FKAB4PQG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/YGWDY7HYDBVBPKSJYK40 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/YQ0KA7YQ737KNCT5F0BG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/YRS4NW2FJM8P66MCF8E0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/YWQDK4GG3H7JF189CN6G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/chunks/Z50RSERZRJZNTFRPDW80 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/config.yaml +18 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/15KJFGXKPM1KRGFZ52D0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/19KPV7V2275XRM01YAWG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/2PQ1EA39NB2VK7QK688G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/3QYVB4AX7J2XF0QAEX1G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/62CS3ENEZP4MJHPAW12G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/7V2NE5Q4H7SN9QF0ZHJ0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/7WT30WPG1HF0P2QXGV6G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/88Z1G93EH4VF9X28BBHG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/AAJX4KKQQH72RK949AA0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/B81H9ZEGPV7E15CWXA10 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/CZMYYDSX2SX36J47WN9G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/D5CVGKP2G5DP6C277YAG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/D6QG80A0HJW564ZXRBRG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/DDPY0EEPKZXW1ACW41HG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/DNTQPT8BPWQJ1N2K3KN0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/EN0XHAX4APG96CNX1PF0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/F22E2GTDKW73XFV884JG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/FM7YJ4BBE12X6CE0T4AG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/HB9W7VCB4QA786S2XJBG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/J3ZNDGTGA4AY29S8SJVG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/KCR2FSZ5WFVV39SRQWB0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/MZG15YADGEG849HP3DPG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/NGW2FB9H515MEMPRJCNG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/NYEQXA5QV0780CE19HFG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/PZCTNRCT17DDAH1Q8B00 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/Q8WDWGQ0T78AEXKHRV40 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/QDR73V4TZ4M6CW1PNPSG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/QYDWRAXGKCFNV0645F80 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/RF0DB8QD7R68HNHPAXVG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/RNXAWAZHFV0CDV8JJVBG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/RVXQ0DMYANQPV6X32690 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/TTSZ8VYDX0Y7PB6A13H0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/WS2BZ61Q1V564ZG6GSJG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/XXCGBC5VMRPB89PFMFGG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/manifests/ZEQVP57D4FWAZJ0BJV6G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/repo +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/snapshots/BYJMXJ1CHYE86YSHESR0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/snapshots/EH9VY081CEHEFY5Y11E0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/snapshots/QYX6FZ0NZAKSV5XMDSGG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/snapshots/W1ZXYGWWEXKXS2J6TQGG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/snapshots/X8NA4KMB3XYEDM2FAJEG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/transactions/BYJMXJ1CHYE86YSHESR0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/transactions/QYX6FZ0NZAKSV5XMDSGG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/transactions/W1ZXYGWWEXKXS2J6TQGG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v2-migrated/transactions/X8NA4KMB3XYEDM2FAJEG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/chunks/4K2JE645QXEXJ8BFDX70 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/chunks/E0FJFGF1YQVC8DT8M5MG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/chunks/SQQ3AVPBFNNNC7H1GP40 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/chunks/WT169S58742YW5ABZDAG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/config.yaml +20 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/manifests/36HQ5JPT76P59XT4X1TG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/manifests/S7FX8532BKFJJXRMXAAG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/manifests/WZ1JD746W93MJF2KW4F0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/manifests/X7802Y9XCC60FQ6MFG3G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059873.TW1NEHWH2D7298GNDEKG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059875.EHKAFE03WN6N4YRCC0GG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059890.Y132Q55GQZ24VFMW21GG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059891.AAY7TN7T20HF66NT4AH0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059893.RXVHR4739VD3EX3043DG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059894.TSSP1B440DHD9WSRF66G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059901.0NGA1A369AW4YHVH4YT0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059904.6GC36K84GD0NFHQEKJJG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059912.CZTTA9BT66T4YM1RT5J0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/overwritten/repo.30734148059935.RNN753SD89DT61YMPZY0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/repo +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/snapshots/1CECHNKREP0F1RSTCMT0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/snapshots/3N4TG29AR4CGKCVXCD2G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/snapshots/4JWE072CMB4WMAXG111G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/snapshots/75JMBMT1KC3F5W22MVCG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/snapshots/TVEX41PB5DWKEAWC2TWG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/snapshots/VB923QE7FM9GYHJCNS00 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/transactions/3N4TG29AR4CGKCVXCD2G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/transactions/4JWE072CMB4WMAXG111G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/transactions/75JMBMT1KC3F5W22MVCG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/transactions/TVEX41PB5DWKEAWC2TWG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2/transactions/VB923QE7FM9GYHJCNS00 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/chunks/09HEW2P03CSMHFAZY7DG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/chunks/52H0E4NSPN8SVRK9EVGG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/chunks/DWQ75SDC624XF9H326RG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/chunks/RW938N1KP2R4BHMW62QG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/config.yaml +36 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/manifests/CMYVHDWMSTG9R25780YG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/manifests/G3W2W8V6ZG09J6C21WE0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/manifests/Q04J7QW5RQ8D17TPA10G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/manifests/SHTEAP8C784YMZSJKBM0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/repo +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/snapshots/4QF8JA0YPDN51MHSSYVG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/snapshots/7XAF0Q905SH4938DN9CG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/snapshots/GC4YVH5SKBPEZCENYQE0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/snapshots/NXH3M0HJ7EEJ0699DPP0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/snapshots/P874YS3J196959RDHX7G +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/snapshots/XDZ162T1TYBEJMK99NPG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/transactions/4QF8JA0YPDN51MHSSYVG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/transactions/7XAF0Q905SH4938DN9CG +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/transactions/GC4YVH5SKBPEZCENYQE0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/transactions/NXH3M0HJ7EEJ0699DPP0 +0 -0
- icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v2-migrated/transactions/XDZ162T1TYBEJMK99NPG +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/run_xarray_backends_tests.py +7 -7
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_can_read_old.py +68 -22
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_commit_properties.py +4 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_concurrency.py +14 -9
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_config.py +46 -5
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_conflicts.py +42 -17
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_credentials.py +5 -1
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_dask.py +28 -11
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_distributed_append.py +4 -4
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_distributed_writers.py +12 -7
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_error.py +21 -9
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_gc.py +33 -18
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_inspect.py +2 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_logs.py +67 -23
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_manifest_splitting.py +36 -16
- icechunk-2.0.0a0/icechunk-python/tests/test_migration.py +33 -0
- icechunk-2.0.0a0/icechunk-python/tests/test_move.py +113 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_pickle.py +67 -5
- icechunk-2.0.0a0/icechunk-python/tests/test_redirect_storage.py +70 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_regressions.py +9 -6
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_session.py +41 -3
- icechunk-2.0.0a0/icechunk-python/tests/test_shift.py +89 -0
- icechunk-2.0.0a0/icechunk-python/tests/test_spec_versions.py +52 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_stateful_repo_ops.py +212 -73
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_stats.py +7 -3
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_store.py +21 -18
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_timetravel.py +331 -58
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_virtual_ref.py +18 -6
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_xarray.py +14 -6
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_zarr/test_array.py +8 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_zarr/test_group.py +5 -5
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_zarr/test_properties.py +0 -7
- icechunk-2.0.0a0/icechunk-python/tests/test_zarr/test_stateful.py +348 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_zarr/test_store/test_core.py +6 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_zarr/test_store/test_icechunk_store.py +18 -13
- {icechunk-1.1.17 → icechunk-2.0.0a0}/pyproject.toml +20 -49
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/__init__.py +67 -7
- {icechunk-1.1.17/icechunk-python → icechunk-2.0.0a0}/python/icechunk/_icechunk_python.pyi +287 -17
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/dask.py +2 -2
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/repository.py +213 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/session.py +148 -4
- {icechunk-1.1.17/icechunk-python → icechunk-2.0.0a0}/python/icechunk/storage.py +23 -1
- icechunk-1.1.17/icechunk/flatbuffers/object_ids.fbs +0 -11
- icechunk-1.1.17/icechunk/src/format/attributes.rs +0 -2
- icechunk-1.1.17/icechunk/src/format/flatbuffers/all_generated.rs +0 -3115
- icechunk-1.1.17/icechunk/src/format/transaction_log.rs +0 -350
- icechunk-1.1.17/icechunk/src/ops/mod.rs +0 -111
- icechunk-1.1.17/icechunk/src/storage/logging.rs +0 -247
- icechunk-1.1.17/icechunk/tests/test_storage.rs +0 -702
- icechunk-1.1.17/icechunk-python/Cargo.lock +0 -2873
- icechunk-1.1.17/icechunk-python/tests/test_zarr/test_stateful.py +0 -402
- {icechunk-1.1.17 → icechunk-2.0.0a0}/LICENSE +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/proptest-regressions/dataset.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/proptest-regressions/format/manifest.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/proptest-regressions/manifest.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/proptest-regressions/session.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/proptest-regressions/storage/mod.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/proptest-regressions/storage/s3.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/proptest-regressions/storage/virtual_ref.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk/tests/common/mod.rs +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-macros/Cargo.toml +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-macros/src/lib.rs +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/.gitignore +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/LICENSE +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/__init__.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/coiled_runner.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/conftest.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/create_era5.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/datasets.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/envs/icechunk-alpha-12.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/envs/icechunk-alpha-release.txt +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/helpers.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/lib.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/most_recent.sh +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/pytest.ini +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/runner.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/tasks.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/test_benchmark_reads.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/benchmarks/test_benchmark_writes.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/examples/bank_accounts.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/examples/dask_write.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/examples/high_concurrency.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/examples/mpwrite.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/examples/run_in_ci.sh +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/integration_tests/test_r2.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/credentials.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/distributed.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/py.typed +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/store.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/testing/strategies.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/vendor/__init__.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/vendor/xarray.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/python/icechunk/xarray.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/scripts/check_xarray_docs_sync.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/scripts/known-xarray-doc-diffs.json +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/pickle.rs +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/stats.rs +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/store.rs +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/src/streams.rs +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/__init__.py +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/28H289BT7JSZKZ6W5F70 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/29CS30CK3D3CFVFBEZ80 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/39KTEACWZDMQ42C0TK5G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/3CQH7MY9P8QFNE5TWMZ0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/3JWEBSQZ1AQT9RK46JHG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/4DCZD8GC46090M65S46G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/4KXQX71CPA8ASE25X02G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/5M551EG8VHX6GK2RVYEG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/8Y59PE3EQ1NHY32W80PG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/9JSXG2S6R7JW530266FG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/9Q4DF3ZK93B35EW1Q0W0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/A14DFW1AMR9GJY82B480 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/C43XA0532YJN8FFJQSV0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/DB0FK4TGE2CYP5N5H5MG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/DN7QKGTXF72JRSP1R59G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/E06NN106F0RD1DKC57B0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/E88W8NWPPQ0DDP6MAQE0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/EDKREXA5PA5KMVMYT1T0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/EMXV4G2NH651YQHCN5SG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/F2FF589RGM5TQPJ4XS30 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/FX2THCNDEF1TPJVVW6CG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/GD7FA0K8HRGV0XK609W0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/HNW4TH4RRN5ECR7PH4Z0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/JH2K5GX77HJWDR3BRHN0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/KYA9AWYNRNH4KDN3YS1G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/MHYQZGW0T34H7566ND30 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/MJC2EWJ8DTBA7P46REFG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/N4EXVBQKBGCMTXX6PEJ0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/P6C9986C6R2P9EP30XCG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/P9JDEJ02DTDBGJDASRB0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/PAMW4ZQ7FVP7E1AZR2W0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/PZ5F8FQKKA144F08ANG0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/QDZDYMBSPJ4M0T34BEPG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/QEDGZDXTPJEX179WCT6G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/RQM2HG8XAD9KP8S2TRKG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/T394Y31WDT1VCVFY3A80 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/TXZ35HQMB7RHFJKRNXZG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/V66JMMKW77DCFEGRVSK0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/VGFD4TNTAETR77B9RK8G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/VJM5MNFQ7KQ7ERCWFNT0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/W4G0HS519TZDQBDAD01G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/XZAFNSMV272D9X70HC50 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/YFGVD91WZJM9FKAB4PQG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/YGWDY7HYDBVBPKSJYK40 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/YQ0KA7YQ737KNCT5F0BG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/YRS4NW2FJM8P66MCF8E0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/YWQDK4GG3H7JF189CN6G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/chunks/Z50RSERZRJZNTFRPDW80 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/config.yaml +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/15KJFGXKPM1KRGFZ52D0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/19KPV7V2275XRM01YAWG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/2PQ1EA39NB2VK7QK688G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/3QYVB4AX7J2XF0QAEX1G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/62CS3ENEZP4MJHPAW12G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/7V2NE5Q4H7SN9QF0ZHJ0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/7WT30WPG1HF0P2QXGV6G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/88Z1G93EH4VF9X28BBHG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/AAJX4KKQQH72RK949AA0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/B81H9ZEGPV7E15CWXA10 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/CZMYYDSX2SX36J47WN9G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/D5CVGKP2G5DP6C277YAG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/D6QG80A0HJW564ZXRBRG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/DDPY0EEPKZXW1ACW41HG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/DNTQPT8BPWQJ1N2K3KN0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/EN0XHAX4APG96CNX1PF0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/F22E2GTDKW73XFV884JG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/FM7YJ4BBE12X6CE0T4AG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/HB9W7VCB4QA786S2XJBG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/J3ZNDGTGA4AY29S8SJVG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/KCR2FSZ5WFVV39SRQWB0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/MZG15YADGEG849HP3DPG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/NGW2FB9H515MEMPRJCNG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/NYEQXA5QV0780CE19HFG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/PZCTNRCT17DDAH1Q8B00 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/Q8WDWGQ0T78AEXKHRV40 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/QDR73V4TZ4M6CW1PNPSG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/QYDWRAXGKCFNV0645F80 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/RF0DB8QD7R68HNHPAXVG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/RNXAWAZHFV0CDV8JJVBG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/RVXQ0DMYANQPV6X32690 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/TTSZ8VYDX0Y7PB6A13H0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/WS2BZ61Q1V564ZG6GSJG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/XXCGBC5VMRPB89PFMFGG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/manifests/ZEQVP57D4FWAZJ0BJV6G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/refs/branch.main/ref.json +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/snapshots/BYJMXJ1CHYE86YSHESR0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/snapshots/EH9VY081CEHEFY5Y11E0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/snapshots/QYX6FZ0NZAKSV5XMDSGG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/snapshots/W1ZXYGWWEXKXS2J6TQGG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/snapshots/X8NA4KMB3XYEDM2FAJEG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/transactions/BYJMXJ1CHYE86YSHESR0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/transactions/QYX6FZ0NZAKSV5XMDSGG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/transactions/W1ZXYGWWEXKXS2J6TQGG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/split-repo → icechunk-2.0.0a0/icechunk-python/tests/data/split-repo-v1}/transactions/X8NA4KMB3XYEDM2FAJEG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/chunks/09HEW2P03CSMHFAZY7DG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/chunks/52H0E4NSPN8SVRK9EVGG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/chunks/DWQ75SDC624XF9H326RG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/chunks/RW938N1KP2R4BHMW62QG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/config.yaml +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/manifests/CMYVHDWMSTG9R25780YG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/manifests/G3W2W8V6ZG09J6C21WE0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/manifests/Q04J7QW5RQ8D17TPA10G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/manifests/SHTEAP8C784YMZSJKBM0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/refs/branch.main/ref.json +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/refs/branch.my-branch/ref.json +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/refs/tag.deleted/ref.json +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/refs/tag.deleted/ref.json.deleted +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/refs/tag.it also works!/ref.json +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/refs/tag.it works!/ref.json +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/snapshots/4QF8JA0YPDN51MHSSYVG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/snapshots/7XAF0Q905SH4938DN9CG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/snapshots/GC4YVH5SKBPEZCENYQE0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/snapshots/NXH3M0HJ7EEJ0699DPP0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/snapshots/P874YS3J196959RDHX7G +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/snapshots/XDZ162T1TYBEJMK99NPG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/transactions/4QF8JA0YPDN51MHSSYVG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/transactions/7XAF0Q905SH4938DN9CG +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/transactions/GC4YVH5SKBPEZCENYQE0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/transactions/NXH3M0HJ7EEJ0699DPP0 +0 -0
- {icechunk-1.1.17/icechunk-python/tests/data/test-repo → icechunk-2.0.0a0/icechunk-python/tests/data/test-repo-v1}/transactions/XDZ162T1TYBEJMK99NPG +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_debuginfo.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_zarr/__init__.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/icechunk-python/tests/test_zarr/test_store/__init__.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/credentials.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/distributed.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/py.typed +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/store.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/testing/strategies.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/vendor/__init__.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/vendor/xarray.py +0 -0
- {icechunk-1.1.17 → icechunk-2.0.0a0}/python/icechunk/xarray.py +0 -0
|
@@ -0,0 +1,4718 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "addr2line"
|
|
7
|
+
version = "0.25.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"gimli",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "adler2"
|
|
16
|
+
version = "2.0.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ahash"
|
|
22
|
+
version = "0.8.12"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"cfg-if",
|
|
27
|
+
"getrandom 0.3.4",
|
|
28
|
+
"once_cell",
|
|
29
|
+
"version_check",
|
|
30
|
+
"zerocopy",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "aho-corasick"
|
|
35
|
+
version = "1.1.4"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
38
|
+
dependencies = [
|
|
39
|
+
"memchr",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "allocator-api2"
|
|
44
|
+
version = "0.2.21"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "android_system_properties"
|
|
50
|
+
version = "0.1.5"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
53
|
+
dependencies = [
|
|
54
|
+
"libc",
|
|
55
|
+
]
|
|
56
|
+
|
|
57
|
+
[[package]]
|
|
58
|
+
name = "anstream"
|
|
59
|
+
version = "0.6.21"
|
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
61
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
62
|
+
dependencies = [
|
|
63
|
+
"anstyle",
|
|
64
|
+
"anstyle-parse",
|
|
65
|
+
"anstyle-query",
|
|
66
|
+
"anstyle-wincon",
|
|
67
|
+
"colorchoice",
|
|
68
|
+
"is_terminal_polyfill",
|
|
69
|
+
"utf8parse",
|
|
70
|
+
]
|
|
71
|
+
|
|
72
|
+
[[package]]
|
|
73
|
+
name = "anstyle"
|
|
74
|
+
version = "1.0.13"
|
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "anstyle-parse"
|
|
80
|
+
version = "0.2.7"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"utf8parse",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "anstyle-query"
|
|
89
|
+
version = "1.1.5"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"windows-sys 0.61.2",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "anstyle-wincon"
|
|
98
|
+
version = "3.0.11"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"anstyle",
|
|
103
|
+
"once_cell_polyfill",
|
|
104
|
+
"windows-sys 0.61.2",
|
|
105
|
+
]
|
|
106
|
+
|
|
107
|
+
[[package]]
|
|
108
|
+
name = "anyhow"
|
|
109
|
+
version = "1.0.100"
|
|
110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
111
|
+
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "assert_fs"
|
|
115
|
+
version = "1.1.3"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "a652f6cb1f516886fcfee5e7a5c078b9ade62cfcb889524efe5a64d682dd27a9"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"anstyle",
|
|
120
|
+
"doc-comment",
|
|
121
|
+
"globwalk",
|
|
122
|
+
"predicates",
|
|
123
|
+
"predicates-core",
|
|
124
|
+
"predicates-tree",
|
|
125
|
+
"tempfile",
|
|
126
|
+
]
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "async-recursion"
|
|
130
|
+
version = "1.1.1"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"proc-macro2",
|
|
135
|
+
"quote",
|
|
136
|
+
"syn 2.0.114",
|
|
137
|
+
]
|
|
138
|
+
|
|
139
|
+
[[package]]
|
|
140
|
+
name = "async-stream"
|
|
141
|
+
version = "0.3.6"
|
|
142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
143
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
144
|
+
dependencies = [
|
|
145
|
+
"async-stream-impl",
|
|
146
|
+
"futures-core",
|
|
147
|
+
"pin-project-lite",
|
|
148
|
+
]
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "async-stream-impl"
|
|
152
|
+
version = "0.3.6"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"proc-macro2",
|
|
157
|
+
"quote",
|
|
158
|
+
"syn 2.0.114",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "async-trait"
|
|
163
|
+
version = "0.1.89"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"proc-macro2",
|
|
168
|
+
"quote",
|
|
169
|
+
"syn 2.0.114",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "atomic-waker"
|
|
174
|
+
version = "1.1.2"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "autocfg"
|
|
180
|
+
version = "1.5.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "aws-config"
|
|
186
|
+
version = "1.8.12"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "96571e6996817bf3d58f6b569e4b9fd2e9d2fcf9f7424eed07b2ce9bb87535e5"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"aws-credential-types",
|
|
191
|
+
"aws-runtime",
|
|
192
|
+
"aws-sdk-sso",
|
|
193
|
+
"aws-sdk-ssooidc",
|
|
194
|
+
"aws-sdk-sts",
|
|
195
|
+
"aws-smithy-async",
|
|
196
|
+
"aws-smithy-http",
|
|
197
|
+
"aws-smithy-json",
|
|
198
|
+
"aws-smithy-runtime",
|
|
199
|
+
"aws-smithy-runtime-api",
|
|
200
|
+
"aws-smithy-types",
|
|
201
|
+
"aws-types",
|
|
202
|
+
"bytes",
|
|
203
|
+
"fastrand",
|
|
204
|
+
"hex",
|
|
205
|
+
"http 1.4.0",
|
|
206
|
+
"ring",
|
|
207
|
+
"time",
|
|
208
|
+
"tokio",
|
|
209
|
+
"tracing",
|
|
210
|
+
"url",
|
|
211
|
+
"zeroize",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "aws-credential-types"
|
|
216
|
+
version = "1.2.11"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "3cd362783681b15d136480ad555a099e82ecd8e2d10a841e14dfd0078d67fee3"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"aws-smithy-async",
|
|
221
|
+
"aws-smithy-runtime-api",
|
|
222
|
+
"aws-smithy-types",
|
|
223
|
+
"zeroize",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "aws-lc-rs"
|
|
228
|
+
version = "1.15.2"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "6a88aab2464f1f25453baa7a07c84c5b7684e274054ba06817f382357f77a288"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"aws-lc-sys",
|
|
233
|
+
"zeroize",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "aws-lc-sys"
|
|
238
|
+
version = "0.35.0"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "b45afffdee1e7c9126814751f88dddc747f41d91da16c9551a0f1e8a11e788a1"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"cc",
|
|
243
|
+
"cmake",
|
|
244
|
+
"dunce",
|
|
245
|
+
"fs_extra",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "aws-runtime"
|
|
250
|
+
version = "1.5.18"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "959dab27ce613e6c9658eb3621064d0e2027e5f2acb65bc526a43577facea557"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"aws-credential-types",
|
|
255
|
+
"aws-sigv4",
|
|
256
|
+
"aws-smithy-async",
|
|
257
|
+
"aws-smithy-eventstream",
|
|
258
|
+
"aws-smithy-http",
|
|
259
|
+
"aws-smithy-runtime",
|
|
260
|
+
"aws-smithy-runtime-api",
|
|
261
|
+
"aws-smithy-types",
|
|
262
|
+
"aws-types",
|
|
263
|
+
"bytes",
|
|
264
|
+
"fastrand",
|
|
265
|
+
"http 0.2.12",
|
|
266
|
+
"http-body 0.4.6",
|
|
267
|
+
"percent-encoding",
|
|
268
|
+
"pin-project-lite",
|
|
269
|
+
"tracing",
|
|
270
|
+
"uuid",
|
|
271
|
+
]
|
|
272
|
+
|
|
273
|
+
[[package]]
|
|
274
|
+
name = "aws-sdk-s3"
|
|
275
|
+
version = "1.120.0"
|
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
277
|
+
checksum = "06673901e961f20fa8d7da907da48f7ad6c1b383e3726c22bd418900f015abe1"
|
|
278
|
+
dependencies = [
|
|
279
|
+
"aws-credential-types",
|
|
280
|
+
"aws-runtime",
|
|
281
|
+
"aws-sigv4",
|
|
282
|
+
"aws-smithy-async",
|
|
283
|
+
"aws-smithy-checksums",
|
|
284
|
+
"aws-smithy-eventstream",
|
|
285
|
+
"aws-smithy-http",
|
|
286
|
+
"aws-smithy-json",
|
|
287
|
+
"aws-smithy-observability",
|
|
288
|
+
"aws-smithy-runtime",
|
|
289
|
+
"aws-smithy-runtime-api",
|
|
290
|
+
"aws-smithy-types",
|
|
291
|
+
"aws-smithy-xml",
|
|
292
|
+
"aws-types",
|
|
293
|
+
"bytes",
|
|
294
|
+
"fastrand",
|
|
295
|
+
"hex",
|
|
296
|
+
"hmac",
|
|
297
|
+
"http 0.2.12",
|
|
298
|
+
"http 1.4.0",
|
|
299
|
+
"http-body 0.4.6",
|
|
300
|
+
"lru",
|
|
301
|
+
"percent-encoding",
|
|
302
|
+
"regex-lite",
|
|
303
|
+
"sha2",
|
|
304
|
+
"tracing",
|
|
305
|
+
"url",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "aws-sdk-sso"
|
|
310
|
+
version = "1.91.0"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "8ee6402a36f27b52fe67661c6732d684b2635152b676aa2babbfb5204f99115d"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"aws-credential-types",
|
|
315
|
+
"aws-runtime",
|
|
316
|
+
"aws-smithy-async",
|
|
317
|
+
"aws-smithy-http",
|
|
318
|
+
"aws-smithy-json",
|
|
319
|
+
"aws-smithy-runtime",
|
|
320
|
+
"aws-smithy-runtime-api",
|
|
321
|
+
"aws-smithy-types",
|
|
322
|
+
"aws-types",
|
|
323
|
+
"bytes",
|
|
324
|
+
"fastrand",
|
|
325
|
+
"http 0.2.12",
|
|
326
|
+
"regex-lite",
|
|
327
|
+
"tracing",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "aws-sdk-ssooidc"
|
|
332
|
+
version = "1.93.0"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "a45a7f750bbd170ee3677671ad782d90b894548f4e4ae168302c57ec9de5cb3e"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"aws-credential-types",
|
|
337
|
+
"aws-runtime",
|
|
338
|
+
"aws-smithy-async",
|
|
339
|
+
"aws-smithy-http",
|
|
340
|
+
"aws-smithy-json",
|
|
341
|
+
"aws-smithy-runtime",
|
|
342
|
+
"aws-smithy-runtime-api",
|
|
343
|
+
"aws-smithy-types",
|
|
344
|
+
"aws-types",
|
|
345
|
+
"bytes",
|
|
346
|
+
"fastrand",
|
|
347
|
+
"http 0.2.12",
|
|
348
|
+
"regex-lite",
|
|
349
|
+
"tracing",
|
|
350
|
+
]
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "aws-sdk-sts"
|
|
354
|
+
version = "1.95.0"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "55542378e419558e6b1f398ca70adb0b2088077e79ad9f14eb09441f2f7b2164"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"aws-credential-types",
|
|
359
|
+
"aws-runtime",
|
|
360
|
+
"aws-smithy-async",
|
|
361
|
+
"aws-smithy-http",
|
|
362
|
+
"aws-smithy-json",
|
|
363
|
+
"aws-smithy-query",
|
|
364
|
+
"aws-smithy-runtime",
|
|
365
|
+
"aws-smithy-runtime-api",
|
|
366
|
+
"aws-smithy-types",
|
|
367
|
+
"aws-smithy-xml",
|
|
368
|
+
"aws-types",
|
|
369
|
+
"fastrand",
|
|
370
|
+
"http 0.2.12",
|
|
371
|
+
"regex-lite",
|
|
372
|
+
"tracing",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "aws-sigv4"
|
|
377
|
+
version = "1.3.7"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "69e523e1c4e8e7e8ff219d732988e22bfeae8a1cafdbe6d9eca1546fa080be7c"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"aws-credential-types",
|
|
382
|
+
"aws-smithy-eventstream",
|
|
383
|
+
"aws-smithy-http",
|
|
384
|
+
"aws-smithy-runtime-api",
|
|
385
|
+
"aws-smithy-types",
|
|
386
|
+
"bytes",
|
|
387
|
+
"crypto-bigint 0.5.5",
|
|
388
|
+
"form_urlencoded",
|
|
389
|
+
"hex",
|
|
390
|
+
"hmac",
|
|
391
|
+
"http 0.2.12",
|
|
392
|
+
"http 1.4.0",
|
|
393
|
+
"p256",
|
|
394
|
+
"percent-encoding",
|
|
395
|
+
"ring",
|
|
396
|
+
"sha2",
|
|
397
|
+
"subtle",
|
|
398
|
+
"time",
|
|
399
|
+
"tracing",
|
|
400
|
+
"zeroize",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "aws-smithy-async"
|
|
405
|
+
version = "1.2.7"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "9ee19095c7c4dda59f1697d028ce704c24b2d33c6718790c7f1d5a3015b4107c"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"futures-util",
|
|
410
|
+
"pin-project-lite",
|
|
411
|
+
"tokio",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "aws-smithy-checksums"
|
|
416
|
+
version = "0.63.13"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "23374b9170cbbcc6f5df8dc5ebb9b6c5c28a3c8f599f0e8b8b10eb6f4a5c6e74"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"aws-smithy-http",
|
|
421
|
+
"aws-smithy-types",
|
|
422
|
+
"bytes",
|
|
423
|
+
"crc-fast",
|
|
424
|
+
"hex",
|
|
425
|
+
"http 0.2.12",
|
|
426
|
+
"http-body 0.4.6",
|
|
427
|
+
"md-5",
|
|
428
|
+
"pin-project-lite",
|
|
429
|
+
"sha1",
|
|
430
|
+
"sha2",
|
|
431
|
+
"tracing",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "aws-smithy-eventstream"
|
|
436
|
+
version = "0.60.14"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "dc12f8b310e38cad85cf3bef45ad236f470717393c613266ce0a89512286b650"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"aws-smithy-types",
|
|
441
|
+
"bytes",
|
|
442
|
+
"crc32fast",
|
|
443
|
+
]
|
|
444
|
+
|
|
445
|
+
[[package]]
|
|
446
|
+
name = "aws-smithy-http"
|
|
447
|
+
version = "0.62.6"
|
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
449
|
+
checksum = "826141069295752372f8203c17f28e30c464d22899a43a0c9fd9c458d469c88b"
|
|
450
|
+
dependencies = [
|
|
451
|
+
"aws-smithy-eventstream",
|
|
452
|
+
"aws-smithy-runtime-api",
|
|
453
|
+
"aws-smithy-types",
|
|
454
|
+
"bytes",
|
|
455
|
+
"bytes-utils",
|
|
456
|
+
"futures-core",
|
|
457
|
+
"futures-util",
|
|
458
|
+
"http 0.2.12",
|
|
459
|
+
"http 1.4.0",
|
|
460
|
+
"http-body 0.4.6",
|
|
461
|
+
"percent-encoding",
|
|
462
|
+
"pin-project-lite",
|
|
463
|
+
"pin-utils",
|
|
464
|
+
"tracing",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "aws-smithy-http-client"
|
|
469
|
+
version = "1.1.5"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "59e62db736db19c488966c8d787f52e6270be565727236fd5579eaa301e7bc4a"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"aws-smithy-async",
|
|
474
|
+
"aws-smithy-runtime-api",
|
|
475
|
+
"aws-smithy-types",
|
|
476
|
+
"h2 0.3.27",
|
|
477
|
+
"h2 0.4.12",
|
|
478
|
+
"http 0.2.12",
|
|
479
|
+
"http 1.4.0",
|
|
480
|
+
"http-body 0.4.6",
|
|
481
|
+
"hyper 0.14.32",
|
|
482
|
+
"hyper 1.8.1",
|
|
483
|
+
"hyper-rustls 0.24.2",
|
|
484
|
+
"hyper-rustls 0.27.7",
|
|
485
|
+
"hyper-util",
|
|
486
|
+
"pin-project-lite",
|
|
487
|
+
"rustls 0.21.12",
|
|
488
|
+
"rustls 0.23.35",
|
|
489
|
+
"rustls-native-certs",
|
|
490
|
+
"rustls-pki-types",
|
|
491
|
+
"tokio",
|
|
492
|
+
"tokio-rustls 0.26.4",
|
|
493
|
+
"tower",
|
|
494
|
+
"tracing",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "aws-smithy-json"
|
|
499
|
+
version = "0.61.9"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "49fa1213db31ac95288d981476f78d05d9cbb0353d22cdf3472cc05bb02f6551"
|
|
502
|
+
dependencies = [
|
|
503
|
+
"aws-smithy-types",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "aws-smithy-observability"
|
|
508
|
+
version = "0.2.0"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "ef1fcbefc7ece1d70dcce29e490f269695dfca2d2bacdeaf9e5c3f799e4e6a42"
|
|
511
|
+
dependencies = [
|
|
512
|
+
"aws-smithy-runtime-api",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "aws-smithy-query"
|
|
517
|
+
version = "0.60.9"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "ae5d689cf437eae90460e944a58b5668530d433b4ff85789e69d2f2a556e057d"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"aws-smithy-types",
|
|
522
|
+
"urlencoding",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "aws-smithy-runtime"
|
|
527
|
+
version = "1.9.8"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "bb5b6167fcdf47399024e81ac08e795180c576a20e4d4ce67949f9a88ae37dc1"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"aws-smithy-async",
|
|
532
|
+
"aws-smithy-http",
|
|
533
|
+
"aws-smithy-http-client",
|
|
534
|
+
"aws-smithy-observability",
|
|
535
|
+
"aws-smithy-runtime-api",
|
|
536
|
+
"aws-smithy-types",
|
|
537
|
+
"bytes",
|
|
538
|
+
"fastrand",
|
|
539
|
+
"http 0.2.12",
|
|
540
|
+
"http 1.4.0",
|
|
541
|
+
"http-body 0.4.6",
|
|
542
|
+
"http-body 1.0.1",
|
|
543
|
+
"pin-project-lite",
|
|
544
|
+
"pin-utils",
|
|
545
|
+
"tokio",
|
|
546
|
+
"tracing",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "aws-smithy-runtime-api"
|
|
551
|
+
version = "1.10.0"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "efce7aaaf59ad53c5412f14fc19b2d5c6ab2c3ec688d272fd31f76ec12f44fb0"
|
|
554
|
+
dependencies = [
|
|
555
|
+
"aws-smithy-async",
|
|
556
|
+
"aws-smithy-types",
|
|
557
|
+
"bytes",
|
|
558
|
+
"http 0.2.12",
|
|
559
|
+
"http 1.4.0",
|
|
560
|
+
"pin-project-lite",
|
|
561
|
+
"tokio",
|
|
562
|
+
"tracing",
|
|
563
|
+
"zeroize",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "aws-smithy-types"
|
|
568
|
+
version = "1.3.6"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "65f172bcb02424eb94425db8aed1b6d583b5104d4d5ddddf22402c661a320048"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"base64-simd",
|
|
573
|
+
"bytes",
|
|
574
|
+
"bytes-utils",
|
|
575
|
+
"futures-core",
|
|
576
|
+
"http 0.2.12",
|
|
577
|
+
"http 1.4.0",
|
|
578
|
+
"http-body 0.4.6",
|
|
579
|
+
"http-body 1.0.1",
|
|
580
|
+
"http-body-util",
|
|
581
|
+
"itoa",
|
|
582
|
+
"num-integer",
|
|
583
|
+
"pin-project-lite",
|
|
584
|
+
"pin-utils",
|
|
585
|
+
"ryu",
|
|
586
|
+
"serde",
|
|
587
|
+
"time",
|
|
588
|
+
"tokio",
|
|
589
|
+
"tokio-util",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "aws-smithy-types-convert"
|
|
594
|
+
version = "0.60.11"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "b70bc27e41d5ed80b376602ff4becdab6ea8489403fad3abbfea2c9c825c1e1e"
|
|
597
|
+
dependencies = [
|
|
598
|
+
"aws-smithy-async",
|
|
599
|
+
"aws-smithy-types",
|
|
600
|
+
"chrono",
|
|
601
|
+
"futures-core",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "aws-smithy-xml"
|
|
606
|
+
version = "0.60.13"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "11b2f670422ff42bf7065031e72b45bc52a3508bd089f743ea90731ca2b6ea57"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"xmlparser",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "aws-types"
|
|
615
|
+
version = "1.3.11"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "1d980627d2dd7bfc32a3c025685a033eeab8d365cc840c631ef59d1b8f428164"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"aws-credential-types",
|
|
620
|
+
"aws-smithy-async",
|
|
621
|
+
"aws-smithy-runtime-api",
|
|
622
|
+
"aws-smithy-types",
|
|
623
|
+
"rustc_version",
|
|
624
|
+
"tracing",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "backtrace"
|
|
629
|
+
version = "0.3.76"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"addr2line",
|
|
634
|
+
"cfg-if",
|
|
635
|
+
"libc",
|
|
636
|
+
"miniz_oxide",
|
|
637
|
+
"object",
|
|
638
|
+
"rustc-demangle",
|
|
639
|
+
"windows-link",
|
|
640
|
+
]
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "backtrace-ext"
|
|
644
|
+
version = "0.2.1"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
|
|
647
|
+
dependencies = [
|
|
648
|
+
"backtrace",
|
|
649
|
+
]
|
|
650
|
+
|
|
651
|
+
[[package]]
|
|
652
|
+
name = "base16ct"
|
|
653
|
+
version = "0.1.1"
|
|
654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
655
|
+
checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce"
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "base32"
|
|
659
|
+
version = "0.5.1"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "base64"
|
|
665
|
+
version = "0.22.1"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "base64-simd"
|
|
671
|
+
version = "0.8.0"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"outref",
|
|
676
|
+
"vsimd",
|
|
677
|
+
]
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "base64ct"
|
|
681
|
+
version = "1.8.1"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "bit-set"
|
|
687
|
+
version = "0.8.0"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"bit-vec",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "bit-vec"
|
|
696
|
+
version = "0.8.0"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "bitflags"
|
|
702
|
+
version = "1.3.2"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "bitflags"
|
|
708
|
+
version = "2.10.0"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "block-buffer"
|
|
714
|
+
version = "0.10.4"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"generic-array",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "bstr"
|
|
723
|
+
version = "1.12.1"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"memchr",
|
|
728
|
+
"serde",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "bumpalo"
|
|
733
|
+
version = "3.19.1"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "byteorder"
|
|
739
|
+
version = "1.5.0"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "bytes"
|
|
745
|
+
version = "1.11.1"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
748
|
+
dependencies = [
|
|
749
|
+
"serde",
|
|
750
|
+
]
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "bytes-utils"
|
|
754
|
+
version = "0.1.4"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"bytes",
|
|
759
|
+
"either",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "cc"
|
|
764
|
+
version = "1.2.51"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"find-msvc-tools",
|
|
769
|
+
"jobserver",
|
|
770
|
+
"libc",
|
|
771
|
+
"shlex",
|
|
772
|
+
]
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "cfg-if"
|
|
776
|
+
version = "1.0.4"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "cfg_aliases"
|
|
782
|
+
version = "0.2.1"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "chrono"
|
|
788
|
+
version = "0.4.43"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"iana-time-zone",
|
|
793
|
+
"js-sys",
|
|
794
|
+
"num-traits",
|
|
795
|
+
"serde",
|
|
796
|
+
"wasm-bindgen",
|
|
797
|
+
"windows-link",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "clap"
|
|
802
|
+
version = "4.5.54"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"clap_builder",
|
|
807
|
+
"clap_derive",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "clap_builder"
|
|
812
|
+
version = "4.5.54"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"anstream",
|
|
817
|
+
"anstyle",
|
|
818
|
+
"clap_lex",
|
|
819
|
+
"strsim",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "clap_derive"
|
|
824
|
+
version = "4.5.49"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"heck",
|
|
829
|
+
"proc-macro2",
|
|
830
|
+
"quote",
|
|
831
|
+
"syn 2.0.114",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "clap_lex"
|
|
836
|
+
version = "0.7.6"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "cmake"
|
|
842
|
+
version = "0.1.57"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"cc",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "colorchoice"
|
|
851
|
+
version = "1.0.4"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "console"
|
|
857
|
+
version = "0.16.2"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "03e45a4a8926227e4197636ba97a9fc9b00477e9f4bd711395687c5f0734bec4"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"encode_unicode",
|
|
862
|
+
"libc",
|
|
863
|
+
"once_cell",
|
|
864
|
+
"unicode-width 0.2.2",
|
|
865
|
+
"windows-sys 0.61.2",
|
|
866
|
+
]
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "const-oid"
|
|
870
|
+
version = "0.9.6"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "core-foundation"
|
|
876
|
+
version = "0.9.4"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"core-foundation-sys",
|
|
881
|
+
"libc",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "core-foundation"
|
|
886
|
+
version = "0.10.1"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"core-foundation-sys",
|
|
891
|
+
"libc",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "core-foundation-sys"
|
|
896
|
+
version = "0.8.7"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "cpufeatures"
|
|
902
|
+
version = "0.2.17"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
905
|
+
dependencies = [
|
|
906
|
+
"libc",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "crc"
|
|
911
|
+
version = "3.3.0"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"crc-catalog",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "crc-catalog"
|
|
920
|
+
version = "2.4.0"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "crc-fast"
|
|
926
|
+
version = "1.9.0"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "2fd92aca2c6001b1bf5ba0ff84ee74ec8501b52bbef0cac80bf25a6c1d87a83d"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"crc",
|
|
931
|
+
"digest",
|
|
932
|
+
"rustversion",
|
|
933
|
+
"spin",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "crc32fast"
|
|
938
|
+
version = "1.5.0"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"cfg-if",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "crossbeam-deque"
|
|
947
|
+
version = "0.8.6"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"crossbeam-epoch",
|
|
952
|
+
"crossbeam-utils",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "crossbeam-epoch"
|
|
957
|
+
version = "0.9.18"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
960
|
+
dependencies = [
|
|
961
|
+
"crossbeam-utils",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "crossbeam-utils"
|
|
966
|
+
version = "0.8.21"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
969
|
+
|
|
970
|
+
[[package]]
|
|
971
|
+
name = "crypto-bigint"
|
|
972
|
+
version = "0.4.9"
|
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
+
checksum = "ef2b4b23cddf68b89b8f8069890e8c270d54e2d5fe1b143820234805e4cb17ef"
|
|
975
|
+
dependencies = [
|
|
976
|
+
"generic-array",
|
|
977
|
+
"rand_core 0.6.4",
|
|
978
|
+
"subtle",
|
|
979
|
+
"zeroize",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "crypto-bigint"
|
|
984
|
+
version = "0.5.5"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
|
|
987
|
+
dependencies = [
|
|
988
|
+
"rand_core 0.6.4",
|
|
989
|
+
"subtle",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "crypto-common"
|
|
994
|
+
version = "0.1.7"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"generic-array",
|
|
999
|
+
"typenum",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "darling"
|
|
1004
|
+
version = "0.21.3"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"darling_core",
|
|
1009
|
+
"darling_macro",
|
|
1010
|
+
]
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "darling_core"
|
|
1014
|
+
version = "0.21.3"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"fnv",
|
|
1019
|
+
"ident_case",
|
|
1020
|
+
"proc-macro2",
|
|
1021
|
+
"quote",
|
|
1022
|
+
"strsim",
|
|
1023
|
+
"syn 2.0.114",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "darling_macro"
|
|
1028
|
+
version = "0.21.3"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"darling_core",
|
|
1033
|
+
"quote",
|
|
1034
|
+
"syn 2.0.114",
|
|
1035
|
+
]
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "der"
|
|
1039
|
+
version = "0.6.1"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "f1a467a65c5e759bce6e65eaf91cc29f466cdc57cb65777bd646872a8a1fd4de"
|
|
1042
|
+
dependencies = [
|
|
1043
|
+
"const-oid",
|
|
1044
|
+
"zeroize",
|
|
1045
|
+
]
|
|
1046
|
+
|
|
1047
|
+
[[package]]
|
|
1048
|
+
name = "deranged"
|
|
1049
|
+
version = "0.5.5"
|
|
1050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
1052
|
+
dependencies = [
|
|
1053
|
+
"powerfmt",
|
|
1054
|
+
"serde_core",
|
|
1055
|
+
]
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "derive-ex"
|
|
1059
|
+
version = "0.1.8"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "bba95f299f6b9cd47f68a847eca2ae9060a2713af532dc35c342065544845407"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"proc-macro2",
|
|
1064
|
+
"quote",
|
|
1065
|
+
"structmeta",
|
|
1066
|
+
"syn 2.0.114",
|
|
1067
|
+
]
|
|
1068
|
+
|
|
1069
|
+
[[package]]
|
|
1070
|
+
name = "dialoguer"
|
|
1071
|
+
version = "0.12.0"
|
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
+
checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96"
|
|
1074
|
+
dependencies = [
|
|
1075
|
+
"console",
|
|
1076
|
+
"shell-words",
|
|
1077
|
+
"tempfile",
|
|
1078
|
+
"zeroize",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "diff"
|
|
1083
|
+
version = "0.1.13"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "difflib"
|
|
1089
|
+
version = "0.4.0"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
1092
|
+
|
|
1093
|
+
[[package]]
|
|
1094
|
+
name = "digest"
|
|
1095
|
+
version = "0.10.7"
|
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1097
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
1098
|
+
dependencies = [
|
|
1099
|
+
"block-buffer",
|
|
1100
|
+
"crypto-common",
|
|
1101
|
+
"subtle",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "dirs"
|
|
1106
|
+
version = "6.0.0"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"dirs-sys",
|
|
1111
|
+
]
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "dirs-sys"
|
|
1115
|
+
version = "0.5.0"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"libc",
|
|
1120
|
+
"option-ext",
|
|
1121
|
+
"redox_users",
|
|
1122
|
+
"windows-sys 0.61.2",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "displaydoc"
|
|
1127
|
+
version = "0.2.5"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"proc-macro2",
|
|
1132
|
+
"quote",
|
|
1133
|
+
"syn 2.0.114",
|
|
1134
|
+
]
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "doc-comment"
|
|
1138
|
+
version = "0.3.4"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "780955b8b195a21ab8e4ac6b60dd1dbdcec1dc6c51c0617964b08c81785e12c9"
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "dunce"
|
|
1144
|
+
version = "1.0.5"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "dyn-clone"
|
|
1150
|
+
version = "1.0.20"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "ecdsa"
|
|
1156
|
+
version = "0.14.8"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "413301934810f597c1d19ca71c8710e99a3f1ba28a0d2ebc01551a2daeea3c5c"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"der",
|
|
1161
|
+
"elliptic-curve",
|
|
1162
|
+
"rfc6979",
|
|
1163
|
+
"signature",
|
|
1164
|
+
]
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "either"
|
|
1168
|
+
version = "1.15.0"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "elliptic-curve"
|
|
1174
|
+
version = "0.12.3"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "e7bb888ab5300a19b8e5bceef25ac745ad065f3c9f7efc6de1b91958110891d3"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"base16ct",
|
|
1179
|
+
"crypto-bigint 0.4.9",
|
|
1180
|
+
"der",
|
|
1181
|
+
"digest",
|
|
1182
|
+
"ff",
|
|
1183
|
+
"generic-array",
|
|
1184
|
+
"group",
|
|
1185
|
+
"pkcs8",
|
|
1186
|
+
"rand_core 0.6.4",
|
|
1187
|
+
"sec1",
|
|
1188
|
+
"subtle",
|
|
1189
|
+
"zeroize",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "encode_unicode"
|
|
1194
|
+
version = "1.0.0"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "encoding_rs"
|
|
1200
|
+
version = "0.8.35"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"cfg-if",
|
|
1205
|
+
]
|
|
1206
|
+
|
|
1207
|
+
[[package]]
|
|
1208
|
+
name = "env_filter"
|
|
1209
|
+
version = "0.1.4"
|
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1211
|
+
checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
|
|
1212
|
+
dependencies = [
|
|
1213
|
+
"log",
|
|
1214
|
+
]
|
|
1215
|
+
|
|
1216
|
+
[[package]]
|
|
1217
|
+
name = "env_logger"
|
|
1218
|
+
version = "0.11.8"
|
|
1219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1220
|
+
checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
|
|
1221
|
+
dependencies = [
|
|
1222
|
+
"anstream",
|
|
1223
|
+
"anstyle",
|
|
1224
|
+
"env_filter",
|
|
1225
|
+
"log",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "equivalent"
|
|
1230
|
+
version = "1.0.2"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "erased-serde"
|
|
1236
|
+
version = "0.4.9"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"serde",
|
|
1241
|
+
"serde_core",
|
|
1242
|
+
"typeid",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "err-into"
|
|
1247
|
+
version = "1.0.1"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "7f003b437a8029298beb1a849ea8c5c8229f0c1225e3e854c4523dbe8d90b02d"
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "errno"
|
|
1253
|
+
version = "0.3.14"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1256
|
+
dependencies = [
|
|
1257
|
+
"libc",
|
|
1258
|
+
"windows-sys 0.61.2",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "fastrand"
|
|
1263
|
+
version = "2.3.0"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "ff"
|
|
1269
|
+
version = "0.12.1"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "d013fc25338cc558c5c2cfbad646908fb23591e2404481826742b651c9af7160"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"rand_core 0.6.4",
|
|
1274
|
+
"subtle",
|
|
1275
|
+
]
|
|
1276
|
+
|
|
1277
|
+
[[package]]
|
|
1278
|
+
name = "find-msvc-tools"
|
|
1279
|
+
version = "0.1.6"
|
|
1280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
+
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
1282
|
+
|
|
1283
|
+
[[package]]
|
|
1284
|
+
name = "flatbuffers"
|
|
1285
|
+
version = "25.12.19"
|
|
1286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1287
|
+
checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
|
|
1288
|
+
dependencies = [
|
|
1289
|
+
"bitflags 2.10.0",
|
|
1290
|
+
"rustc_version",
|
|
1291
|
+
]
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "flexbuffers"
|
|
1295
|
+
version = "25.12.19"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "8bc752b3d049e0705749b9999d0b130d6cf62935bc7762fd3bdb7636047abe43"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"bitflags 1.3.2",
|
|
1300
|
+
"byteorder",
|
|
1301
|
+
"num_enum",
|
|
1302
|
+
"serde",
|
|
1303
|
+
"serde_derive",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "fnv"
|
|
1308
|
+
version = "1.0.7"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "foldhash"
|
|
1314
|
+
version = "0.2.0"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "form_urlencoded"
|
|
1320
|
+
version = "1.2.2"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"percent-encoding",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "fs_extra"
|
|
1329
|
+
version = "1.3.0"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "futures"
|
|
1335
|
+
version = "0.3.31"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"futures-channel",
|
|
1340
|
+
"futures-core",
|
|
1341
|
+
"futures-executor",
|
|
1342
|
+
"futures-io",
|
|
1343
|
+
"futures-sink",
|
|
1344
|
+
"futures-task",
|
|
1345
|
+
"futures-util",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "futures-channel"
|
|
1350
|
+
version = "0.3.31"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"futures-core",
|
|
1355
|
+
"futures-sink",
|
|
1356
|
+
]
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "futures-core"
|
|
1360
|
+
version = "0.3.31"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1363
|
+
|
|
1364
|
+
[[package]]
|
|
1365
|
+
name = "futures-executor"
|
|
1366
|
+
version = "0.3.31"
|
|
1367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1368
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
1369
|
+
dependencies = [
|
|
1370
|
+
"futures-core",
|
|
1371
|
+
"futures-task",
|
|
1372
|
+
"futures-util",
|
|
1373
|
+
]
|
|
1374
|
+
|
|
1375
|
+
[[package]]
|
|
1376
|
+
name = "futures-io"
|
|
1377
|
+
version = "0.3.31"
|
|
1378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1379
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "futures-macro"
|
|
1383
|
+
version = "0.3.31"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"proc-macro2",
|
|
1388
|
+
"quote",
|
|
1389
|
+
"syn 2.0.114",
|
|
1390
|
+
]
|
|
1391
|
+
|
|
1392
|
+
[[package]]
|
|
1393
|
+
name = "futures-sink"
|
|
1394
|
+
version = "0.3.31"
|
|
1395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1396
|
+
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "futures-task"
|
|
1400
|
+
version = "0.3.31"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "futures-util"
|
|
1406
|
+
version = "0.3.31"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"futures-channel",
|
|
1411
|
+
"futures-core",
|
|
1412
|
+
"futures-io",
|
|
1413
|
+
"futures-macro",
|
|
1414
|
+
"futures-sink",
|
|
1415
|
+
"futures-task",
|
|
1416
|
+
"memchr",
|
|
1417
|
+
"pin-project-lite",
|
|
1418
|
+
"pin-utils",
|
|
1419
|
+
"slab",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "generic-array"
|
|
1424
|
+
version = "0.14.7"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"typenum",
|
|
1429
|
+
"version_check",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "getrandom"
|
|
1434
|
+
version = "0.2.16"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"cfg-if",
|
|
1439
|
+
"js-sys",
|
|
1440
|
+
"libc",
|
|
1441
|
+
"wasi",
|
|
1442
|
+
"wasm-bindgen",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "getrandom"
|
|
1447
|
+
version = "0.3.4"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"cfg-if",
|
|
1452
|
+
"js-sys",
|
|
1453
|
+
"libc",
|
|
1454
|
+
"r-efi",
|
|
1455
|
+
"wasip2",
|
|
1456
|
+
"wasm-bindgen",
|
|
1457
|
+
]
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "gimli"
|
|
1461
|
+
version = "0.32.3"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
|
|
1464
|
+
|
|
1465
|
+
[[package]]
|
|
1466
|
+
name = "globset"
|
|
1467
|
+
version = "0.4.18"
|
|
1468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1469
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
1470
|
+
dependencies = [
|
|
1471
|
+
"aho-corasick",
|
|
1472
|
+
"bstr",
|
|
1473
|
+
"log",
|
|
1474
|
+
"regex-automata",
|
|
1475
|
+
"regex-syntax",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "globwalk"
|
|
1480
|
+
version = "0.9.1"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "0bf760ebf69878d9fd8f110c89703d90ce35095324d1f1edcb595c63945ee757"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"bitflags 2.10.0",
|
|
1485
|
+
"ignore",
|
|
1486
|
+
"walkdir",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "group"
|
|
1491
|
+
version = "0.12.1"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "5dfbfb3a6cfbd390d5c9564ab283a0349b9b9fcd46a706c1eb10e0db70bfbac7"
|
|
1494
|
+
dependencies = [
|
|
1495
|
+
"ff",
|
|
1496
|
+
"rand_core 0.6.4",
|
|
1497
|
+
"subtle",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "h2"
|
|
1502
|
+
version = "0.3.27"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "0beca50380b1fc32983fc1cb4587bfa4bb9e78fc259aad4a0032d2080309222d"
|
|
1505
|
+
dependencies = [
|
|
1506
|
+
"bytes",
|
|
1507
|
+
"fnv",
|
|
1508
|
+
"futures-core",
|
|
1509
|
+
"futures-sink",
|
|
1510
|
+
"futures-util",
|
|
1511
|
+
"http 0.2.12",
|
|
1512
|
+
"indexmap 2.12.1",
|
|
1513
|
+
"slab",
|
|
1514
|
+
"tokio",
|
|
1515
|
+
"tokio-util",
|
|
1516
|
+
"tracing",
|
|
1517
|
+
]
|
|
1518
|
+
|
|
1519
|
+
[[package]]
|
|
1520
|
+
name = "h2"
|
|
1521
|
+
version = "0.4.12"
|
|
1522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
|
+
checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
|
|
1524
|
+
dependencies = [
|
|
1525
|
+
"atomic-waker",
|
|
1526
|
+
"bytes",
|
|
1527
|
+
"fnv",
|
|
1528
|
+
"futures-core",
|
|
1529
|
+
"futures-sink",
|
|
1530
|
+
"http 1.4.0",
|
|
1531
|
+
"indexmap 2.12.1",
|
|
1532
|
+
"slab",
|
|
1533
|
+
"tokio",
|
|
1534
|
+
"tokio-util",
|
|
1535
|
+
"tracing",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "hashbrown"
|
|
1540
|
+
version = "0.12.3"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "hashbrown"
|
|
1546
|
+
version = "0.16.1"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"allocator-api2",
|
|
1551
|
+
"equivalent",
|
|
1552
|
+
"foldhash",
|
|
1553
|
+
]
|
|
1554
|
+
|
|
1555
|
+
[[package]]
|
|
1556
|
+
name = "headers"
|
|
1557
|
+
version = "0.4.1"
|
|
1558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1559
|
+
checksum = "b3314d5adb5d94bcdf56771f2e50dbbc80bb4bdf88967526706205ac9eff24eb"
|
|
1560
|
+
dependencies = [
|
|
1561
|
+
"base64",
|
|
1562
|
+
"bytes",
|
|
1563
|
+
"headers-core",
|
|
1564
|
+
"http 1.4.0",
|
|
1565
|
+
"httpdate",
|
|
1566
|
+
"mime",
|
|
1567
|
+
"sha1",
|
|
1568
|
+
]
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "headers-core"
|
|
1572
|
+
version = "0.3.0"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "54b4a22553d4242c49fddb9ba998a99962b5cc6f22cb5a3482bec22522403ce4"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"http 1.4.0",
|
|
1577
|
+
]
|
|
1578
|
+
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "heck"
|
|
1581
|
+
version = "0.5.0"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "hex"
|
|
1587
|
+
version = "0.4.3"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1590
|
+
|
|
1591
|
+
[[package]]
|
|
1592
|
+
name = "hmac"
|
|
1593
|
+
version = "0.12.1"
|
|
1594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1595
|
+
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
1596
|
+
dependencies = [
|
|
1597
|
+
"digest",
|
|
1598
|
+
]
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "http"
|
|
1602
|
+
version = "0.2.12"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"bytes",
|
|
1607
|
+
"fnv",
|
|
1608
|
+
"itoa",
|
|
1609
|
+
]
|
|
1610
|
+
|
|
1611
|
+
[[package]]
|
|
1612
|
+
name = "http"
|
|
1613
|
+
version = "1.4.0"
|
|
1614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1615
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
1616
|
+
dependencies = [
|
|
1617
|
+
"bytes",
|
|
1618
|
+
"itoa",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "http-body"
|
|
1623
|
+
version = "0.4.6"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"bytes",
|
|
1628
|
+
"http 0.2.12",
|
|
1629
|
+
"pin-project-lite",
|
|
1630
|
+
]
|
|
1631
|
+
|
|
1632
|
+
[[package]]
|
|
1633
|
+
name = "http-body"
|
|
1634
|
+
version = "1.0.1"
|
|
1635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1637
|
+
dependencies = [
|
|
1638
|
+
"bytes",
|
|
1639
|
+
"http 1.4.0",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "http-body-util"
|
|
1644
|
+
version = "0.1.3"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"bytes",
|
|
1649
|
+
"futures-core",
|
|
1650
|
+
"http 1.4.0",
|
|
1651
|
+
"http-body 1.0.1",
|
|
1652
|
+
"pin-project-lite",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "httparse"
|
|
1657
|
+
version = "1.10.1"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "httpdate"
|
|
1663
|
+
version = "1.0.3"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "humantime"
|
|
1669
|
+
version = "2.3.0"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "135b12329e5e3ce057a9f972339ea52bc954fe1e9358ef27f95e89716fbc5424"
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "hyper"
|
|
1675
|
+
version = "0.14.32"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
|
|
1678
|
+
dependencies = [
|
|
1679
|
+
"bytes",
|
|
1680
|
+
"futures-channel",
|
|
1681
|
+
"futures-core",
|
|
1682
|
+
"futures-util",
|
|
1683
|
+
"h2 0.3.27",
|
|
1684
|
+
"http 0.2.12",
|
|
1685
|
+
"http-body 0.4.6",
|
|
1686
|
+
"httparse",
|
|
1687
|
+
"httpdate",
|
|
1688
|
+
"itoa",
|
|
1689
|
+
"pin-project-lite",
|
|
1690
|
+
"socket2 0.5.10",
|
|
1691
|
+
"tokio",
|
|
1692
|
+
"tower-service",
|
|
1693
|
+
"tracing",
|
|
1694
|
+
"want",
|
|
1695
|
+
]
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "hyper"
|
|
1699
|
+
version = "1.8.1"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
1702
|
+
dependencies = [
|
|
1703
|
+
"atomic-waker",
|
|
1704
|
+
"bytes",
|
|
1705
|
+
"futures-channel",
|
|
1706
|
+
"futures-core",
|
|
1707
|
+
"h2 0.4.12",
|
|
1708
|
+
"http 1.4.0",
|
|
1709
|
+
"http-body 1.0.1",
|
|
1710
|
+
"httparse",
|
|
1711
|
+
"httpdate",
|
|
1712
|
+
"itoa",
|
|
1713
|
+
"pin-project-lite",
|
|
1714
|
+
"pin-utils",
|
|
1715
|
+
"smallvec",
|
|
1716
|
+
"tokio",
|
|
1717
|
+
"want",
|
|
1718
|
+
]
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "hyper-rustls"
|
|
1722
|
+
version = "0.24.2"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
|
1725
|
+
dependencies = [
|
|
1726
|
+
"futures-util",
|
|
1727
|
+
"http 0.2.12",
|
|
1728
|
+
"hyper 0.14.32",
|
|
1729
|
+
"log",
|
|
1730
|
+
"rustls 0.21.12",
|
|
1731
|
+
"tokio",
|
|
1732
|
+
"tokio-rustls 0.24.1",
|
|
1733
|
+
]
|
|
1734
|
+
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "hyper-rustls"
|
|
1737
|
+
version = "0.27.7"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
1740
|
+
dependencies = [
|
|
1741
|
+
"http 1.4.0",
|
|
1742
|
+
"hyper 1.8.1",
|
|
1743
|
+
"hyper-util",
|
|
1744
|
+
"rustls 0.23.35",
|
|
1745
|
+
"rustls-native-certs",
|
|
1746
|
+
"rustls-pki-types",
|
|
1747
|
+
"tokio",
|
|
1748
|
+
"tokio-rustls 0.26.4",
|
|
1749
|
+
"tower-service",
|
|
1750
|
+
"webpki-roots",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "hyper-util"
|
|
1755
|
+
version = "0.1.19"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"base64",
|
|
1760
|
+
"bytes",
|
|
1761
|
+
"futures-channel",
|
|
1762
|
+
"futures-core",
|
|
1763
|
+
"futures-util",
|
|
1764
|
+
"http 1.4.0",
|
|
1765
|
+
"http-body 1.0.1",
|
|
1766
|
+
"hyper 1.8.1",
|
|
1767
|
+
"ipnet",
|
|
1768
|
+
"libc",
|
|
1769
|
+
"percent-encoding",
|
|
1770
|
+
"pin-project-lite",
|
|
1771
|
+
"socket2 0.6.1",
|
|
1772
|
+
"system-configuration",
|
|
1773
|
+
"tokio",
|
|
1774
|
+
"tower-service",
|
|
1775
|
+
"tracing",
|
|
1776
|
+
"windows-registry",
|
|
1777
|
+
]
|
|
1778
|
+
|
|
1779
|
+
[[package]]
|
|
1780
|
+
name = "iana-time-zone"
|
|
1781
|
+
version = "0.1.64"
|
|
1782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1783
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1784
|
+
dependencies = [
|
|
1785
|
+
"android_system_properties",
|
|
1786
|
+
"core-foundation-sys",
|
|
1787
|
+
"iana-time-zone-haiku",
|
|
1788
|
+
"js-sys",
|
|
1789
|
+
"log",
|
|
1790
|
+
"wasm-bindgen",
|
|
1791
|
+
"windows-core",
|
|
1792
|
+
]
|
|
1793
|
+
|
|
1794
|
+
[[package]]
|
|
1795
|
+
name = "iana-time-zone-haiku"
|
|
1796
|
+
version = "0.1.2"
|
|
1797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1799
|
+
dependencies = [
|
|
1800
|
+
"cc",
|
|
1801
|
+
]
|
|
1802
|
+
|
|
1803
|
+
[[package]]
|
|
1804
|
+
name = "icechunk"
|
|
1805
|
+
version = "0.3.14"
|
|
1806
|
+
dependencies = [
|
|
1807
|
+
"anyhow",
|
|
1808
|
+
"assert_fs",
|
|
1809
|
+
"async-recursion",
|
|
1810
|
+
"async-stream",
|
|
1811
|
+
"async-trait",
|
|
1812
|
+
"aws-config",
|
|
1813
|
+
"aws-credential-types",
|
|
1814
|
+
"aws-sdk-s3",
|
|
1815
|
+
"aws-smithy-runtime",
|
|
1816
|
+
"aws-smithy-types-convert",
|
|
1817
|
+
"base32",
|
|
1818
|
+
"base64",
|
|
1819
|
+
"bytes",
|
|
1820
|
+
"chrono",
|
|
1821
|
+
"clap",
|
|
1822
|
+
"dialoguer",
|
|
1823
|
+
"dirs",
|
|
1824
|
+
"err-into",
|
|
1825
|
+
"flatbuffers",
|
|
1826
|
+
"flexbuffers",
|
|
1827
|
+
"fs_extra",
|
|
1828
|
+
"futures",
|
|
1829
|
+
"icechunk-macros",
|
|
1830
|
+
"itertools",
|
|
1831
|
+
"object_store",
|
|
1832
|
+
"port_check",
|
|
1833
|
+
"pretty_assertions",
|
|
1834
|
+
"proptest",
|
|
1835
|
+
"proptest-state-machine",
|
|
1836
|
+
"quick_cache",
|
|
1837
|
+
"rand",
|
|
1838
|
+
"regex",
|
|
1839
|
+
"reqwest",
|
|
1840
|
+
"rmp-serde",
|
|
1841
|
+
"rmpv",
|
|
1842
|
+
"serde",
|
|
1843
|
+
"serde_bytes",
|
|
1844
|
+
"serde_json",
|
|
1845
|
+
"serde_with",
|
|
1846
|
+
"serde_yaml_ng",
|
|
1847
|
+
"tempfile",
|
|
1848
|
+
"test-log",
|
|
1849
|
+
"test-strategy",
|
|
1850
|
+
"thiserror",
|
|
1851
|
+
"tokio",
|
|
1852
|
+
"tokio-util",
|
|
1853
|
+
"tracing",
|
|
1854
|
+
"tracing-error",
|
|
1855
|
+
"tracing-subscriber",
|
|
1856
|
+
"typed-path",
|
|
1857
|
+
"typetag",
|
|
1858
|
+
"url",
|
|
1859
|
+
"urlencoding",
|
|
1860
|
+
"warp",
|
|
1861
|
+
"zstd",
|
|
1862
|
+
]
|
|
1863
|
+
|
|
1864
|
+
[[package]]
|
|
1865
|
+
name = "icechunk-macros"
|
|
1866
|
+
version = "0.1.0"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"quote",
|
|
1869
|
+
"syn 2.0.114",
|
|
1870
|
+
]
|
|
1871
|
+
|
|
1872
|
+
[[package]]
|
|
1873
|
+
name = "icechunk-python"
|
|
1874
|
+
version = "2.0.0-alpha.0"
|
|
1875
|
+
dependencies = [
|
|
1876
|
+
"async-stream",
|
|
1877
|
+
"async-trait",
|
|
1878
|
+
"bytes",
|
|
1879
|
+
"chrono",
|
|
1880
|
+
"clap",
|
|
1881
|
+
"futures",
|
|
1882
|
+
"icechunk",
|
|
1883
|
+
"itertools",
|
|
1884
|
+
"miette",
|
|
1885
|
+
"pyo3",
|
|
1886
|
+
"pyo3-async-runtimes",
|
|
1887
|
+
"pyo3-bytes",
|
|
1888
|
+
"rand",
|
|
1889
|
+
"rmp-serde",
|
|
1890
|
+
"serde",
|
|
1891
|
+
"serde_json",
|
|
1892
|
+
"strsim",
|
|
1893
|
+
"thiserror",
|
|
1894
|
+
"tokio",
|
|
1895
|
+
"typetag",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "icu_collections"
|
|
1900
|
+
version = "2.1.1"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"displaydoc",
|
|
1905
|
+
"potential_utf",
|
|
1906
|
+
"yoke",
|
|
1907
|
+
"zerofrom",
|
|
1908
|
+
"zerovec",
|
|
1909
|
+
]
|
|
1910
|
+
|
|
1911
|
+
[[package]]
|
|
1912
|
+
name = "icu_locale_core"
|
|
1913
|
+
version = "2.1.1"
|
|
1914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1916
|
+
dependencies = [
|
|
1917
|
+
"displaydoc",
|
|
1918
|
+
"litemap",
|
|
1919
|
+
"tinystr",
|
|
1920
|
+
"writeable",
|
|
1921
|
+
"zerovec",
|
|
1922
|
+
]
|
|
1923
|
+
|
|
1924
|
+
[[package]]
|
|
1925
|
+
name = "icu_normalizer"
|
|
1926
|
+
version = "2.1.1"
|
|
1927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1929
|
+
dependencies = [
|
|
1930
|
+
"icu_collections",
|
|
1931
|
+
"icu_normalizer_data",
|
|
1932
|
+
"icu_properties",
|
|
1933
|
+
"icu_provider",
|
|
1934
|
+
"smallvec",
|
|
1935
|
+
"zerovec",
|
|
1936
|
+
]
|
|
1937
|
+
|
|
1938
|
+
[[package]]
|
|
1939
|
+
name = "icu_normalizer_data"
|
|
1940
|
+
version = "2.1.1"
|
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1942
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1943
|
+
|
|
1944
|
+
[[package]]
|
|
1945
|
+
name = "icu_properties"
|
|
1946
|
+
version = "2.1.2"
|
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1948
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1949
|
+
dependencies = [
|
|
1950
|
+
"icu_collections",
|
|
1951
|
+
"icu_locale_core",
|
|
1952
|
+
"icu_properties_data",
|
|
1953
|
+
"icu_provider",
|
|
1954
|
+
"zerotrie",
|
|
1955
|
+
"zerovec",
|
|
1956
|
+
]
|
|
1957
|
+
|
|
1958
|
+
[[package]]
|
|
1959
|
+
name = "icu_properties_data"
|
|
1960
|
+
version = "2.1.2"
|
|
1961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "icu_provider"
|
|
1966
|
+
version = "2.1.1"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"displaydoc",
|
|
1971
|
+
"icu_locale_core",
|
|
1972
|
+
"writeable",
|
|
1973
|
+
"yoke",
|
|
1974
|
+
"zerofrom",
|
|
1975
|
+
"zerotrie",
|
|
1976
|
+
"zerovec",
|
|
1977
|
+
]
|
|
1978
|
+
|
|
1979
|
+
[[package]]
|
|
1980
|
+
name = "ident_case"
|
|
1981
|
+
version = "1.0.1"
|
|
1982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1983
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1984
|
+
|
|
1985
|
+
[[package]]
|
|
1986
|
+
name = "idna"
|
|
1987
|
+
version = "1.1.0"
|
|
1988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1990
|
+
dependencies = [
|
|
1991
|
+
"idna_adapter",
|
|
1992
|
+
"smallvec",
|
|
1993
|
+
"utf8_iter",
|
|
1994
|
+
]
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "idna_adapter"
|
|
1998
|
+
version = "1.2.1"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"icu_normalizer",
|
|
2003
|
+
"icu_properties",
|
|
2004
|
+
]
|
|
2005
|
+
|
|
2006
|
+
[[package]]
|
|
2007
|
+
name = "ignore"
|
|
2008
|
+
version = "0.4.25"
|
|
2009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
+
checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
|
|
2011
|
+
dependencies = [
|
|
2012
|
+
"crossbeam-deque",
|
|
2013
|
+
"globset",
|
|
2014
|
+
"log",
|
|
2015
|
+
"memchr",
|
|
2016
|
+
"regex-automata",
|
|
2017
|
+
"same-file",
|
|
2018
|
+
"walkdir",
|
|
2019
|
+
"winapi-util",
|
|
2020
|
+
]
|
|
2021
|
+
|
|
2022
|
+
[[package]]
|
|
2023
|
+
name = "indexmap"
|
|
2024
|
+
version = "1.9.3"
|
|
2025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2026
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
2027
|
+
dependencies = [
|
|
2028
|
+
"autocfg",
|
|
2029
|
+
"hashbrown 0.12.3",
|
|
2030
|
+
"serde",
|
|
2031
|
+
]
|
|
2032
|
+
|
|
2033
|
+
[[package]]
|
|
2034
|
+
name = "indexmap"
|
|
2035
|
+
version = "2.12.1"
|
|
2036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
2038
|
+
dependencies = [
|
|
2039
|
+
"equivalent",
|
|
2040
|
+
"hashbrown 0.16.1",
|
|
2041
|
+
"serde",
|
|
2042
|
+
"serde_core",
|
|
2043
|
+
]
|
|
2044
|
+
|
|
2045
|
+
[[package]]
|
|
2046
|
+
name = "indoc"
|
|
2047
|
+
version = "2.0.7"
|
|
2048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2049
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
2050
|
+
dependencies = [
|
|
2051
|
+
"rustversion",
|
|
2052
|
+
]
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "inventory"
|
|
2056
|
+
version = "0.3.21"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
2059
|
+
dependencies = [
|
|
2060
|
+
"rustversion",
|
|
2061
|
+
]
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "ipnet"
|
|
2065
|
+
version = "2.11.0"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
|
|
2068
|
+
|
|
2069
|
+
[[package]]
|
|
2070
|
+
name = "iri-string"
|
|
2071
|
+
version = "0.7.10"
|
|
2072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2073
|
+
checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
|
|
2074
|
+
dependencies = [
|
|
2075
|
+
"memchr",
|
|
2076
|
+
"serde",
|
|
2077
|
+
]
|
|
2078
|
+
|
|
2079
|
+
[[package]]
|
|
2080
|
+
name = "is_ci"
|
|
2081
|
+
version = "1.2.0"
|
|
2082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2083
|
+
checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
|
|
2084
|
+
|
|
2085
|
+
[[package]]
|
|
2086
|
+
name = "is_terminal_polyfill"
|
|
2087
|
+
version = "1.70.2"
|
|
2088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2089
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "itertools"
|
|
2093
|
+
version = "0.14.0"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"either",
|
|
2098
|
+
]
|
|
2099
|
+
|
|
2100
|
+
[[package]]
|
|
2101
|
+
name = "itoa"
|
|
2102
|
+
version = "1.0.17"
|
|
2103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2104
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
2105
|
+
|
|
2106
|
+
[[package]]
|
|
2107
|
+
name = "jobserver"
|
|
2108
|
+
version = "0.1.34"
|
|
2109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
2111
|
+
dependencies = [
|
|
2112
|
+
"getrandom 0.3.4",
|
|
2113
|
+
"libc",
|
|
2114
|
+
]
|
|
2115
|
+
|
|
2116
|
+
[[package]]
|
|
2117
|
+
name = "js-sys"
|
|
2118
|
+
version = "0.3.83"
|
|
2119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
2121
|
+
dependencies = [
|
|
2122
|
+
"once_cell",
|
|
2123
|
+
"wasm-bindgen",
|
|
2124
|
+
]
|
|
2125
|
+
|
|
2126
|
+
[[package]]
|
|
2127
|
+
name = "lazy_static"
|
|
2128
|
+
version = "1.5.0"
|
|
2129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "libc"
|
|
2134
|
+
version = "0.2.178"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "libredox"
|
|
2140
|
+
version = "0.1.12"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"bitflags 2.10.0",
|
|
2145
|
+
"libc",
|
|
2146
|
+
]
|
|
2147
|
+
|
|
2148
|
+
[[package]]
|
|
2149
|
+
name = "linux-raw-sys"
|
|
2150
|
+
version = "0.11.0"
|
|
2151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2152
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "litemap"
|
|
2156
|
+
version = "0.8.1"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "lock_api"
|
|
2162
|
+
version = "0.4.14"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
2165
|
+
dependencies = [
|
|
2166
|
+
"scopeguard",
|
|
2167
|
+
]
|
|
2168
|
+
|
|
2169
|
+
[[package]]
|
|
2170
|
+
name = "log"
|
|
2171
|
+
version = "0.4.29"
|
|
2172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
2174
|
+
|
|
2175
|
+
[[package]]
|
|
2176
|
+
name = "lru"
|
|
2177
|
+
version = "0.16.3"
|
|
2178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2179
|
+
checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
|
|
2180
|
+
dependencies = [
|
|
2181
|
+
"hashbrown 0.16.1",
|
|
2182
|
+
]
|
|
2183
|
+
|
|
2184
|
+
[[package]]
|
|
2185
|
+
name = "lru-slab"
|
|
2186
|
+
version = "0.1.2"
|
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2188
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "matchers"
|
|
2192
|
+
version = "0.2.0"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"regex-automata",
|
|
2197
|
+
]
|
|
2198
|
+
|
|
2199
|
+
[[package]]
|
|
2200
|
+
name = "md-5"
|
|
2201
|
+
version = "0.10.6"
|
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
+
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"cfg-if",
|
|
2206
|
+
"digest",
|
|
2207
|
+
]
|
|
2208
|
+
|
|
2209
|
+
[[package]]
|
|
2210
|
+
name = "memchr"
|
|
2211
|
+
version = "2.7.6"
|
|
2212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2213
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
2214
|
+
|
|
2215
|
+
[[package]]
|
|
2216
|
+
name = "memoffset"
|
|
2217
|
+
version = "0.9.1"
|
|
2218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2219
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
2220
|
+
dependencies = [
|
|
2221
|
+
"autocfg",
|
|
2222
|
+
]
|
|
2223
|
+
|
|
2224
|
+
[[package]]
|
|
2225
|
+
name = "miette"
|
|
2226
|
+
version = "7.6.0"
|
|
2227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2228
|
+
checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
|
|
2229
|
+
dependencies = [
|
|
2230
|
+
"backtrace",
|
|
2231
|
+
"backtrace-ext",
|
|
2232
|
+
"cfg-if",
|
|
2233
|
+
"miette-derive",
|
|
2234
|
+
"owo-colors",
|
|
2235
|
+
"supports-color",
|
|
2236
|
+
"supports-hyperlinks",
|
|
2237
|
+
"supports-unicode",
|
|
2238
|
+
"terminal_size",
|
|
2239
|
+
"textwrap",
|
|
2240
|
+
"unicode-width 0.1.14",
|
|
2241
|
+
]
|
|
2242
|
+
|
|
2243
|
+
[[package]]
|
|
2244
|
+
name = "miette-derive"
|
|
2245
|
+
version = "7.6.0"
|
|
2246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2247
|
+
checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
|
|
2248
|
+
dependencies = [
|
|
2249
|
+
"proc-macro2",
|
|
2250
|
+
"quote",
|
|
2251
|
+
"syn 2.0.114",
|
|
2252
|
+
]
|
|
2253
|
+
|
|
2254
|
+
[[package]]
|
|
2255
|
+
name = "mime"
|
|
2256
|
+
version = "0.3.17"
|
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2258
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "mime_guess"
|
|
2262
|
+
version = "2.0.5"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
2265
|
+
dependencies = [
|
|
2266
|
+
"mime",
|
|
2267
|
+
"unicase",
|
|
2268
|
+
]
|
|
2269
|
+
|
|
2270
|
+
[[package]]
|
|
2271
|
+
name = "miniz_oxide"
|
|
2272
|
+
version = "0.8.9"
|
|
2273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2274
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
2275
|
+
dependencies = [
|
|
2276
|
+
"adler2",
|
|
2277
|
+
]
|
|
2278
|
+
|
|
2279
|
+
[[package]]
|
|
2280
|
+
name = "mio"
|
|
2281
|
+
version = "1.1.1"
|
|
2282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2283
|
+
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
|
|
2284
|
+
dependencies = [
|
|
2285
|
+
"libc",
|
|
2286
|
+
"wasi",
|
|
2287
|
+
"windows-sys 0.61.2",
|
|
2288
|
+
]
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "nu-ansi-term"
|
|
2292
|
+
version = "0.50.3"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"windows-sys 0.61.2",
|
|
2297
|
+
]
|
|
2298
|
+
|
|
2299
|
+
[[package]]
|
|
2300
|
+
name = "num-conv"
|
|
2301
|
+
version = "0.1.0"
|
|
2302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
2304
|
+
|
|
2305
|
+
[[package]]
|
|
2306
|
+
name = "num-integer"
|
|
2307
|
+
version = "0.1.46"
|
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2310
|
+
dependencies = [
|
|
2311
|
+
"num-traits",
|
|
2312
|
+
]
|
|
2313
|
+
|
|
2314
|
+
[[package]]
|
|
2315
|
+
name = "num-traits"
|
|
2316
|
+
version = "0.2.19"
|
|
2317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2318
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2319
|
+
dependencies = [
|
|
2320
|
+
"autocfg",
|
|
2321
|
+
]
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "num_enum"
|
|
2325
|
+
version = "0.5.11"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "1f646caf906c20226733ed5b1374287eb97e3c2a5c227ce668c1f2ce20ae57c9"
|
|
2328
|
+
dependencies = [
|
|
2329
|
+
"num_enum_derive",
|
|
2330
|
+
]
|
|
2331
|
+
|
|
2332
|
+
[[package]]
|
|
2333
|
+
name = "num_enum_derive"
|
|
2334
|
+
version = "0.5.11"
|
|
2335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2336
|
+
checksum = "dcbff9bc912032c62bf65ef1d5aea88983b420f4f839db1e9b0c281a25c9c799"
|
|
2337
|
+
dependencies = [
|
|
2338
|
+
"proc-macro-crate",
|
|
2339
|
+
"proc-macro2",
|
|
2340
|
+
"quote",
|
|
2341
|
+
"syn 1.0.109",
|
|
2342
|
+
]
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "object"
|
|
2346
|
+
version = "0.37.3"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
|
|
2349
|
+
dependencies = [
|
|
2350
|
+
"memchr",
|
|
2351
|
+
]
|
|
2352
|
+
|
|
2353
|
+
[[package]]
|
|
2354
|
+
name = "object_store"
|
|
2355
|
+
version = "0.13.1"
|
|
2356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2357
|
+
checksum = "c2858065e55c148d294a9f3aae3b0fa9458edadb41a108397094566f4e3c0dfb"
|
|
2358
|
+
dependencies = [
|
|
2359
|
+
"async-trait",
|
|
2360
|
+
"base64",
|
|
2361
|
+
"bytes",
|
|
2362
|
+
"chrono",
|
|
2363
|
+
"form_urlencoded",
|
|
2364
|
+
"futures",
|
|
2365
|
+
"http 1.4.0",
|
|
2366
|
+
"http-body-util",
|
|
2367
|
+
"httparse",
|
|
2368
|
+
"humantime",
|
|
2369
|
+
"hyper 1.8.1",
|
|
2370
|
+
"itertools",
|
|
2371
|
+
"md-5",
|
|
2372
|
+
"parking_lot",
|
|
2373
|
+
"percent-encoding",
|
|
2374
|
+
"quick-xml",
|
|
2375
|
+
"rand",
|
|
2376
|
+
"reqwest",
|
|
2377
|
+
"ring",
|
|
2378
|
+
"rustls-pki-types",
|
|
2379
|
+
"serde",
|
|
2380
|
+
"serde_json",
|
|
2381
|
+
"serde_urlencoded",
|
|
2382
|
+
"thiserror",
|
|
2383
|
+
"tokio",
|
|
2384
|
+
"tracing",
|
|
2385
|
+
"url",
|
|
2386
|
+
"walkdir",
|
|
2387
|
+
"wasm-bindgen-futures",
|
|
2388
|
+
"web-time",
|
|
2389
|
+
]
|
|
2390
|
+
|
|
2391
|
+
[[package]]
|
|
2392
|
+
name = "once_cell"
|
|
2393
|
+
version = "1.21.3"
|
|
2394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2395
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2396
|
+
|
|
2397
|
+
[[package]]
|
|
2398
|
+
name = "once_cell_polyfill"
|
|
2399
|
+
version = "1.70.2"
|
|
2400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2401
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
2402
|
+
|
|
2403
|
+
[[package]]
|
|
2404
|
+
name = "openssl-probe"
|
|
2405
|
+
version = "0.2.0"
|
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2407
|
+
checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
|
|
2408
|
+
|
|
2409
|
+
[[package]]
|
|
2410
|
+
name = "option-ext"
|
|
2411
|
+
version = "0.2.0"
|
|
2412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2413
|
+
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "outref"
|
|
2417
|
+
version = "0.5.2"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
2420
|
+
|
|
2421
|
+
[[package]]
|
|
2422
|
+
name = "owo-colors"
|
|
2423
|
+
version = "4.2.3"
|
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
+
checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
|
|
2426
|
+
|
|
2427
|
+
[[package]]
|
|
2428
|
+
name = "p256"
|
|
2429
|
+
version = "0.11.1"
|
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2431
|
+
checksum = "51f44edd08f51e2ade572f141051021c5af22677e42b7dd28a88155151c33594"
|
|
2432
|
+
dependencies = [
|
|
2433
|
+
"ecdsa",
|
|
2434
|
+
"elliptic-curve",
|
|
2435
|
+
"sha2",
|
|
2436
|
+
]
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "parking_lot"
|
|
2440
|
+
version = "0.12.5"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2443
|
+
dependencies = [
|
|
2444
|
+
"lock_api",
|
|
2445
|
+
"parking_lot_core",
|
|
2446
|
+
]
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "parking_lot_core"
|
|
2450
|
+
version = "0.9.12"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"cfg-if",
|
|
2455
|
+
"libc",
|
|
2456
|
+
"redox_syscall",
|
|
2457
|
+
"smallvec",
|
|
2458
|
+
"windows-link",
|
|
2459
|
+
]
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "percent-encoding"
|
|
2463
|
+
version = "2.3.2"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "pin-project"
|
|
2469
|
+
version = "1.1.10"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2472
|
+
dependencies = [
|
|
2473
|
+
"pin-project-internal",
|
|
2474
|
+
]
|
|
2475
|
+
|
|
2476
|
+
[[package]]
|
|
2477
|
+
name = "pin-project-internal"
|
|
2478
|
+
version = "1.1.10"
|
|
2479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2481
|
+
dependencies = [
|
|
2482
|
+
"proc-macro2",
|
|
2483
|
+
"quote",
|
|
2484
|
+
"syn 2.0.114",
|
|
2485
|
+
]
|
|
2486
|
+
|
|
2487
|
+
[[package]]
|
|
2488
|
+
name = "pin-project-lite"
|
|
2489
|
+
version = "0.2.16"
|
|
2490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2491
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2492
|
+
|
|
2493
|
+
[[package]]
|
|
2494
|
+
name = "pin-utils"
|
|
2495
|
+
version = "0.1.0"
|
|
2496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2497
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2498
|
+
|
|
2499
|
+
[[package]]
|
|
2500
|
+
name = "pkcs8"
|
|
2501
|
+
version = "0.9.0"
|
|
2502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2503
|
+
checksum = "9eca2c590a5f85da82668fa685c09ce2888b9430e83299debf1f34b65fd4a4ba"
|
|
2504
|
+
dependencies = [
|
|
2505
|
+
"der",
|
|
2506
|
+
"spki",
|
|
2507
|
+
]
|
|
2508
|
+
|
|
2509
|
+
[[package]]
|
|
2510
|
+
name = "pkg-config"
|
|
2511
|
+
version = "0.3.32"
|
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2513
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2514
|
+
|
|
2515
|
+
[[package]]
|
|
2516
|
+
name = "port_check"
|
|
2517
|
+
version = "0.3.0"
|
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2519
|
+
checksum = "4c2749dcd0984ec1be3c01001bb1d83623a58c3c0049a99b9afec61464fa98e7"
|
|
2520
|
+
|
|
2521
|
+
[[package]]
|
|
2522
|
+
name = "portable-atomic"
|
|
2523
|
+
version = "1.13.0"
|
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2525
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "potential_utf"
|
|
2529
|
+
version = "0.1.4"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"zerovec",
|
|
2534
|
+
]
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "powerfmt"
|
|
2538
|
+
version = "0.2.0"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
2541
|
+
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "ppv-lite86"
|
|
2544
|
+
version = "0.2.21"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2547
|
+
dependencies = [
|
|
2548
|
+
"zerocopy",
|
|
2549
|
+
]
|
|
2550
|
+
|
|
2551
|
+
[[package]]
|
|
2552
|
+
name = "predicates"
|
|
2553
|
+
version = "3.1.3"
|
|
2554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2555
|
+
checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
|
|
2556
|
+
dependencies = [
|
|
2557
|
+
"anstyle",
|
|
2558
|
+
"difflib",
|
|
2559
|
+
"predicates-core",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "predicates-core"
|
|
2564
|
+
version = "1.0.9"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "predicates-tree"
|
|
2570
|
+
version = "1.0.12"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"predicates-core",
|
|
2575
|
+
"termtree",
|
|
2576
|
+
]
|
|
2577
|
+
|
|
2578
|
+
[[package]]
|
|
2579
|
+
name = "pretty_assertions"
|
|
2580
|
+
version = "1.4.1"
|
|
2581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2582
|
+
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
2583
|
+
dependencies = [
|
|
2584
|
+
"diff",
|
|
2585
|
+
"yansi",
|
|
2586
|
+
]
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "proc-macro-crate"
|
|
2590
|
+
version = "1.3.1"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919"
|
|
2593
|
+
dependencies = [
|
|
2594
|
+
"once_cell",
|
|
2595
|
+
"toml_edit",
|
|
2596
|
+
]
|
|
2597
|
+
|
|
2598
|
+
[[package]]
|
|
2599
|
+
name = "proc-macro2"
|
|
2600
|
+
version = "1.0.104"
|
|
2601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2602
|
+
checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
|
|
2603
|
+
dependencies = [
|
|
2604
|
+
"unicode-ident",
|
|
2605
|
+
]
|
|
2606
|
+
|
|
2607
|
+
[[package]]
|
|
2608
|
+
name = "proptest"
|
|
2609
|
+
version = "1.9.0"
|
|
2610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2611
|
+
checksum = "bee689443a2bd0a16ab0348b52ee43e3b2d1b1f931c8aa5c9f8de4c86fbe8c40"
|
|
2612
|
+
dependencies = [
|
|
2613
|
+
"bit-set",
|
|
2614
|
+
"bit-vec",
|
|
2615
|
+
"bitflags 2.10.0",
|
|
2616
|
+
"num-traits",
|
|
2617
|
+
"rand",
|
|
2618
|
+
"rand_chacha",
|
|
2619
|
+
"rand_xorshift",
|
|
2620
|
+
"regex-syntax",
|
|
2621
|
+
"rusty-fork",
|
|
2622
|
+
"tempfile",
|
|
2623
|
+
"unarray",
|
|
2624
|
+
]
|
|
2625
|
+
|
|
2626
|
+
[[package]]
|
|
2627
|
+
name = "proptest-state-machine"
|
|
2628
|
+
version = "0.6.0"
|
|
2629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2630
|
+
checksum = "7eba9bfb050fa950d84cff5135a6c455610e03defc124cea67059515cd8293df"
|
|
2631
|
+
dependencies = [
|
|
2632
|
+
"proptest",
|
|
2633
|
+
]
|
|
2634
|
+
|
|
2635
|
+
[[package]]
|
|
2636
|
+
name = "pyo3"
|
|
2637
|
+
version = "0.27.2"
|
|
2638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
+
checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
|
|
2640
|
+
dependencies = [
|
|
2641
|
+
"chrono",
|
|
2642
|
+
"indoc",
|
|
2643
|
+
"inventory",
|
|
2644
|
+
"libc",
|
|
2645
|
+
"memoffset",
|
|
2646
|
+
"once_cell",
|
|
2647
|
+
"portable-atomic",
|
|
2648
|
+
"pyo3-build-config",
|
|
2649
|
+
"pyo3-ffi",
|
|
2650
|
+
"pyo3-macros",
|
|
2651
|
+
"unindent",
|
|
2652
|
+
]
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "pyo3-async-runtimes"
|
|
2656
|
+
version = "0.27.0"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "57ddb5b570751e93cc6777e81fee8087e59cd53b5043292f2a6d59d5bd80fdfd"
|
|
2659
|
+
dependencies = [
|
|
2660
|
+
"futures",
|
|
2661
|
+
"once_cell",
|
|
2662
|
+
"pin-project-lite",
|
|
2663
|
+
"pyo3",
|
|
2664
|
+
"tokio",
|
|
2665
|
+
]
|
|
2666
|
+
|
|
2667
|
+
[[package]]
|
|
2668
|
+
name = "pyo3-build-config"
|
|
2669
|
+
version = "0.27.2"
|
|
2670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2671
|
+
checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
|
|
2672
|
+
dependencies = [
|
|
2673
|
+
"target-lexicon",
|
|
2674
|
+
]
|
|
2675
|
+
|
|
2676
|
+
[[package]]
|
|
2677
|
+
name = "pyo3-bytes"
|
|
2678
|
+
version = "0.5.0"
|
|
2679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2680
|
+
checksum = "37248130b5b50c06a3bd2ed0a4e763aff9bf3104991c656bc27c303df0889460"
|
|
2681
|
+
dependencies = [
|
|
2682
|
+
"bytes",
|
|
2683
|
+
"pyo3",
|
|
2684
|
+
]
|
|
2685
|
+
|
|
2686
|
+
[[package]]
|
|
2687
|
+
name = "pyo3-ffi"
|
|
2688
|
+
version = "0.27.2"
|
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
+
checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
|
|
2691
|
+
dependencies = [
|
|
2692
|
+
"libc",
|
|
2693
|
+
"pyo3-build-config",
|
|
2694
|
+
]
|
|
2695
|
+
|
|
2696
|
+
[[package]]
|
|
2697
|
+
name = "pyo3-macros"
|
|
2698
|
+
version = "0.27.2"
|
|
2699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2700
|
+
checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
|
|
2701
|
+
dependencies = [
|
|
2702
|
+
"proc-macro2",
|
|
2703
|
+
"pyo3-macros-backend",
|
|
2704
|
+
"quote",
|
|
2705
|
+
"syn 2.0.114",
|
|
2706
|
+
]
|
|
2707
|
+
|
|
2708
|
+
[[package]]
|
|
2709
|
+
name = "pyo3-macros-backend"
|
|
2710
|
+
version = "0.27.2"
|
|
2711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2712
|
+
checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
|
|
2713
|
+
dependencies = [
|
|
2714
|
+
"heck",
|
|
2715
|
+
"proc-macro2",
|
|
2716
|
+
"pyo3-build-config",
|
|
2717
|
+
"quote",
|
|
2718
|
+
"syn 2.0.114",
|
|
2719
|
+
]
|
|
2720
|
+
|
|
2721
|
+
[[package]]
|
|
2722
|
+
name = "quick-error"
|
|
2723
|
+
version = "1.2.3"
|
|
2724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2725
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
2726
|
+
|
|
2727
|
+
[[package]]
|
|
2728
|
+
name = "quick-xml"
|
|
2729
|
+
version = "0.38.4"
|
|
2730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2731
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
2732
|
+
dependencies = [
|
|
2733
|
+
"memchr",
|
|
2734
|
+
"serde",
|
|
2735
|
+
]
|
|
2736
|
+
|
|
2737
|
+
[[package]]
|
|
2738
|
+
name = "quick_cache"
|
|
2739
|
+
version = "0.6.18"
|
|
2740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2741
|
+
checksum = "7ada44a88ef953a3294f6eb55d2007ba44646015e18613d2f213016379203ef3"
|
|
2742
|
+
dependencies = [
|
|
2743
|
+
"ahash",
|
|
2744
|
+
"equivalent",
|
|
2745
|
+
"hashbrown 0.16.1",
|
|
2746
|
+
"parking_lot",
|
|
2747
|
+
]
|
|
2748
|
+
|
|
2749
|
+
[[package]]
|
|
2750
|
+
name = "quinn"
|
|
2751
|
+
version = "0.11.9"
|
|
2752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2753
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
2754
|
+
dependencies = [
|
|
2755
|
+
"bytes",
|
|
2756
|
+
"cfg_aliases",
|
|
2757
|
+
"pin-project-lite",
|
|
2758
|
+
"quinn-proto",
|
|
2759
|
+
"quinn-udp",
|
|
2760
|
+
"rustc-hash",
|
|
2761
|
+
"rustls 0.23.35",
|
|
2762
|
+
"socket2 0.6.1",
|
|
2763
|
+
"thiserror",
|
|
2764
|
+
"tokio",
|
|
2765
|
+
"tracing",
|
|
2766
|
+
"web-time",
|
|
2767
|
+
]
|
|
2768
|
+
|
|
2769
|
+
[[package]]
|
|
2770
|
+
name = "quinn-proto"
|
|
2771
|
+
version = "0.11.13"
|
|
2772
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2773
|
+
checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
|
|
2774
|
+
dependencies = [
|
|
2775
|
+
"bytes",
|
|
2776
|
+
"getrandom 0.3.4",
|
|
2777
|
+
"lru-slab",
|
|
2778
|
+
"rand",
|
|
2779
|
+
"ring",
|
|
2780
|
+
"rustc-hash",
|
|
2781
|
+
"rustls 0.23.35",
|
|
2782
|
+
"rustls-pki-types",
|
|
2783
|
+
"slab",
|
|
2784
|
+
"thiserror",
|
|
2785
|
+
"tinyvec",
|
|
2786
|
+
"tracing",
|
|
2787
|
+
"web-time",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "quinn-udp"
|
|
2792
|
+
version = "0.5.14"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"cfg_aliases",
|
|
2797
|
+
"libc",
|
|
2798
|
+
"once_cell",
|
|
2799
|
+
"socket2 0.6.1",
|
|
2800
|
+
"tracing",
|
|
2801
|
+
"windows-sys 0.60.2",
|
|
2802
|
+
]
|
|
2803
|
+
|
|
2804
|
+
[[package]]
|
|
2805
|
+
name = "quote"
|
|
2806
|
+
version = "1.0.44"
|
|
2807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2808
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
2809
|
+
dependencies = [
|
|
2810
|
+
"proc-macro2",
|
|
2811
|
+
]
|
|
2812
|
+
|
|
2813
|
+
[[package]]
|
|
2814
|
+
name = "r-efi"
|
|
2815
|
+
version = "5.3.0"
|
|
2816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2817
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2818
|
+
|
|
2819
|
+
[[package]]
|
|
2820
|
+
name = "rand"
|
|
2821
|
+
version = "0.9.2"
|
|
2822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
2824
|
+
dependencies = [
|
|
2825
|
+
"rand_chacha",
|
|
2826
|
+
"rand_core 0.9.3",
|
|
2827
|
+
]
|
|
2828
|
+
|
|
2829
|
+
[[package]]
|
|
2830
|
+
name = "rand_chacha"
|
|
2831
|
+
version = "0.9.0"
|
|
2832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2833
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2834
|
+
dependencies = [
|
|
2835
|
+
"ppv-lite86",
|
|
2836
|
+
"rand_core 0.9.3",
|
|
2837
|
+
]
|
|
2838
|
+
|
|
2839
|
+
[[package]]
|
|
2840
|
+
name = "rand_core"
|
|
2841
|
+
version = "0.6.4"
|
|
2842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2843
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2844
|
+
dependencies = [
|
|
2845
|
+
"getrandom 0.2.16",
|
|
2846
|
+
]
|
|
2847
|
+
|
|
2848
|
+
[[package]]
|
|
2849
|
+
name = "rand_core"
|
|
2850
|
+
version = "0.9.3"
|
|
2851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2852
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
2853
|
+
dependencies = [
|
|
2854
|
+
"getrandom 0.3.4",
|
|
2855
|
+
]
|
|
2856
|
+
|
|
2857
|
+
[[package]]
|
|
2858
|
+
name = "rand_xorshift"
|
|
2859
|
+
version = "0.4.0"
|
|
2860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2861
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
2862
|
+
dependencies = [
|
|
2863
|
+
"rand_core 0.9.3",
|
|
2864
|
+
]
|
|
2865
|
+
|
|
2866
|
+
[[package]]
|
|
2867
|
+
name = "redox_syscall"
|
|
2868
|
+
version = "0.5.18"
|
|
2869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2870
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2871
|
+
dependencies = [
|
|
2872
|
+
"bitflags 2.10.0",
|
|
2873
|
+
]
|
|
2874
|
+
|
|
2875
|
+
[[package]]
|
|
2876
|
+
name = "redox_users"
|
|
2877
|
+
version = "0.5.2"
|
|
2878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2879
|
+
checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
|
|
2880
|
+
dependencies = [
|
|
2881
|
+
"getrandom 0.2.16",
|
|
2882
|
+
"libredox",
|
|
2883
|
+
"thiserror",
|
|
2884
|
+
]
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "ref-cast"
|
|
2888
|
+
version = "1.0.25"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
|
|
2891
|
+
dependencies = [
|
|
2892
|
+
"ref-cast-impl",
|
|
2893
|
+
]
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "ref-cast-impl"
|
|
2897
|
+
version = "1.0.25"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
|
|
2900
|
+
dependencies = [
|
|
2901
|
+
"proc-macro2",
|
|
2902
|
+
"quote",
|
|
2903
|
+
"syn 2.0.114",
|
|
2904
|
+
]
|
|
2905
|
+
|
|
2906
|
+
[[package]]
|
|
2907
|
+
name = "regex"
|
|
2908
|
+
version = "1.12.2"
|
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
2911
|
+
dependencies = [
|
|
2912
|
+
"aho-corasick",
|
|
2913
|
+
"memchr",
|
|
2914
|
+
"regex-automata",
|
|
2915
|
+
"regex-syntax",
|
|
2916
|
+
]
|
|
2917
|
+
|
|
2918
|
+
[[package]]
|
|
2919
|
+
name = "regex-automata"
|
|
2920
|
+
version = "0.4.13"
|
|
2921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2922
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
2923
|
+
dependencies = [
|
|
2924
|
+
"aho-corasick",
|
|
2925
|
+
"memchr",
|
|
2926
|
+
"regex-syntax",
|
|
2927
|
+
]
|
|
2928
|
+
|
|
2929
|
+
[[package]]
|
|
2930
|
+
name = "regex-lite"
|
|
2931
|
+
version = "0.1.8"
|
|
2932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2933
|
+
checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
|
|
2934
|
+
|
|
2935
|
+
[[package]]
|
|
2936
|
+
name = "regex-syntax"
|
|
2937
|
+
version = "0.8.8"
|
|
2938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2939
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
2940
|
+
|
|
2941
|
+
[[package]]
|
|
2942
|
+
name = "reqwest"
|
|
2943
|
+
version = "0.12.28"
|
|
2944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2945
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2946
|
+
dependencies = [
|
|
2947
|
+
"base64",
|
|
2948
|
+
"bytes",
|
|
2949
|
+
"encoding_rs",
|
|
2950
|
+
"futures-core",
|
|
2951
|
+
"futures-util",
|
|
2952
|
+
"h2 0.4.12",
|
|
2953
|
+
"http 1.4.0",
|
|
2954
|
+
"http-body 1.0.1",
|
|
2955
|
+
"http-body-util",
|
|
2956
|
+
"hyper 1.8.1",
|
|
2957
|
+
"hyper-rustls 0.27.7",
|
|
2958
|
+
"hyper-util",
|
|
2959
|
+
"js-sys",
|
|
2960
|
+
"log",
|
|
2961
|
+
"mime",
|
|
2962
|
+
"percent-encoding",
|
|
2963
|
+
"pin-project-lite",
|
|
2964
|
+
"quinn",
|
|
2965
|
+
"rustls 0.23.35",
|
|
2966
|
+
"rustls-native-certs",
|
|
2967
|
+
"rustls-pki-types",
|
|
2968
|
+
"serde",
|
|
2969
|
+
"serde_json",
|
|
2970
|
+
"serde_urlencoded",
|
|
2971
|
+
"sync_wrapper",
|
|
2972
|
+
"tokio",
|
|
2973
|
+
"tokio-rustls 0.26.4",
|
|
2974
|
+
"tokio-util",
|
|
2975
|
+
"tower",
|
|
2976
|
+
"tower-http",
|
|
2977
|
+
"tower-service",
|
|
2978
|
+
"url",
|
|
2979
|
+
"wasm-bindgen",
|
|
2980
|
+
"wasm-bindgen-futures",
|
|
2981
|
+
"wasm-streams",
|
|
2982
|
+
"web-sys",
|
|
2983
|
+
"webpki-roots",
|
|
2984
|
+
]
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "rfc6979"
|
|
2988
|
+
version = "0.3.1"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "7743f17af12fa0b03b803ba12cd6a8d9483a587e89c69445e3909655c0b9fabb"
|
|
2991
|
+
dependencies = [
|
|
2992
|
+
"crypto-bigint 0.4.9",
|
|
2993
|
+
"hmac",
|
|
2994
|
+
"zeroize",
|
|
2995
|
+
]
|
|
2996
|
+
|
|
2997
|
+
[[package]]
|
|
2998
|
+
name = "ring"
|
|
2999
|
+
version = "0.17.14"
|
|
3000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3001
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
3002
|
+
dependencies = [
|
|
3003
|
+
"cc",
|
|
3004
|
+
"cfg-if",
|
|
3005
|
+
"getrandom 0.2.16",
|
|
3006
|
+
"libc",
|
|
3007
|
+
"untrusted",
|
|
3008
|
+
"windows-sys 0.52.0",
|
|
3009
|
+
]
|
|
3010
|
+
|
|
3011
|
+
[[package]]
|
|
3012
|
+
name = "rmp"
|
|
3013
|
+
version = "0.8.15"
|
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
+
checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
|
|
3016
|
+
dependencies = [
|
|
3017
|
+
"num-traits",
|
|
3018
|
+
]
|
|
3019
|
+
|
|
3020
|
+
[[package]]
|
|
3021
|
+
name = "rmp-serde"
|
|
3022
|
+
version = "1.3.1"
|
|
3023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3024
|
+
checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
|
|
3025
|
+
dependencies = [
|
|
3026
|
+
"rmp",
|
|
3027
|
+
"serde",
|
|
3028
|
+
]
|
|
3029
|
+
|
|
3030
|
+
[[package]]
|
|
3031
|
+
name = "rmpv"
|
|
3032
|
+
version = "1.3.1"
|
|
3033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3034
|
+
checksum = "7a4e1d4b9b938a26d2996af33229f0ca0956c652c1375067f0b45291c1df8417"
|
|
3035
|
+
dependencies = [
|
|
3036
|
+
"rmp",
|
|
3037
|
+
"serde",
|
|
3038
|
+
"serde_bytes",
|
|
3039
|
+
]
|
|
3040
|
+
|
|
3041
|
+
[[package]]
|
|
3042
|
+
name = "rustc-demangle"
|
|
3043
|
+
version = "0.1.26"
|
|
3044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3045
|
+
checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
|
|
3046
|
+
|
|
3047
|
+
[[package]]
|
|
3048
|
+
name = "rustc-hash"
|
|
3049
|
+
version = "2.1.1"
|
|
3050
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3051
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
3052
|
+
|
|
3053
|
+
[[package]]
|
|
3054
|
+
name = "rustc_version"
|
|
3055
|
+
version = "0.4.1"
|
|
3056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3057
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
3058
|
+
dependencies = [
|
|
3059
|
+
"semver",
|
|
3060
|
+
]
|
|
3061
|
+
|
|
3062
|
+
[[package]]
|
|
3063
|
+
name = "rustix"
|
|
3064
|
+
version = "1.1.3"
|
|
3065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3066
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
3067
|
+
dependencies = [
|
|
3068
|
+
"bitflags 2.10.0",
|
|
3069
|
+
"errno",
|
|
3070
|
+
"libc",
|
|
3071
|
+
"linux-raw-sys",
|
|
3072
|
+
"windows-sys 0.61.2",
|
|
3073
|
+
]
|
|
3074
|
+
|
|
3075
|
+
[[package]]
|
|
3076
|
+
name = "rustls"
|
|
3077
|
+
version = "0.21.12"
|
|
3078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3079
|
+
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
|
|
3080
|
+
dependencies = [
|
|
3081
|
+
"log",
|
|
3082
|
+
"ring",
|
|
3083
|
+
"rustls-webpki 0.101.7",
|
|
3084
|
+
"sct",
|
|
3085
|
+
]
|
|
3086
|
+
|
|
3087
|
+
[[package]]
|
|
3088
|
+
name = "rustls"
|
|
3089
|
+
version = "0.23.35"
|
|
3090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3091
|
+
checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
|
|
3092
|
+
dependencies = [
|
|
3093
|
+
"aws-lc-rs",
|
|
3094
|
+
"once_cell",
|
|
3095
|
+
"ring",
|
|
3096
|
+
"rustls-pki-types",
|
|
3097
|
+
"rustls-webpki 0.103.8",
|
|
3098
|
+
"subtle",
|
|
3099
|
+
"zeroize",
|
|
3100
|
+
]
|
|
3101
|
+
|
|
3102
|
+
[[package]]
|
|
3103
|
+
name = "rustls-native-certs"
|
|
3104
|
+
version = "0.8.3"
|
|
3105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3106
|
+
checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
|
|
3107
|
+
dependencies = [
|
|
3108
|
+
"openssl-probe",
|
|
3109
|
+
"rustls-pki-types",
|
|
3110
|
+
"schannel",
|
|
3111
|
+
"security-framework",
|
|
3112
|
+
]
|
|
3113
|
+
|
|
3114
|
+
[[package]]
|
|
3115
|
+
name = "rustls-pki-types"
|
|
3116
|
+
version = "1.13.2"
|
|
3117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
+
checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
|
|
3119
|
+
dependencies = [
|
|
3120
|
+
"web-time",
|
|
3121
|
+
"zeroize",
|
|
3122
|
+
]
|
|
3123
|
+
|
|
3124
|
+
[[package]]
|
|
3125
|
+
name = "rustls-webpki"
|
|
3126
|
+
version = "0.101.7"
|
|
3127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
|
+
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
|
3129
|
+
dependencies = [
|
|
3130
|
+
"ring",
|
|
3131
|
+
"untrusted",
|
|
3132
|
+
]
|
|
3133
|
+
|
|
3134
|
+
[[package]]
|
|
3135
|
+
name = "rustls-webpki"
|
|
3136
|
+
version = "0.103.8"
|
|
3137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3138
|
+
checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
|
|
3139
|
+
dependencies = [
|
|
3140
|
+
"aws-lc-rs",
|
|
3141
|
+
"ring",
|
|
3142
|
+
"rustls-pki-types",
|
|
3143
|
+
"untrusted",
|
|
3144
|
+
]
|
|
3145
|
+
|
|
3146
|
+
[[package]]
|
|
3147
|
+
name = "rustversion"
|
|
3148
|
+
version = "1.0.22"
|
|
3149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3150
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3151
|
+
|
|
3152
|
+
[[package]]
|
|
3153
|
+
name = "rusty-fork"
|
|
3154
|
+
version = "0.3.1"
|
|
3155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3156
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
3157
|
+
dependencies = [
|
|
3158
|
+
"fnv",
|
|
3159
|
+
"quick-error",
|
|
3160
|
+
"tempfile",
|
|
3161
|
+
"wait-timeout",
|
|
3162
|
+
]
|
|
3163
|
+
|
|
3164
|
+
[[package]]
|
|
3165
|
+
name = "ryu"
|
|
3166
|
+
version = "1.0.22"
|
|
3167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3168
|
+
checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "same-file"
|
|
3172
|
+
version = "1.0.6"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3175
|
+
dependencies = [
|
|
3176
|
+
"winapi-util",
|
|
3177
|
+
]
|
|
3178
|
+
|
|
3179
|
+
[[package]]
|
|
3180
|
+
name = "schannel"
|
|
3181
|
+
version = "0.1.28"
|
|
3182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3183
|
+
checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
|
|
3184
|
+
dependencies = [
|
|
3185
|
+
"windows-sys 0.61.2",
|
|
3186
|
+
]
|
|
3187
|
+
|
|
3188
|
+
[[package]]
|
|
3189
|
+
name = "schemars"
|
|
3190
|
+
version = "0.9.0"
|
|
3191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3192
|
+
checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
|
|
3193
|
+
dependencies = [
|
|
3194
|
+
"dyn-clone",
|
|
3195
|
+
"ref-cast",
|
|
3196
|
+
"serde",
|
|
3197
|
+
"serde_json",
|
|
3198
|
+
]
|
|
3199
|
+
|
|
3200
|
+
[[package]]
|
|
3201
|
+
name = "schemars"
|
|
3202
|
+
version = "1.2.0"
|
|
3203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3204
|
+
checksum = "54e910108742c57a770f492731f99be216a52fadd361b06c8fb59d74ccc267d2"
|
|
3205
|
+
dependencies = [
|
|
3206
|
+
"dyn-clone",
|
|
3207
|
+
"ref-cast",
|
|
3208
|
+
"serde",
|
|
3209
|
+
"serde_json",
|
|
3210
|
+
]
|
|
3211
|
+
|
|
3212
|
+
[[package]]
|
|
3213
|
+
name = "scoped-tls"
|
|
3214
|
+
version = "1.0.1"
|
|
3215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
3217
|
+
|
|
3218
|
+
[[package]]
|
|
3219
|
+
name = "scopeguard"
|
|
3220
|
+
version = "1.2.0"
|
|
3221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3222
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3223
|
+
|
|
3224
|
+
[[package]]
|
|
3225
|
+
name = "sct"
|
|
3226
|
+
version = "0.7.1"
|
|
3227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3228
|
+
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
|
3229
|
+
dependencies = [
|
|
3230
|
+
"ring",
|
|
3231
|
+
"untrusted",
|
|
3232
|
+
]
|
|
3233
|
+
|
|
3234
|
+
[[package]]
|
|
3235
|
+
name = "sec1"
|
|
3236
|
+
version = "0.3.0"
|
|
3237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3238
|
+
checksum = "3be24c1842290c45df0a7bf069e0c268a747ad05a192f2fd7dcfdbc1cba40928"
|
|
3239
|
+
dependencies = [
|
|
3240
|
+
"base16ct",
|
|
3241
|
+
"der",
|
|
3242
|
+
"generic-array",
|
|
3243
|
+
"pkcs8",
|
|
3244
|
+
"subtle",
|
|
3245
|
+
"zeroize",
|
|
3246
|
+
]
|
|
3247
|
+
|
|
3248
|
+
[[package]]
|
|
3249
|
+
name = "security-framework"
|
|
3250
|
+
version = "3.5.1"
|
|
3251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3252
|
+
checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
|
|
3253
|
+
dependencies = [
|
|
3254
|
+
"bitflags 2.10.0",
|
|
3255
|
+
"core-foundation 0.10.1",
|
|
3256
|
+
"core-foundation-sys",
|
|
3257
|
+
"libc",
|
|
3258
|
+
"security-framework-sys",
|
|
3259
|
+
]
|
|
3260
|
+
|
|
3261
|
+
[[package]]
|
|
3262
|
+
name = "security-framework-sys"
|
|
3263
|
+
version = "2.15.0"
|
|
3264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
|
+
checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
|
|
3266
|
+
dependencies = [
|
|
3267
|
+
"core-foundation-sys",
|
|
3268
|
+
"libc",
|
|
3269
|
+
]
|
|
3270
|
+
|
|
3271
|
+
[[package]]
|
|
3272
|
+
name = "semver"
|
|
3273
|
+
version = "1.0.27"
|
|
3274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3275
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
3276
|
+
|
|
3277
|
+
[[package]]
|
|
3278
|
+
name = "serde"
|
|
3279
|
+
version = "1.0.228"
|
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3282
|
+
dependencies = [
|
|
3283
|
+
"serde_core",
|
|
3284
|
+
"serde_derive",
|
|
3285
|
+
]
|
|
3286
|
+
|
|
3287
|
+
[[package]]
|
|
3288
|
+
name = "serde_bytes"
|
|
3289
|
+
version = "0.11.19"
|
|
3290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3291
|
+
checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
|
|
3292
|
+
dependencies = [
|
|
3293
|
+
"serde",
|
|
3294
|
+
"serde_core",
|
|
3295
|
+
]
|
|
3296
|
+
|
|
3297
|
+
[[package]]
|
|
3298
|
+
name = "serde_core"
|
|
3299
|
+
version = "1.0.228"
|
|
3300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3301
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3302
|
+
dependencies = [
|
|
3303
|
+
"serde_derive",
|
|
3304
|
+
]
|
|
3305
|
+
|
|
3306
|
+
[[package]]
|
|
3307
|
+
name = "serde_derive"
|
|
3308
|
+
version = "1.0.228"
|
|
3309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3310
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3311
|
+
dependencies = [
|
|
3312
|
+
"proc-macro2",
|
|
3313
|
+
"quote",
|
|
3314
|
+
"syn 2.0.114",
|
|
3315
|
+
]
|
|
3316
|
+
|
|
3317
|
+
[[package]]
|
|
3318
|
+
name = "serde_json"
|
|
3319
|
+
version = "1.0.149"
|
|
3320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3321
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
3322
|
+
dependencies = [
|
|
3323
|
+
"itoa",
|
|
3324
|
+
"memchr",
|
|
3325
|
+
"serde",
|
|
3326
|
+
"serde_core",
|
|
3327
|
+
"zmij",
|
|
3328
|
+
]
|
|
3329
|
+
|
|
3330
|
+
[[package]]
|
|
3331
|
+
name = "serde_urlencoded"
|
|
3332
|
+
version = "0.7.1"
|
|
3333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3334
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
3335
|
+
dependencies = [
|
|
3336
|
+
"form_urlencoded",
|
|
3337
|
+
"itoa",
|
|
3338
|
+
"ryu",
|
|
3339
|
+
"serde",
|
|
3340
|
+
]
|
|
3341
|
+
|
|
3342
|
+
[[package]]
|
|
3343
|
+
name = "serde_with"
|
|
3344
|
+
version = "3.16.1"
|
|
3345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3346
|
+
checksum = "4fa237f2807440d238e0364a218270b98f767a00d3dada77b1c53ae88940e2e7"
|
|
3347
|
+
dependencies = [
|
|
3348
|
+
"base64",
|
|
3349
|
+
"chrono",
|
|
3350
|
+
"hex",
|
|
3351
|
+
"indexmap 1.9.3",
|
|
3352
|
+
"indexmap 2.12.1",
|
|
3353
|
+
"schemars 0.9.0",
|
|
3354
|
+
"schemars 1.2.0",
|
|
3355
|
+
"serde_core",
|
|
3356
|
+
"serde_json",
|
|
3357
|
+
"serde_with_macros",
|
|
3358
|
+
"time",
|
|
3359
|
+
]
|
|
3360
|
+
|
|
3361
|
+
[[package]]
|
|
3362
|
+
name = "serde_with_macros"
|
|
3363
|
+
version = "3.16.1"
|
|
3364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3365
|
+
checksum = "52a8e3ca0ca629121f70ab50f95249e5a6f925cc0f6ffe8256c45b728875706c"
|
|
3366
|
+
dependencies = [
|
|
3367
|
+
"darling",
|
|
3368
|
+
"proc-macro2",
|
|
3369
|
+
"quote",
|
|
3370
|
+
"syn 2.0.114",
|
|
3371
|
+
]
|
|
3372
|
+
|
|
3373
|
+
[[package]]
|
|
3374
|
+
name = "serde_yaml_ng"
|
|
3375
|
+
version = "0.10.0"
|
|
3376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
+
checksum = "7b4db627b98b36d4203a7b458cf3573730f2bb591b28871d916dfa9efabfd41f"
|
|
3378
|
+
dependencies = [
|
|
3379
|
+
"indexmap 2.12.1",
|
|
3380
|
+
"itoa",
|
|
3381
|
+
"ryu",
|
|
3382
|
+
"serde",
|
|
3383
|
+
"unsafe-libyaml",
|
|
3384
|
+
]
|
|
3385
|
+
|
|
3386
|
+
[[package]]
|
|
3387
|
+
name = "sha1"
|
|
3388
|
+
version = "0.10.6"
|
|
3389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
3391
|
+
dependencies = [
|
|
3392
|
+
"cfg-if",
|
|
3393
|
+
"cpufeatures",
|
|
3394
|
+
"digest",
|
|
3395
|
+
]
|
|
3396
|
+
|
|
3397
|
+
[[package]]
|
|
3398
|
+
name = "sha2"
|
|
3399
|
+
version = "0.10.9"
|
|
3400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3401
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
3402
|
+
dependencies = [
|
|
3403
|
+
"cfg-if",
|
|
3404
|
+
"cpufeatures",
|
|
3405
|
+
"digest",
|
|
3406
|
+
]
|
|
3407
|
+
|
|
3408
|
+
[[package]]
|
|
3409
|
+
name = "sharded-slab"
|
|
3410
|
+
version = "0.1.7"
|
|
3411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3412
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3413
|
+
dependencies = [
|
|
3414
|
+
"lazy_static",
|
|
3415
|
+
]
|
|
3416
|
+
|
|
3417
|
+
[[package]]
|
|
3418
|
+
name = "shell-words"
|
|
3419
|
+
version = "1.1.1"
|
|
3420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3421
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
3422
|
+
|
|
3423
|
+
[[package]]
|
|
3424
|
+
name = "shlex"
|
|
3425
|
+
version = "1.3.0"
|
|
3426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3427
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3428
|
+
|
|
3429
|
+
[[package]]
|
|
3430
|
+
name = "signal-hook-registry"
|
|
3431
|
+
version = "1.4.8"
|
|
3432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3433
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3434
|
+
dependencies = [
|
|
3435
|
+
"errno",
|
|
3436
|
+
"libc",
|
|
3437
|
+
]
|
|
3438
|
+
|
|
3439
|
+
[[package]]
|
|
3440
|
+
name = "signature"
|
|
3441
|
+
version = "1.6.4"
|
|
3442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3443
|
+
checksum = "74233d3b3b2f6d4b006dc19dee745e73e2a6bfb6f93607cd3b02bd5b00797d7c"
|
|
3444
|
+
dependencies = [
|
|
3445
|
+
"digest",
|
|
3446
|
+
"rand_core 0.6.4",
|
|
3447
|
+
]
|
|
3448
|
+
|
|
3449
|
+
[[package]]
|
|
3450
|
+
name = "slab"
|
|
3451
|
+
version = "0.4.11"
|
|
3452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3453
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3454
|
+
|
|
3455
|
+
[[package]]
|
|
3456
|
+
name = "smallvec"
|
|
3457
|
+
version = "1.15.1"
|
|
3458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3459
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3460
|
+
|
|
3461
|
+
[[package]]
|
|
3462
|
+
name = "socket2"
|
|
3463
|
+
version = "0.5.10"
|
|
3464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3465
|
+
checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
|
|
3466
|
+
dependencies = [
|
|
3467
|
+
"libc",
|
|
3468
|
+
"windows-sys 0.52.0",
|
|
3469
|
+
]
|
|
3470
|
+
|
|
3471
|
+
[[package]]
|
|
3472
|
+
name = "socket2"
|
|
3473
|
+
version = "0.6.1"
|
|
3474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3475
|
+
checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
|
|
3476
|
+
dependencies = [
|
|
3477
|
+
"libc",
|
|
3478
|
+
"windows-sys 0.60.2",
|
|
3479
|
+
]
|
|
3480
|
+
|
|
3481
|
+
[[package]]
|
|
3482
|
+
name = "spin"
|
|
3483
|
+
version = "0.10.0"
|
|
3484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3485
|
+
checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
|
|
3486
|
+
|
|
3487
|
+
[[package]]
|
|
3488
|
+
name = "spki"
|
|
3489
|
+
version = "0.6.0"
|
|
3490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3491
|
+
checksum = "67cf02bbac7a337dc36e4f5a693db6c21e7863f45070f7064577eb4367a3212b"
|
|
3492
|
+
dependencies = [
|
|
3493
|
+
"base64ct",
|
|
3494
|
+
"der",
|
|
3495
|
+
]
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "stable_deref_trait"
|
|
3499
|
+
version = "1.2.1"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
3502
|
+
|
|
3503
|
+
[[package]]
|
|
3504
|
+
name = "strsim"
|
|
3505
|
+
version = "0.11.1"
|
|
3506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3507
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
3508
|
+
|
|
3509
|
+
[[package]]
|
|
3510
|
+
name = "structmeta"
|
|
3511
|
+
version = "0.3.0"
|
|
3512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3513
|
+
checksum = "2e1575d8d40908d70f6fd05537266b90ae71b15dbbe7a8b7dffa2b759306d329"
|
|
3514
|
+
dependencies = [
|
|
3515
|
+
"proc-macro2",
|
|
3516
|
+
"quote",
|
|
3517
|
+
"structmeta-derive",
|
|
3518
|
+
"syn 2.0.114",
|
|
3519
|
+
]
|
|
3520
|
+
|
|
3521
|
+
[[package]]
|
|
3522
|
+
name = "structmeta-derive"
|
|
3523
|
+
version = "0.3.0"
|
|
3524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3525
|
+
checksum = "152a0b65a590ff6c3da95cabe2353ee04e6167c896b28e3b14478c2636c922fc"
|
|
3526
|
+
dependencies = [
|
|
3527
|
+
"proc-macro2",
|
|
3528
|
+
"quote",
|
|
3529
|
+
"syn 2.0.114",
|
|
3530
|
+
]
|
|
3531
|
+
|
|
3532
|
+
[[package]]
|
|
3533
|
+
name = "subtle"
|
|
3534
|
+
version = "2.6.1"
|
|
3535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3536
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
3537
|
+
|
|
3538
|
+
[[package]]
|
|
3539
|
+
name = "supports-color"
|
|
3540
|
+
version = "3.0.2"
|
|
3541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3542
|
+
checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
|
|
3543
|
+
dependencies = [
|
|
3544
|
+
"is_ci",
|
|
3545
|
+
]
|
|
3546
|
+
|
|
3547
|
+
[[package]]
|
|
3548
|
+
name = "supports-hyperlinks"
|
|
3549
|
+
version = "3.2.0"
|
|
3550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3551
|
+
checksum = "e396b6523b11ccb83120b115a0b7366de372751aa6edf19844dfb13a6af97e91"
|
|
3552
|
+
|
|
3553
|
+
[[package]]
|
|
3554
|
+
name = "supports-unicode"
|
|
3555
|
+
version = "3.0.0"
|
|
3556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3557
|
+
checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
|
|
3558
|
+
|
|
3559
|
+
[[package]]
|
|
3560
|
+
name = "syn"
|
|
3561
|
+
version = "1.0.109"
|
|
3562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3563
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3564
|
+
dependencies = [
|
|
3565
|
+
"proc-macro2",
|
|
3566
|
+
"quote",
|
|
3567
|
+
"unicode-ident",
|
|
3568
|
+
]
|
|
3569
|
+
|
|
3570
|
+
[[package]]
|
|
3571
|
+
name = "syn"
|
|
3572
|
+
version = "2.0.114"
|
|
3573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3574
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
3575
|
+
dependencies = [
|
|
3576
|
+
"proc-macro2",
|
|
3577
|
+
"quote",
|
|
3578
|
+
"unicode-ident",
|
|
3579
|
+
]
|
|
3580
|
+
|
|
3581
|
+
[[package]]
|
|
3582
|
+
name = "sync_wrapper"
|
|
3583
|
+
version = "1.0.2"
|
|
3584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3585
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
3586
|
+
dependencies = [
|
|
3587
|
+
"futures-core",
|
|
3588
|
+
]
|
|
3589
|
+
|
|
3590
|
+
[[package]]
|
|
3591
|
+
name = "synstructure"
|
|
3592
|
+
version = "0.13.2"
|
|
3593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3594
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3595
|
+
dependencies = [
|
|
3596
|
+
"proc-macro2",
|
|
3597
|
+
"quote",
|
|
3598
|
+
"syn 2.0.114",
|
|
3599
|
+
]
|
|
3600
|
+
|
|
3601
|
+
[[package]]
|
|
3602
|
+
name = "system-configuration"
|
|
3603
|
+
version = "0.6.1"
|
|
3604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3605
|
+
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
|
|
3606
|
+
dependencies = [
|
|
3607
|
+
"bitflags 2.10.0",
|
|
3608
|
+
"core-foundation 0.9.4",
|
|
3609
|
+
"system-configuration-sys",
|
|
3610
|
+
]
|
|
3611
|
+
|
|
3612
|
+
[[package]]
|
|
3613
|
+
name = "system-configuration-sys"
|
|
3614
|
+
version = "0.6.0"
|
|
3615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3616
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
3617
|
+
dependencies = [
|
|
3618
|
+
"core-foundation-sys",
|
|
3619
|
+
"libc",
|
|
3620
|
+
]
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "target-lexicon"
|
|
3624
|
+
version = "0.13.4"
|
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3626
|
+
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3627
|
+
|
|
3628
|
+
[[package]]
|
|
3629
|
+
name = "tempfile"
|
|
3630
|
+
version = "3.24.0"
|
|
3631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3632
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
3633
|
+
dependencies = [
|
|
3634
|
+
"fastrand",
|
|
3635
|
+
"getrandom 0.3.4",
|
|
3636
|
+
"once_cell",
|
|
3637
|
+
"rustix",
|
|
3638
|
+
"windows-sys 0.61.2",
|
|
3639
|
+
]
|
|
3640
|
+
|
|
3641
|
+
[[package]]
|
|
3642
|
+
name = "terminal_size"
|
|
3643
|
+
version = "0.4.3"
|
|
3644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3645
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
|
3646
|
+
dependencies = [
|
|
3647
|
+
"rustix",
|
|
3648
|
+
"windows-sys 0.60.2",
|
|
3649
|
+
]
|
|
3650
|
+
|
|
3651
|
+
[[package]]
|
|
3652
|
+
name = "termtree"
|
|
3653
|
+
version = "0.5.1"
|
|
3654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3655
|
+
checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
|
|
3656
|
+
|
|
3657
|
+
[[package]]
|
|
3658
|
+
name = "test-log"
|
|
3659
|
+
version = "0.2.19"
|
|
3660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
+
checksum = "37d53ac171c92a39e4769491c4b4dde7022c60042254b5fc044ae409d34a24d4"
|
|
3662
|
+
dependencies = [
|
|
3663
|
+
"env_logger",
|
|
3664
|
+
"test-log-macros",
|
|
3665
|
+
"tracing-subscriber",
|
|
3666
|
+
]
|
|
3667
|
+
|
|
3668
|
+
[[package]]
|
|
3669
|
+
name = "test-log-macros"
|
|
3670
|
+
version = "0.2.19"
|
|
3671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3672
|
+
checksum = "be35209fd0781c5401458ab66e4f98accf63553e8fae7425503e92fdd319783b"
|
|
3673
|
+
dependencies = [
|
|
3674
|
+
"proc-macro2",
|
|
3675
|
+
"quote",
|
|
3676
|
+
"syn 2.0.114",
|
|
3677
|
+
]
|
|
3678
|
+
|
|
3679
|
+
[[package]]
|
|
3680
|
+
name = "test-strategy"
|
|
3681
|
+
version = "0.4.3"
|
|
3682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
|
+
checksum = "43b12f9683de37f9980e485167ee624bfaa0b6b04da661e98e25ef9c2669bc1b"
|
|
3684
|
+
dependencies = [
|
|
3685
|
+
"derive-ex",
|
|
3686
|
+
"proc-macro2",
|
|
3687
|
+
"quote",
|
|
3688
|
+
"structmeta",
|
|
3689
|
+
"syn 2.0.114",
|
|
3690
|
+
]
|
|
3691
|
+
|
|
3692
|
+
[[package]]
|
|
3693
|
+
name = "textwrap"
|
|
3694
|
+
version = "0.16.2"
|
|
3695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3696
|
+
checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
|
|
3697
|
+
dependencies = [
|
|
3698
|
+
"unicode-linebreak",
|
|
3699
|
+
"unicode-width 0.2.2",
|
|
3700
|
+
]
|
|
3701
|
+
|
|
3702
|
+
[[package]]
|
|
3703
|
+
name = "thiserror"
|
|
3704
|
+
version = "2.0.18"
|
|
3705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3707
|
+
dependencies = [
|
|
3708
|
+
"thiserror-impl",
|
|
3709
|
+
]
|
|
3710
|
+
|
|
3711
|
+
[[package]]
|
|
3712
|
+
name = "thiserror-impl"
|
|
3713
|
+
version = "2.0.18"
|
|
3714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3715
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3716
|
+
dependencies = [
|
|
3717
|
+
"proc-macro2",
|
|
3718
|
+
"quote",
|
|
3719
|
+
"syn 2.0.114",
|
|
3720
|
+
]
|
|
3721
|
+
|
|
3722
|
+
[[package]]
|
|
3723
|
+
name = "thread_local"
|
|
3724
|
+
version = "1.1.9"
|
|
3725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3726
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3727
|
+
dependencies = [
|
|
3728
|
+
"cfg-if",
|
|
3729
|
+
]
|
|
3730
|
+
|
|
3731
|
+
[[package]]
|
|
3732
|
+
name = "time"
|
|
3733
|
+
version = "0.3.44"
|
|
3734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3735
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
3736
|
+
dependencies = [
|
|
3737
|
+
"deranged",
|
|
3738
|
+
"itoa",
|
|
3739
|
+
"num-conv",
|
|
3740
|
+
"powerfmt",
|
|
3741
|
+
"serde",
|
|
3742
|
+
"time-core",
|
|
3743
|
+
"time-macros",
|
|
3744
|
+
]
|
|
3745
|
+
|
|
3746
|
+
[[package]]
|
|
3747
|
+
name = "time-core"
|
|
3748
|
+
version = "0.1.6"
|
|
3749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3750
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
3751
|
+
|
|
3752
|
+
[[package]]
|
|
3753
|
+
name = "time-macros"
|
|
3754
|
+
version = "0.2.24"
|
|
3755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3756
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
3757
|
+
dependencies = [
|
|
3758
|
+
"num-conv",
|
|
3759
|
+
"time-core",
|
|
3760
|
+
]
|
|
3761
|
+
|
|
3762
|
+
[[package]]
|
|
3763
|
+
name = "tinystr"
|
|
3764
|
+
version = "0.8.2"
|
|
3765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3767
|
+
dependencies = [
|
|
3768
|
+
"displaydoc",
|
|
3769
|
+
"zerovec",
|
|
3770
|
+
]
|
|
3771
|
+
|
|
3772
|
+
[[package]]
|
|
3773
|
+
name = "tinyvec"
|
|
3774
|
+
version = "1.10.0"
|
|
3775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3776
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3777
|
+
dependencies = [
|
|
3778
|
+
"tinyvec_macros",
|
|
3779
|
+
]
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "tinyvec_macros"
|
|
3783
|
+
version = "0.1.1"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3786
|
+
|
|
3787
|
+
[[package]]
|
|
3788
|
+
name = "tokio"
|
|
3789
|
+
version = "1.49.0"
|
|
3790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
|
+
checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
|
|
3792
|
+
dependencies = [
|
|
3793
|
+
"bytes",
|
|
3794
|
+
"libc",
|
|
3795
|
+
"mio",
|
|
3796
|
+
"pin-project-lite",
|
|
3797
|
+
"signal-hook-registry",
|
|
3798
|
+
"socket2 0.6.1",
|
|
3799
|
+
"tokio-macros",
|
|
3800
|
+
"windows-sys 0.61.2",
|
|
3801
|
+
]
|
|
3802
|
+
|
|
3803
|
+
[[package]]
|
|
3804
|
+
name = "tokio-macros"
|
|
3805
|
+
version = "2.6.0"
|
|
3806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3807
|
+
checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
|
|
3808
|
+
dependencies = [
|
|
3809
|
+
"proc-macro2",
|
|
3810
|
+
"quote",
|
|
3811
|
+
"syn 2.0.114",
|
|
3812
|
+
]
|
|
3813
|
+
|
|
3814
|
+
[[package]]
|
|
3815
|
+
name = "tokio-rustls"
|
|
3816
|
+
version = "0.24.1"
|
|
3817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3818
|
+
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
|
3819
|
+
dependencies = [
|
|
3820
|
+
"rustls 0.21.12",
|
|
3821
|
+
"tokio",
|
|
3822
|
+
]
|
|
3823
|
+
|
|
3824
|
+
[[package]]
|
|
3825
|
+
name = "tokio-rustls"
|
|
3826
|
+
version = "0.26.4"
|
|
3827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3828
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3829
|
+
dependencies = [
|
|
3830
|
+
"rustls 0.23.35",
|
|
3831
|
+
"tokio",
|
|
3832
|
+
]
|
|
3833
|
+
|
|
3834
|
+
[[package]]
|
|
3835
|
+
name = "tokio-util"
|
|
3836
|
+
version = "0.7.18"
|
|
3837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3839
|
+
dependencies = [
|
|
3840
|
+
"bytes",
|
|
3841
|
+
"futures-core",
|
|
3842
|
+
"futures-io",
|
|
3843
|
+
"futures-sink",
|
|
3844
|
+
"pin-project-lite",
|
|
3845
|
+
"tokio",
|
|
3846
|
+
]
|
|
3847
|
+
|
|
3848
|
+
[[package]]
|
|
3849
|
+
name = "toml_datetime"
|
|
3850
|
+
version = "0.6.11"
|
|
3851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3852
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3853
|
+
|
|
3854
|
+
[[package]]
|
|
3855
|
+
name = "toml_edit"
|
|
3856
|
+
version = "0.19.15"
|
|
3857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3858
|
+
checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421"
|
|
3859
|
+
dependencies = [
|
|
3860
|
+
"indexmap 2.12.1",
|
|
3861
|
+
"toml_datetime",
|
|
3862
|
+
"winnow",
|
|
3863
|
+
]
|
|
3864
|
+
|
|
3865
|
+
[[package]]
|
|
3866
|
+
name = "tower"
|
|
3867
|
+
version = "0.5.2"
|
|
3868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3869
|
+
checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
|
|
3870
|
+
dependencies = [
|
|
3871
|
+
"futures-core",
|
|
3872
|
+
"futures-util",
|
|
3873
|
+
"pin-project-lite",
|
|
3874
|
+
"sync_wrapper",
|
|
3875
|
+
"tokio",
|
|
3876
|
+
"tower-layer",
|
|
3877
|
+
"tower-service",
|
|
3878
|
+
]
|
|
3879
|
+
|
|
3880
|
+
[[package]]
|
|
3881
|
+
name = "tower-http"
|
|
3882
|
+
version = "0.6.8"
|
|
3883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3884
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
3885
|
+
dependencies = [
|
|
3886
|
+
"bitflags 2.10.0",
|
|
3887
|
+
"bytes",
|
|
3888
|
+
"futures-util",
|
|
3889
|
+
"http 1.4.0",
|
|
3890
|
+
"http-body 1.0.1",
|
|
3891
|
+
"iri-string",
|
|
3892
|
+
"pin-project-lite",
|
|
3893
|
+
"tower",
|
|
3894
|
+
"tower-layer",
|
|
3895
|
+
"tower-service",
|
|
3896
|
+
]
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "tower-layer"
|
|
3900
|
+
version = "0.3.3"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3903
|
+
|
|
3904
|
+
[[package]]
|
|
3905
|
+
name = "tower-service"
|
|
3906
|
+
version = "0.3.3"
|
|
3907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3908
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3909
|
+
|
|
3910
|
+
[[package]]
|
|
3911
|
+
name = "tracing"
|
|
3912
|
+
version = "0.1.44"
|
|
3913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3914
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3915
|
+
dependencies = [
|
|
3916
|
+
"log",
|
|
3917
|
+
"pin-project-lite",
|
|
3918
|
+
"tracing-attributes",
|
|
3919
|
+
"tracing-core",
|
|
3920
|
+
]
|
|
3921
|
+
|
|
3922
|
+
[[package]]
|
|
3923
|
+
name = "tracing-attributes"
|
|
3924
|
+
version = "0.1.31"
|
|
3925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3926
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3927
|
+
dependencies = [
|
|
3928
|
+
"proc-macro2",
|
|
3929
|
+
"quote",
|
|
3930
|
+
"syn 2.0.114",
|
|
3931
|
+
]
|
|
3932
|
+
|
|
3933
|
+
[[package]]
|
|
3934
|
+
name = "tracing-core"
|
|
3935
|
+
version = "0.1.36"
|
|
3936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3937
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3938
|
+
dependencies = [
|
|
3939
|
+
"once_cell",
|
|
3940
|
+
"valuable",
|
|
3941
|
+
]
|
|
3942
|
+
|
|
3943
|
+
[[package]]
|
|
3944
|
+
name = "tracing-error"
|
|
3945
|
+
version = "0.2.1"
|
|
3946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3947
|
+
checksum = "8b1581020d7a273442f5b45074a6a57d5757ad0a47dac0e9f0bd57b81936f3db"
|
|
3948
|
+
dependencies = [
|
|
3949
|
+
"tracing",
|
|
3950
|
+
"tracing-subscriber",
|
|
3951
|
+
]
|
|
3952
|
+
|
|
3953
|
+
[[package]]
|
|
3954
|
+
name = "tracing-log"
|
|
3955
|
+
version = "0.2.0"
|
|
3956
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3957
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3958
|
+
dependencies = [
|
|
3959
|
+
"log",
|
|
3960
|
+
"once_cell",
|
|
3961
|
+
"tracing-core",
|
|
3962
|
+
]
|
|
3963
|
+
|
|
3964
|
+
[[package]]
|
|
3965
|
+
name = "tracing-subscriber"
|
|
3966
|
+
version = "0.3.22"
|
|
3967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
3969
|
+
dependencies = [
|
|
3970
|
+
"matchers",
|
|
3971
|
+
"nu-ansi-term",
|
|
3972
|
+
"once_cell",
|
|
3973
|
+
"regex-automata",
|
|
3974
|
+
"sharded-slab",
|
|
3975
|
+
"smallvec",
|
|
3976
|
+
"thread_local",
|
|
3977
|
+
"tracing",
|
|
3978
|
+
"tracing-core",
|
|
3979
|
+
"tracing-log",
|
|
3980
|
+
]
|
|
3981
|
+
|
|
3982
|
+
[[package]]
|
|
3983
|
+
name = "try-lock"
|
|
3984
|
+
version = "0.2.5"
|
|
3985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3986
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3987
|
+
|
|
3988
|
+
[[package]]
|
|
3989
|
+
name = "typed-path"
|
|
3990
|
+
version = "0.12.1"
|
|
3991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3992
|
+
checksum = "e43ffa54726cdc9ea78392023ffe9fe9cf9ac779e1c6fcb0d23f9862e3879d20"
|
|
3993
|
+
|
|
3994
|
+
[[package]]
|
|
3995
|
+
name = "typeid"
|
|
3996
|
+
version = "1.0.3"
|
|
3997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3998
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
3999
|
+
|
|
4000
|
+
[[package]]
|
|
4001
|
+
name = "typenum"
|
|
4002
|
+
version = "1.19.0"
|
|
4003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4004
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
4005
|
+
|
|
4006
|
+
[[package]]
|
|
4007
|
+
name = "typetag"
|
|
4008
|
+
version = "0.2.21"
|
|
4009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4010
|
+
checksum = "be2212c8a9b9bcfca32024de14998494cf9a5dfa59ea1b829de98bac374b86bf"
|
|
4011
|
+
dependencies = [
|
|
4012
|
+
"erased-serde",
|
|
4013
|
+
"inventory",
|
|
4014
|
+
"once_cell",
|
|
4015
|
+
"serde",
|
|
4016
|
+
"typetag-impl",
|
|
4017
|
+
]
|
|
4018
|
+
|
|
4019
|
+
[[package]]
|
|
4020
|
+
name = "typetag-impl"
|
|
4021
|
+
version = "0.2.21"
|
|
4022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4023
|
+
checksum = "27a7a9b72ba121f6f1f6c3632b85604cac41aedb5ddc70accbebb6cac83de846"
|
|
4024
|
+
dependencies = [
|
|
4025
|
+
"proc-macro2",
|
|
4026
|
+
"quote",
|
|
4027
|
+
"syn 2.0.114",
|
|
4028
|
+
]
|
|
4029
|
+
|
|
4030
|
+
[[package]]
|
|
4031
|
+
name = "unarray"
|
|
4032
|
+
version = "0.1.4"
|
|
4033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4034
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
4035
|
+
|
|
4036
|
+
[[package]]
|
|
4037
|
+
name = "unicase"
|
|
4038
|
+
version = "2.8.1"
|
|
4039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4040
|
+
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
4041
|
+
|
|
4042
|
+
[[package]]
|
|
4043
|
+
name = "unicode-ident"
|
|
4044
|
+
version = "1.0.22"
|
|
4045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4046
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
4047
|
+
|
|
4048
|
+
[[package]]
|
|
4049
|
+
name = "unicode-linebreak"
|
|
4050
|
+
version = "0.1.5"
|
|
4051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4052
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
4053
|
+
|
|
4054
|
+
[[package]]
|
|
4055
|
+
name = "unicode-width"
|
|
4056
|
+
version = "0.1.14"
|
|
4057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4058
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
4059
|
+
|
|
4060
|
+
[[package]]
|
|
4061
|
+
name = "unicode-width"
|
|
4062
|
+
version = "0.2.2"
|
|
4063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4064
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
4065
|
+
|
|
4066
|
+
[[package]]
|
|
4067
|
+
name = "unindent"
|
|
4068
|
+
version = "0.2.4"
|
|
4069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4070
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
4071
|
+
|
|
4072
|
+
[[package]]
|
|
4073
|
+
name = "unsafe-libyaml"
|
|
4074
|
+
version = "0.2.11"
|
|
4075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4076
|
+
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
|
|
4077
|
+
|
|
4078
|
+
[[package]]
|
|
4079
|
+
name = "untrusted"
|
|
4080
|
+
version = "0.9.0"
|
|
4081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4082
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
4083
|
+
|
|
4084
|
+
[[package]]
|
|
4085
|
+
name = "url"
|
|
4086
|
+
version = "2.5.8"
|
|
4087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4088
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
4089
|
+
dependencies = [
|
|
4090
|
+
"form_urlencoded",
|
|
4091
|
+
"idna",
|
|
4092
|
+
"percent-encoding",
|
|
4093
|
+
"serde",
|
|
4094
|
+
"serde_derive",
|
|
4095
|
+
]
|
|
4096
|
+
|
|
4097
|
+
[[package]]
|
|
4098
|
+
name = "urlencoding"
|
|
4099
|
+
version = "2.1.3"
|
|
4100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4101
|
+
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
|
|
4102
|
+
|
|
4103
|
+
[[package]]
|
|
4104
|
+
name = "utf8_iter"
|
|
4105
|
+
version = "1.0.4"
|
|
4106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4107
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
4108
|
+
|
|
4109
|
+
[[package]]
|
|
4110
|
+
name = "utf8parse"
|
|
4111
|
+
version = "0.2.2"
|
|
4112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4113
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
4114
|
+
|
|
4115
|
+
[[package]]
|
|
4116
|
+
name = "uuid"
|
|
4117
|
+
version = "1.19.0"
|
|
4118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4119
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
4120
|
+
dependencies = [
|
|
4121
|
+
"js-sys",
|
|
4122
|
+
"wasm-bindgen",
|
|
4123
|
+
]
|
|
4124
|
+
|
|
4125
|
+
[[package]]
|
|
4126
|
+
name = "valuable"
|
|
4127
|
+
version = "0.1.1"
|
|
4128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4129
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
4130
|
+
|
|
4131
|
+
[[package]]
|
|
4132
|
+
name = "version_check"
|
|
4133
|
+
version = "0.9.5"
|
|
4134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4135
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
4136
|
+
|
|
4137
|
+
[[package]]
|
|
4138
|
+
name = "vsimd"
|
|
4139
|
+
version = "0.8.0"
|
|
4140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4141
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
4142
|
+
|
|
4143
|
+
[[package]]
|
|
4144
|
+
name = "wait-timeout"
|
|
4145
|
+
version = "0.2.1"
|
|
4146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4147
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
4148
|
+
dependencies = [
|
|
4149
|
+
"libc",
|
|
4150
|
+
]
|
|
4151
|
+
|
|
4152
|
+
[[package]]
|
|
4153
|
+
name = "walkdir"
|
|
4154
|
+
version = "2.5.0"
|
|
4155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4156
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
4157
|
+
dependencies = [
|
|
4158
|
+
"same-file",
|
|
4159
|
+
"winapi-util",
|
|
4160
|
+
]
|
|
4161
|
+
|
|
4162
|
+
[[package]]
|
|
4163
|
+
name = "want"
|
|
4164
|
+
version = "0.3.1"
|
|
4165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4166
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
4167
|
+
dependencies = [
|
|
4168
|
+
"try-lock",
|
|
4169
|
+
]
|
|
4170
|
+
|
|
4171
|
+
[[package]]
|
|
4172
|
+
name = "warp"
|
|
4173
|
+
version = "0.4.2"
|
|
4174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4175
|
+
checksum = "51d06d9202adc1f15d709c4f4a2069be5428aa912cc025d6f268ac441ab066b0"
|
|
4176
|
+
dependencies = [
|
|
4177
|
+
"bytes",
|
|
4178
|
+
"futures-util",
|
|
4179
|
+
"headers",
|
|
4180
|
+
"http 1.4.0",
|
|
4181
|
+
"http-body 1.0.1",
|
|
4182
|
+
"http-body-util",
|
|
4183
|
+
"hyper 1.8.1",
|
|
4184
|
+
"hyper-util",
|
|
4185
|
+
"log",
|
|
4186
|
+
"mime",
|
|
4187
|
+
"mime_guess",
|
|
4188
|
+
"percent-encoding",
|
|
4189
|
+
"pin-project",
|
|
4190
|
+
"scoped-tls",
|
|
4191
|
+
"serde",
|
|
4192
|
+
"serde_json",
|
|
4193
|
+
"serde_urlencoded",
|
|
4194
|
+
"tokio",
|
|
4195
|
+
"tokio-util",
|
|
4196
|
+
"tower-service",
|
|
4197
|
+
"tracing",
|
|
4198
|
+
]
|
|
4199
|
+
|
|
4200
|
+
[[package]]
|
|
4201
|
+
name = "wasi"
|
|
4202
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
4203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4204
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
4205
|
+
|
|
4206
|
+
[[package]]
|
|
4207
|
+
name = "wasip2"
|
|
4208
|
+
version = "1.0.1+wasi-0.2.4"
|
|
4209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4210
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
4211
|
+
dependencies = [
|
|
4212
|
+
"wit-bindgen",
|
|
4213
|
+
]
|
|
4214
|
+
|
|
4215
|
+
[[package]]
|
|
4216
|
+
name = "wasm-bindgen"
|
|
4217
|
+
version = "0.2.106"
|
|
4218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4219
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
4220
|
+
dependencies = [
|
|
4221
|
+
"cfg-if",
|
|
4222
|
+
"once_cell",
|
|
4223
|
+
"rustversion",
|
|
4224
|
+
"wasm-bindgen-macro",
|
|
4225
|
+
"wasm-bindgen-shared",
|
|
4226
|
+
]
|
|
4227
|
+
|
|
4228
|
+
[[package]]
|
|
4229
|
+
name = "wasm-bindgen-futures"
|
|
4230
|
+
version = "0.4.56"
|
|
4231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4232
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
4233
|
+
dependencies = [
|
|
4234
|
+
"cfg-if",
|
|
4235
|
+
"js-sys",
|
|
4236
|
+
"once_cell",
|
|
4237
|
+
"wasm-bindgen",
|
|
4238
|
+
"web-sys",
|
|
4239
|
+
]
|
|
4240
|
+
|
|
4241
|
+
[[package]]
|
|
4242
|
+
name = "wasm-bindgen-macro"
|
|
4243
|
+
version = "0.2.106"
|
|
4244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4245
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
4246
|
+
dependencies = [
|
|
4247
|
+
"quote",
|
|
4248
|
+
"wasm-bindgen-macro-support",
|
|
4249
|
+
]
|
|
4250
|
+
|
|
4251
|
+
[[package]]
|
|
4252
|
+
name = "wasm-bindgen-macro-support"
|
|
4253
|
+
version = "0.2.106"
|
|
4254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4255
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
4256
|
+
dependencies = [
|
|
4257
|
+
"bumpalo",
|
|
4258
|
+
"proc-macro2",
|
|
4259
|
+
"quote",
|
|
4260
|
+
"syn 2.0.114",
|
|
4261
|
+
"wasm-bindgen-shared",
|
|
4262
|
+
]
|
|
4263
|
+
|
|
4264
|
+
[[package]]
|
|
4265
|
+
name = "wasm-bindgen-shared"
|
|
4266
|
+
version = "0.2.106"
|
|
4267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4268
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
4269
|
+
dependencies = [
|
|
4270
|
+
"unicode-ident",
|
|
4271
|
+
]
|
|
4272
|
+
|
|
4273
|
+
[[package]]
|
|
4274
|
+
name = "wasm-streams"
|
|
4275
|
+
version = "0.4.2"
|
|
4276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4277
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
4278
|
+
dependencies = [
|
|
4279
|
+
"futures-util",
|
|
4280
|
+
"js-sys",
|
|
4281
|
+
"wasm-bindgen",
|
|
4282
|
+
"wasm-bindgen-futures",
|
|
4283
|
+
"web-sys",
|
|
4284
|
+
]
|
|
4285
|
+
|
|
4286
|
+
[[package]]
|
|
4287
|
+
name = "web-sys"
|
|
4288
|
+
version = "0.3.83"
|
|
4289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4290
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
4291
|
+
dependencies = [
|
|
4292
|
+
"js-sys",
|
|
4293
|
+
"wasm-bindgen",
|
|
4294
|
+
]
|
|
4295
|
+
|
|
4296
|
+
[[package]]
|
|
4297
|
+
name = "web-time"
|
|
4298
|
+
version = "1.1.0"
|
|
4299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4300
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
4301
|
+
dependencies = [
|
|
4302
|
+
"js-sys",
|
|
4303
|
+
"wasm-bindgen",
|
|
4304
|
+
]
|
|
4305
|
+
|
|
4306
|
+
[[package]]
|
|
4307
|
+
name = "webpki-roots"
|
|
4308
|
+
version = "1.0.4"
|
|
4309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4310
|
+
checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
|
|
4311
|
+
dependencies = [
|
|
4312
|
+
"rustls-pki-types",
|
|
4313
|
+
]
|
|
4314
|
+
|
|
4315
|
+
[[package]]
|
|
4316
|
+
name = "winapi-util"
|
|
4317
|
+
version = "0.1.11"
|
|
4318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4319
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
4320
|
+
dependencies = [
|
|
4321
|
+
"windows-sys 0.61.2",
|
|
4322
|
+
]
|
|
4323
|
+
|
|
4324
|
+
[[package]]
|
|
4325
|
+
name = "windows-core"
|
|
4326
|
+
version = "0.62.2"
|
|
4327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4328
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4329
|
+
dependencies = [
|
|
4330
|
+
"windows-implement",
|
|
4331
|
+
"windows-interface",
|
|
4332
|
+
"windows-link",
|
|
4333
|
+
"windows-result",
|
|
4334
|
+
"windows-strings",
|
|
4335
|
+
]
|
|
4336
|
+
|
|
4337
|
+
[[package]]
|
|
4338
|
+
name = "windows-implement"
|
|
4339
|
+
version = "0.60.2"
|
|
4340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4341
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
4342
|
+
dependencies = [
|
|
4343
|
+
"proc-macro2",
|
|
4344
|
+
"quote",
|
|
4345
|
+
"syn 2.0.114",
|
|
4346
|
+
]
|
|
4347
|
+
|
|
4348
|
+
[[package]]
|
|
4349
|
+
name = "windows-interface"
|
|
4350
|
+
version = "0.59.3"
|
|
4351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4352
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
4353
|
+
dependencies = [
|
|
4354
|
+
"proc-macro2",
|
|
4355
|
+
"quote",
|
|
4356
|
+
"syn 2.0.114",
|
|
4357
|
+
]
|
|
4358
|
+
|
|
4359
|
+
[[package]]
|
|
4360
|
+
name = "windows-link"
|
|
4361
|
+
version = "0.2.1"
|
|
4362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4363
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
4364
|
+
|
|
4365
|
+
[[package]]
|
|
4366
|
+
name = "windows-registry"
|
|
4367
|
+
version = "0.6.1"
|
|
4368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4369
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
4370
|
+
dependencies = [
|
|
4371
|
+
"windows-link",
|
|
4372
|
+
"windows-result",
|
|
4373
|
+
"windows-strings",
|
|
4374
|
+
]
|
|
4375
|
+
|
|
4376
|
+
[[package]]
|
|
4377
|
+
name = "windows-result"
|
|
4378
|
+
version = "0.4.1"
|
|
4379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4380
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
4381
|
+
dependencies = [
|
|
4382
|
+
"windows-link",
|
|
4383
|
+
]
|
|
4384
|
+
|
|
4385
|
+
[[package]]
|
|
4386
|
+
name = "windows-strings"
|
|
4387
|
+
version = "0.5.1"
|
|
4388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4389
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
4390
|
+
dependencies = [
|
|
4391
|
+
"windows-link",
|
|
4392
|
+
]
|
|
4393
|
+
|
|
4394
|
+
[[package]]
|
|
4395
|
+
name = "windows-sys"
|
|
4396
|
+
version = "0.52.0"
|
|
4397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4398
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4399
|
+
dependencies = [
|
|
4400
|
+
"windows-targets 0.52.6",
|
|
4401
|
+
]
|
|
4402
|
+
|
|
4403
|
+
[[package]]
|
|
4404
|
+
name = "windows-sys"
|
|
4405
|
+
version = "0.60.2"
|
|
4406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4407
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
4408
|
+
dependencies = [
|
|
4409
|
+
"windows-targets 0.53.5",
|
|
4410
|
+
]
|
|
4411
|
+
|
|
4412
|
+
[[package]]
|
|
4413
|
+
name = "windows-sys"
|
|
4414
|
+
version = "0.61.2"
|
|
4415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4416
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4417
|
+
dependencies = [
|
|
4418
|
+
"windows-link",
|
|
4419
|
+
]
|
|
4420
|
+
|
|
4421
|
+
[[package]]
|
|
4422
|
+
name = "windows-targets"
|
|
4423
|
+
version = "0.52.6"
|
|
4424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4425
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4426
|
+
dependencies = [
|
|
4427
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4428
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4429
|
+
"windows_i686_gnu 0.52.6",
|
|
4430
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4431
|
+
"windows_i686_msvc 0.52.6",
|
|
4432
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4433
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4434
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4435
|
+
]
|
|
4436
|
+
|
|
4437
|
+
[[package]]
|
|
4438
|
+
name = "windows-targets"
|
|
4439
|
+
version = "0.53.5"
|
|
4440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4441
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4442
|
+
dependencies = [
|
|
4443
|
+
"windows-link",
|
|
4444
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4445
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4446
|
+
"windows_i686_gnu 0.53.1",
|
|
4447
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4448
|
+
"windows_i686_msvc 0.53.1",
|
|
4449
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4450
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4451
|
+
"windows_x86_64_msvc 0.53.1",
|
|
4452
|
+
]
|
|
4453
|
+
|
|
4454
|
+
[[package]]
|
|
4455
|
+
name = "windows_aarch64_gnullvm"
|
|
4456
|
+
version = "0.52.6"
|
|
4457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4458
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4459
|
+
|
|
4460
|
+
[[package]]
|
|
4461
|
+
name = "windows_aarch64_gnullvm"
|
|
4462
|
+
version = "0.53.1"
|
|
4463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4464
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4465
|
+
|
|
4466
|
+
[[package]]
|
|
4467
|
+
name = "windows_aarch64_msvc"
|
|
4468
|
+
version = "0.52.6"
|
|
4469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4470
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4471
|
+
|
|
4472
|
+
[[package]]
|
|
4473
|
+
name = "windows_aarch64_msvc"
|
|
4474
|
+
version = "0.53.1"
|
|
4475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4476
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4477
|
+
|
|
4478
|
+
[[package]]
|
|
4479
|
+
name = "windows_i686_gnu"
|
|
4480
|
+
version = "0.52.6"
|
|
4481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4482
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4483
|
+
|
|
4484
|
+
[[package]]
|
|
4485
|
+
name = "windows_i686_gnu"
|
|
4486
|
+
version = "0.53.1"
|
|
4487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4488
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4489
|
+
|
|
4490
|
+
[[package]]
|
|
4491
|
+
name = "windows_i686_gnullvm"
|
|
4492
|
+
version = "0.52.6"
|
|
4493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4494
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4495
|
+
|
|
4496
|
+
[[package]]
|
|
4497
|
+
name = "windows_i686_gnullvm"
|
|
4498
|
+
version = "0.53.1"
|
|
4499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4500
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4501
|
+
|
|
4502
|
+
[[package]]
|
|
4503
|
+
name = "windows_i686_msvc"
|
|
4504
|
+
version = "0.52.6"
|
|
4505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4506
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4507
|
+
|
|
4508
|
+
[[package]]
|
|
4509
|
+
name = "windows_i686_msvc"
|
|
4510
|
+
version = "0.53.1"
|
|
4511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4512
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4513
|
+
|
|
4514
|
+
[[package]]
|
|
4515
|
+
name = "windows_x86_64_gnu"
|
|
4516
|
+
version = "0.52.6"
|
|
4517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4518
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4519
|
+
|
|
4520
|
+
[[package]]
|
|
4521
|
+
name = "windows_x86_64_gnu"
|
|
4522
|
+
version = "0.53.1"
|
|
4523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4524
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4525
|
+
|
|
4526
|
+
[[package]]
|
|
4527
|
+
name = "windows_x86_64_gnullvm"
|
|
4528
|
+
version = "0.52.6"
|
|
4529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4530
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4531
|
+
|
|
4532
|
+
[[package]]
|
|
4533
|
+
name = "windows_x86_64_gnullvm"
|
|
4534
|
+
version = "0.53.1"
|
|
4535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4536
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4537
|
+
|
|
4538
|
+
[[package]]
|
|
4539
|
+
name = "windows_x86_64_msvc"
|
|
4540
|
+
version = "0.52.6"
|
|
4541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4542
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4543
|
+
|
|
4544
|
+
[[package]]
|
|
4545
|
+
name = "windows_x86_64_msvc"
|
|
4546
|
+
version = "0.53.1"
|
|
4547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4548
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4549
|
+
|
|
4550
|
+
[[package]]
|
|
4551
|
+
name = "winnow"
|
|
4552
|
+
version = "0.5.40"
|
|
4553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4554
|
+
checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876"
|
|
4555
|
+
dependencies = [
|
|
4556
|
+
"memchr",
|
|
4557
|
+
]
|
|
4558
|
+
|
|
4559
|
+
[[package]]
|
|
4560
|
+
name = "wit-bindgen"
|
|
4561
|
+
version = "0.46.0"
|
|
4562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4563
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
4564
|
+
|
|
4565
|
+
[[package]]
|
|
4566
|
+
name = "writeable"
|
|
4567
|
+
version = "0.6.2"
|
|
4568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4569
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4570
|
+
|
|
4571
|
+
[[package]]
|
|
4572
|
+
name = "xmlparser"
|
|
4573
|
+
version = "0.13.6"
|
|
4574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4575
|
+
checksum = "66fee0b777b0f5ac1c69bb06d361268faafa61cd4682ae064a171c16c433e9e4"
|
|
4576
|
+
|
|
4577
|
+
[[package]]
|
|
4578
|
+
name = "yansi"
|
|
4579
|
+
version = "1.0.1"
|
|
4580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4581
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
4582
|
+
|
|
4583
|
+
[[package]]
|
|
4584
|
+
name = "yoke"
|
|
4585
|
+
version = "0.8.1"
|
|
4586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4587
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4588
|
+
dependencies = [
|
|
4589
|
+
"stable_deref_trait",
|
|
4590
|
+
"yoke-derive",
|
|
4591
|
+
"zerofrom",
|
|
4592
|
+
]
|
|
4593
|
+
|
|
4594
|
+
[[package]]
|
|
4595
|
+
name = "yoke-derive"
|
|
4596
|
+
version = "0.8.1"
|
|
4597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4598
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4599
|
+
dependencies = [
|
|
4600
|
+
"proc-macro2",
|
|
4601
|
+
"quote",
|
|
4602
|
+
"syn 2.0.114",
|
|
4603
|
+
"synstructure",
|
|
4604
|
+
]
|
|
4605
|
+
|
|
4606
|
+
[[package]]
|
|
4607
|
+
name = "zerocopy"
|
|
4608
|
+
version = "0.8.31"
|
|
4609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4610
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
4611
|
+
dependencies = [
|
|
4612
|
+
"zerocopy-derive",
|
|
4613
|
+
]
|
|
4614
|
+
|
|
4615
|
+
[[package]]
|
|
4616
|
+
name = "zerocopy-derive"
|
|
4617
|
+
version = "0.8.31"
|
|
4618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4619
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
4620
|
+
dependencies = [
|
|
4621
|
+
"proc-macro2",
|
|
4622
|
+
"quote",
|
|
4623
|
+
"syn 2.0.114",
|
|
4624
|
+
]
|
|
4625
|
+
|
|
4626
|
+
[[package]]
|
|
4627
|
+
name = "zerofrom"
|
|
4628
|
+
version = "0.1.6"
|
|
4629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4630
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4631
|
+
dependencies = [
|
|
4632
|
+
"zerofrom-derive",
|
|
4633
|
+
]
|
|
4634
|
+
|
|
4635
|
+
[[package]]
|
|
4636
|
+
name = "zerofrom-derive"
|
|
4637
|
+
version = "0.1.6"
|
|
4638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4639
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4640
|
+
dependencies = [
|
|
4641
|
+
"proc-macro2",
|
|
4642
|
+
"quote",
|
|
4643
|
+
"syn 2.0.114",
|
|
4644
|
+
"synstructure",
|
|
4645
|
+
]
|
|
4646
|
+
|
|
4647
|
+
[[package]]
|
|
4648
|
+
name = "zeroize"
|
|
4649
|
+
version = "1.8.2"
|
|
4650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4651
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
4652
|
+
|
|
4653
|
+
[[package]]
|
|
4654
|
+
name = "zerotrie"
|
|
4655
|
+
version = "0.2.3"
|
|
4656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4657
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4658
|
+
dependencies = [
|
|
4659
|
+
"displaydoc",
|
|
4660
|
+
"yoke",
|
|
4661
|
+
"zerofrom",
|
|
4662
|
+
]
|
|
4663
|
+
|
|
4664
|
+
[[package]]
|
|
4665
|
+
name = "zerovec"
|
|
4666
|
+
version = "0.11.5"
|
|
4667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4668
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4669
|
+
dependencies = [
|
|
4670
|
+
"yoke",
|
|
4671
|
+
"zerofrom",
|
|
4672
|
+
"zerovec-derive",
|
|
4673
|
+
]
|
|
4674
|
+
|
|
4675
|
+
[[package]]
|
|
4676
|
+
name = "zerovec-derive"
|
|
4677
|
+
version = "0.11.2"
|
|
4678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4679
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4680
|
+
dependencies = [
|
|
4681
|
+
"proc-macro2",
|
|
4682
|
+
"quote",
|
|
4683
|
+
"syn 2.0.114",
|
|
4684
|
+
]
|
|
4685
|
+
|
|
4686
|
+
[[package]]
|
|
4687
|
+
name = "zmij"
|
|
4688
|
+
version = "1.0.2"
|
|
4689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4690
|
+
checksum = "0f4a4e8e9dc5c62d159f04fcdbe07f4c3fb710415aab4754bf11505501e3251d"
|
|
4691
|
+
|
|
4692
|
+
[[package]]
|
|
4693
|
+
name = "zstd"
|
|
4694
|
+
version = "0.13.3"
|
|
4695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4696
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
4697
|
+
dependencies = [
|
|
4698
|
+
"zstd-safe",
|
|
4699
|
+
]
|
|
4700
|
+
|
|
4701
|
+
[[package]]
|
|
4702
|
+
name = "zstd-safe"
|
|
4703
|
+
version = "7.2.4"
|
|
4704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4705
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
4706
|
+
dependencies = [
|
|
4707
|
+
"zstd-sys",
|
|
4708
|
+
]
|
|
4709
|
+
|
|
4710
|
+
[[package]]
|
|
4711
|
+
name = "zstd-sys"
|
|
4712
|
+
version = "2.0.16+zstd.1.5.7"
|
|
4713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4714
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
4715
|
+
dependencies = [
|
|
4716
|
+
"cc",
|
|
4717
|
+
"pkg-config",
|
|
4718
|
+
]
|