diff --git a/.cargo/config.toml b/.cargo/config.toml index ef68f6a5..ff33e356 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,6 @@ [alias] -docs = "doc --workspace --no-deps --open" \ No newline at end of file +docs = "doc --workspace --no-deps --open" + +[target.x86_64-unknown-linux-musl] +linker = "clang" +rustflags = ["-C", "link-arg=-fuse-ld=lld"] \ No newline at end of file diff --git a/.debug/.rustc_info.json b/.debug/.rustc_info.json new file mode 100644 index 00000000..69b348cc --- /dev/null +++ b/.debug/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":3386982821950496342,"outputs":{"4614504638168534921":{"success":true,"status":"","code":0,"stdout":"rustc 1.80.1 (3f5fd8dd4 2024-08-06)\nbinary: rustc\ncommit-hash: 3f5fd8dd41153bc5fdca9427e9e05be2c767ba23\ncommit-date: 2024-08-06\nhost: x86_64-unknown-linux-gnu\nrelease: 1.80.1\nLLVM version: 18.1.7\n","stderr":""},"16495917692426387086":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n","stderr":""},"15729799797837862367":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/christian/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..bb9811c6 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,7 @@ +target/ +**/target/ +.idea/ +.debug/ +.github/ +.cargo/ +mediator-charts/ \ No newline at end of file diff --git a/.env b/.env new file mode 100644 index 00000000..aebbea70 --- /dev/null +++ b/.env @@ -0,0 +1,7 @@ +SERVER_PUBLIC_DOMAIN="https://didcomm-mediator.eudi-adorsys.com" +SERVER_LOCAL_PORT="8080" +STORAGE_DIRPATH="./storage" +MONGO_DBN="DIDComm_DB" +MONGO_URI="mongodb://mongodb:27017" + +# MONGO_URI="mongodb://{MONGO_INITDB_ROOT_USERNAME}:{MONGO_INITDB_ROOT_PASSWORD}@mongodb:27017" \ No newline at end of file diff --git a/.github/workflows/CD.yml b/.github/workflows/CD.yml deleted file mode 100644 index a59e9d7c..00000000 --- a/.github/workflows/CD.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: CD - -on: - push: - branches: [main] - -jobs: - deploy: - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Set up Rust - uses: actions/setup-rust@v1 - with: - rust-version: stable - - # Deploy to AWS EC2 Or another instance diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml new file mode 100644 index 00000000..614814c0 --- /dev/null +++ b/.github/workflows/package.yml @@ -0,0 +1,44 @@ +name: Publish Image + +on: + push: + branches: + - '*' + tags: + - 'v*' + +env: + IMAGE_NAME: didcomm-mediator-rs + +jobs: + push: + runs-on: ubuntu-latest + permissions: + packages: write + contents: read + + steps: + - uses: actions/checkout@v4 + + - name: Build image + run: docker build . --file Dockerfile --tag $IMAGE_NAME --label "runnumber=${GITHUB_RUN_ID}" + + - name: Log in to registry + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin + + - name: Push image + run: | + IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME + + # Ensure all uppercase characters are converted to lowercase + IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') + # Strip the git ref prefix from the version + VERSION=latest + # Remove the "v" prefix from the tag name + [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + # Use "latest" tag for the main branch + [ "$VERSION" == "main" ] && VERSION=latest + echo IMAGE_ID=$IMAGE_ID + echo VERSION=$VERSION + docker tag $IMAGE_NAME $IMAGE_ID:$VERSION + docker push $IMAGE_ID:$VERSION diff --git a/.gitignore b/.gitignore index ba3de5ca..7cdef13a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,11 @@ # Generated by Cargo # will have compiled files and executables -debug/ +.debug target/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html -Cargo.lock + # These are backup files generated by rustfmt **/*.rs.bk @@ -26,9 +26,9 @@ Cargo.lock .idea # Environment variables files -.env.example .env + # Reference crate mediator-server diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 00000000..4211729a --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,4850 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "addr2line" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5fb1d8e4442bd405fdfd1dacb42792696b0cf9cb15882e5d097b742a676d375" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler2" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627" + +[[package]] +name = "aead" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" +dependencies = [ + "generic-array", +] + +[[package]] +name = "aes" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures 0.2.14", + "opaque-debug", +] + +[[package]] +name = "aes-gcm" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc3be92e19a7ef47457b8e6f90707e12b6ac5d20c6f3866584fa3be0787d839f" +dependencies = [ + "aead", + "aes", + "cipher", + "ctr", + "ghash", + "subtle", +] + +[[package]] +name = "ahash" +version = "0.8.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011" +dependencies = [ + "cfg-if", + "getrandom", + "once_cell", + "version_check", + "zerocopy", +] + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "aligned-vec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4aa90d7ce82d4be67b64039a3d588d38dbcc6736577de4a847025ce5b0c468d1" + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstyle" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9" + +[[package]] +name = "anyhow" +version = "1.0.88" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e1496f8fb1fbf272686b8d37f523dab3e4a7443300055e74cdaa449f3114356" + +[[package]] +name = "arbitrary" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223" + +[[package]] +name = "arg_enum_proc_macro" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "arrayvec" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50" + +[[package]] +name = "askar-crypto" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f79d13c52b9acb5bc6b0d6b97f471bcf9679bd3113087d3d2e7132a09570d2c" +dependencies = [ + "aead", + "aes", + "aes-gcm", + "base64 0.13.1", + "blake2", + "block-modes", + "bls12_381", + "chacha20", + "chacha20poly1305", + "crypto_box", + "curve25519-dalek 3.2.0", + "digest 0.10.7", + "ed25519-dalek 1.0.1", + "elliptic-curve", + "group", + "hkdf", + "hmac 0.12.1", + "k256", + "p256", + "rand", + "serde", + "serde-json-core", + "sha2 0.10.8", + "subtle", + "x25519-dalek 1.1.1", + "zeroize", +] + +[[package]] +name = "async-attributes" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5" +dependencies = [ + "quote", + "syn 1.0.109", +] + +[[package]] +name = "async-channel" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35" +dependencies = [ + "concurrent-queue", + "event-listener 2.5.3", + "futures-core", +] + +[[package]] +name = "async-channel" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a" +dependencies = [ + "concurrent-queue", + "event-listener-strategy", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-executor" +version = "1.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec" +dependencies = [ + "async-task", + "concurrent-queue", + "fastrand", + "futures-lite", + "slab", +] + +[[package]] +name = "async-global-executor" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c" +dependencies = [ + "async-channel 2.3.1", + "async-executor", + "async-io", + "async-lock", + "blocking", + "futures-lite", + "once_cell", +] + +[[package]] +name = "async-io" +version = "2.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "444b0228950ee6501b3568d3c93bf1176a1fdbc3b758dcd9475046d30f4dc7e8" +dependencies = [ + "async-lock", + "cfg-if", + "concurrent-queue", + "futures-io", + "futures-lite", + "parking", + "polling", + "rustix", + "slab", + "tracing", + "windows-sys 0.59.0", +] + +[[package]] +name = "async-lock" +version = "3.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18" +dependencies = [ + "event-listener 5.3.1", + "event-listener-strategy", + "pin-project-lite", +] + +[[package]] +name = "async-std" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615" +dependencies = [ + "async-attributes", + "async-channel 1.9.0", + "async-global-executor", + "async-io", + "async-lock", + "crossbeam-utils", + "futures-channel", + "futures-core", + "futures-io", + "futures-lite", + "gloo-timers", + "kv-log-macro", + "log", + "memchr", + "once_cell", + "pin-project-lite", + "pin-utils", + "slab", + "wasm-bindgen-futures", +] + +[[package]] +name = "async-task" +version = "4.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de" + +[[package]] +name = "async-trait" +version = "0.1.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" + +[[package]] +name = "av1-grain" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6678909d8c5d46a42abcf571271e15fdbc0a225e3646cf23762cd415046c78bf" +dependencies = [ + "anyhow", + "arrayvec", + "log", + "nom", + "num-rational", + "v_frame", +] + +[[package]] +name = "avif-serialize" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e335041290c43101ca215eed6f43ec437eb5a42125573f600fc3fa42b9bddd62" +dependencies = [ + "arrayvec", +] + +[[package]] +name = "axum" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f" +dependencies = [ + "async-trait", + "axum-core", + "axum-macros", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "itoa", + "matchit", + "memchr", + "mime", + "percent-encoding", + "pin-project-lite", + "rustversion", + "serde", + "serde_json", + "serde_path_to_error", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-core" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" +dependencies = [ + "async-trait", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "mime", + "pin-project-lite", + "rustversion", + "sync_wrapper", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "axum-macros" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57d123550fa8d071b7255cb0cc04dc302baa6c8c4a79f55701552684d8399bce" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "backtrace" +version = "0.3.74" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a" +dependencies = [ + "addr2line", + "cfg-if", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", + "windows-targets 0.52.6", +] + +[[package]] +name = "base-x" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270" + +[[package]] +name = "base16ct" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "349a06037c7bf932dd7e7d1f653678b2038b9ad46a74102f1fc7bd7872678cce" + +[[package]] +name = "base64" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "base64ct" +version = "1.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" + +[[package]] +name = "basic-message" +version = "0.1.0" +dependencies = [ + "axum", + "chrono", + "did-utils", + "didcomm", + "keystore", + "serde_json", + "shared", +] + +[[package]] +name = "bit_field" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61" + +[[package]] +name = "bit_utils" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8114dca45a04a4bdaf03de9976a3131cf954827757f971d84cd431a9f2cc26d" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de" + +[[package]] +name = "bitstream-io" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2" + +[[package]] +name = "bitvec" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c" +dependencies = [ + "funty", + "radium", + "tap", + "wyz", +] + +[[package]] +name = "blake2" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "block-buffer" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block-modes" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e" +dependencies = [ + "block-padding", + "cipher", +] + +[[package]] +name = "block-padding" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae" + +[[package]] +name = "blocking" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea" +dependencies = [ + "async-channel 2.3.1", + "async-task", + "futures-io", + "futures-lite", + "piper", +] + +[[package]] +name = "bls12_381" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a829c821999c06be34de314eaeb7dd1b42be38661178bc26ad47a4eacebdb0f9" +dependencies = [ + "ff", + "group", + "rand_core 0.6.4", + "subtle", + "zeroize", +] + +[[package]] +name = "bs58" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3" + +[[package]] +name = "bson" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "068208f2b6fcfa27a7f1ee37488d2bb8ba2640f68f5475d08e1d9130696aba59" +dependencies = [ + "ahash", + "base64 0.13.1", + "bitvec", + "hex", + "indexmap 2.5.0", + "js-sys", + "once_cell", + "rand", + "serde", + "serde_bytes", + "serde_json", + "time", + "uuid 1.11.0", +] + +[[package]] +name = "built" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c360505aed52b7ec96a3636c3f039d99103c37d1d9b4f7a8c743d3ea9ffcd03b" + +[[package]] +name = "bumpalo" +version = "3.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" + +[[package]] +name = "bytemuck" +version = "1.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94bbb0ad554ad961ddc5da507a12a29b14e4ae5bda06b19f575a3e6079d2e2ae" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "byteorder-lite" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495" + +[[package]] +name = "bytes" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8318a53db07bb3f8dca91a600466bdb3f2eaadeedfdbcf02e1accbad9271ba50" + +[[package]] +name = "cc" +version = "1.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b62ac837cdb5cb22e10a256099b4fc502b1dfe560cb282963a974d7abd80e476" +dependencies = [ + "jobserver", + "libc", + "shlex", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chacha20" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fee7ad89dc1128635074c268ee661f90c3f7e83d9fd12910608c36b47d6c3412" +dependencies = [ + "cfg-if", + "cipher", + "cpufeatures 0.1.5", + "zeroize", +] + +[[package]] +name = "chacha20poly1305" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1580317203210c517b6d44794abfbe600698276db18127e37ad3e69bf5e848e5" +dependencies = [ + "aead", + "chacha20", + "cipher", + "poly1305", + "zeroize", +] + +[[package]] +name = "chrono" +version = "0.4.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "serde", + "wasm-bindgen", + "windows-targets 0.52.6", +] + +[[package]] +name = "cipher" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" +dependencies = [ + "generic-array", +] + +[[package]] +name = "color_quant" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b" + +[[package]] +name = "concurrent-queue" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "const-oid" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4c78c047431fee22c1a7bb92e00ad095a02a983affe4d8a72e2a2c62c1b94f3" + +[[package]] +name = "const-oid" +version = "0.9.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8" + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "core-foundation" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "cpufeatures" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66c99696f6c9dd7f35d486b9d04d7e6e202aa3e8c40d553f2fdf5e7e0c6a71ef" +dependencies = [ + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "608697df725056feaccfa42cffdaeeec3fccc4ffc38358ecd19b243e716a78e0" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80" + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "crypto-bigint" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c6a1d5fa1de37e071642dfa44ec552ca5b299adb128fab16138e24b548fd21" +dependencies = [ + "generic-array", + "rand_core 0.6.4", + "subtle", + "zeroize", +] + +[[package]] +name = "crypto-common" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "crypto-mac" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25fab6889090c8133f3deb8f73ba3c65a7f456f66436fc012a1b1e272b1e103e" +dependencies = [ + "generic-array", + "subtle", +] + +[[package]] +name = "crypto_box" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efe589deb705b2dcc2b6ad84162d355b819d1205b8d8498c0d149e36b329c30" +dependencies = [ + "chacha20", + "chacha20poly1305", + "rand_core 0.6.4", + "salsa20", + "x25519-dalek 1.1.1", + "xsalsa20poly1305", + "zeroize", +] + +[[package]] +name = "ctr" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a232f92a03f37dd7d7dd2adc67166c77e9cd88de5b019b9a9eecfaeaf7bfd481" +dependencies = [ + "cipher", +] + +[[package]] +name = "curve25519-dalek" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61" +dependencies = [ + "byteorder", + "digest 0.9.0", + "rand_core 0.5.1", + "subtle", + "zeroize", +] + +[[package]] +name = "curve25519-dalek" +version = "4.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.14", + "curve25519-dalek-derive", + "digest 0.10.7", + "fiat-crypto", + "rustc_version", + "subtle", + "zeroize", +] + +[[package]] +name = "curve25519-dalek-derive" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "darling" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f2c43f534ea4b0b049015d00269734195e6d3f0f6635cb692251aca6f9f8b3c" +dependencies = [ + "darling_core 0.12.4", + "darling_macro 0.12.4", +] + +[[package]] +name = "darling" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989" +dependencies = [ + "darling_core 0.20.10", + "darling_macro 0.20.10", +] + +[[package]] +name = "darling_core" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e91455b86830a1c21799d94524df0845183fa55bafd9aa137b01c7d1065fa36" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "darling_core" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.95", +] + +[[package]] +name = "darling_macro" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29b5acf0dea37a7f66f7b25d2c5e93fd46f8f6968b1a5d7a3e02e97768afc95a" +dependencies = [ + "darling_core 0.12.4", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "darling_macro" +version = "0.20.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806" +dependencies = [ + "darling_core 0.20.10", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "data-encoding" +version = "2.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" + +[[package]] +name = "data-encoding-macro" +version = "0.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1559b6cba622276d6d63706db152618eeb15b89b3e4041446b05876e352e639" +dependencies = [ + "data-encoding", + "data-encoding-macro-internal", +] + +[[package]] +name = "data-encoding-macro-internal" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "332d754c0af53bc87c108fed664d121ecf59207ec4196041f04d6ab9002ad33f" +dependencies = [ + "data-encoding", + "syn 1.0.109", +] + +[[package]] +name = "database" +version = "0.1.0" +dependencies = [ + "async-trait", + "mongodb", + "once_cell", + "serde", + "thiserror 2.0.9", + "tokio", +] + +[[package]] +name = "der" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6919815d73839e7ad218de758883aae3a257ba6759ce7a9992501efbb53d705c" +dependencies = [ + "const-oid 0.7.1", +] + +[[package]] +name = "der" +version = "0.7.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0" +dependencies = [ + "const-oid 0.9.6", + "zeroize", +] + +[[package]] +name = "deranged" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" +dependencies = [ + "powerfmt", + "serde", +] + +[[package]] +name = "derive-where" +version = "1.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "derive_more" +version = "0.99.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.95", +] + +[[package]] +name = "did-endpoint" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "cfg-if", + "chrono", + "database", + "did-utils", + "dotenv-flow", + "filesystem", + "http-body-util", + "hyper", + "json-canon", + "keystore", + "mockall", + "mongodb", + "multibase", + "plugin-api", + "serde_json", + "thiserror 2.0.9", + "tokio", + "tower", + "tracing", + "uuid 1.11.0", +] + +[[package]] +name = "did-utils" +version = "0.1.0" +dependencies = [ + "async-std", + "async-trait", + "axum", + "base64ct", + "chrono", + "curve25519-dalek 4.1.3", + "ed25519-dalek 2.1.1", + "getrandom", + "hex", + "http-body-util", + "hyper", + "hyper-tls", + "hyper-util", + "json-canon", + "lazy_static", + "multibase", + "num-bigint", + "regex", + "serde", + "serde_json", + "sha2 0.10.8", + "subtle", + "thiserror 2.0.9", + "tokio", + "url", + "x25519-dalek 2.0.1", + "zeroize", +] + +[[package]] +name = "didcomm" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5586dff7c7031f9bfb70908176722a1d3d768847c9a20fdfd74a3dfc727cd8d" +dependencies = [ + "anyhow", + "askar-crypto", + "async-trait", + "base64 0.13.1", + "bs58", + "serde", + "serde-enum-str", + "serde_json", + "sha2 0.9.9", + "thiserror 1.0.64", + "uuid 0.8.2", + "varint", +] + +[[package]] +name = "didcomm-mediator" +version = "0.1.0" +dependencies = [ + "axum", + "chrono", + "did-endpoint", + "didcomm-messaging", + "dotenv-flow", + "eyre", + "http-body-util", + "hyper", + "lazy_static", + "oob-messages", + "plugin-api", + "serde_json", + "thiserror 2.0.9", + "tokio", + "tower", + "tower-http", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "didcomm-messaging" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "database", + "did-endpoint", + "did-utils", + "didcomm", + "discover-features", + "filesystem", + "forward", + "http-body-util", + "hyper", + "json-canon", + "keystore", + "mediator-coordination", + "message-api", + "mongodb", + "once_cell", + "pickup", + "plugin-api", + "serde_json", + "shared", + "thiserror 2.0.9", + "tokio", + "tower", + "tracing", + "trust-ping", + "uuid 1.11.0", +] + +[[package]] +name = "digest" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066" +dependencies = [ + "generic-array", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer 0.10.4", + "crypto-common", + "subtle", +] + +[[package]] +name = "discover-features" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "did-utils", + "didcomm", + "keystore", + "message-api", + "serde", + "serde_json", + "shared", + "thiserror 2.0.9", + "tokio", + "uuid 1.11.0", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "dotenv-flow" +version = "0.16.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccff2060df2e1a42732ab1e7af8c5f930ed3d0255aaadfae66e032781e8d271a" + +[[package]] +name = "downcast" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1435fa1053d8b2fbbe9be7e97eca7f33d37b28409959813daefc1446a14247f1" + +[[package]] +name = "ecdsa" +version = "0.13.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0d69ae62e0ce582d56380743515fefaf1a8c70cec685d9677636d7e30ae9dc9" +dependencies = [ + "der 0.5.1", + "elliptic-curve", + "rfc6979", + "signature 1.4.0", +] + +[[package]] +name = "ed25519" +version = "1.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "91cff35c70bba8a626e3185d8cd48cc11b5437e1a5bcd15b9b5fa3c64b6dfee7" +dependencies = [ + "signature 1.4.0", +] + +[[package]] +name = "ed25519" +version = "2.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" +dependencies = [ + "pkcs8", + "signature 2.2.0", +] + +[[package]] +name = "ed25519-dalek" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c762bae6dcaf24c4c84667b8579785430908723d5c889f469d76a41d59cc7a9d" +dependencies = [ + "curve25519-dalek 3.2.0", + "ed25519 1.5.3", + "sha2 0.9.9", + "zeroize", +] + +[[package]] +name = "ed25519-dalek" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871" +dependencies = [ + "curve25519-dalek 4.1.3", + "ed25519 2.2.3", + "serde", + "sha2 0.10.8", + "subtle", + "zeroize", +] + +[[package]] +name = "either" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" + +[[package]] +name = "elliptic-curve" +version = "0.11.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25b477563c2bfed38a3b7a60964c49e058b2510ad3f12ba3483fd8f62c2306d6" +dependencies = [ + "base16ct", + "crypto-bigint", + "der 0.5.1", + "ff", + "generic-array", + "group", + "rand_core 0.6.4", + "sec1", + "subtle", + "zeroize", +] + +[[package]] +name = "enum-as-inner" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "equivalent" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" + +[[package]] +name = "errno" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "event-listener" +version = "2.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" + +[[package]] +name = "event-listener" +version = "5.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba" +dependencies = [ + "concurrent-queue", + "parking", + "pin-project-lite", +] + +[[package]] +name = "event-listener-strategy" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1" +dependencies = [ + "event-listener 5.3.1", + "pin-project-lite", +] + +[[package]] +name = "exr" +version = "1.73.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0" +dependencies = [ + "bit_field", + "half", + "lebe", + "miniz_oxide", + "rayon-core", + "smallvec", + "zune-inflate", +] + +[[package]] +name = "eyre" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec" +dependencies = [ + "indenter", + "once_cell", +] + +[[package]] +name = "fastrand" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8c02a5121d4ea3eb16a80748c74f5549a5665e4c21333c6098f283870fbdea6" + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "ff" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "131655483be284720a17d74ff97592b8e76576dc25563148601df2d7c9080924" +dependencies = [ + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "fiat-crypto" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d" + +[[package]] +name = "filesystem" +version = "0.1.0" +dependencies = [ + "nix", +] + +[[package]] +name = "flate2" +version = "1.0.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foreign-types" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" +dependencies = [ + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-shared" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" + +[[package]] +name = "form_urlencoded" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "forward" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "database", + "did-utils", + "didcomm", + "hyper", + "keystore", + "message-api", + "mongodb", + "serde_json", + "shared", + "thiserror 2.0.9", + "tokio", + "uuid 1.11.0", +] + +[[package]] +name = "fragile" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c2141d6d6c8512188a7891b4b01590a45f6dac67afb4f255c4124dbb86d4eaa" + +[[package]] +name = "funty" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c" + +[[package]] +name = "futures-channel" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d" + +[[package]] +name = "futures-executor" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1" + +[[package]] +name = "futures-lite" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52527eb5074e35e9339c6b4e8d12600c7128b68fb25dcb9fa9dec18f7c25f3a5" +dependencies = [ + "fastrand", + "futures-core", + "futures-io", + "parking", + "pin-project-lite", +] + +[[package]] +name = "futures-macro" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "futures-sink" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5" + +[[package]] +name = "futures-task" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004" + +[[package]] +name = "futures-util" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "slab", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "ghash" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1583cc1656d7839fd3732b80cf4f38850336cdb9b8ded1cd399ca62958de3c99" +dependencies = [ + "opaque-debug", + "polyval", +] + +[[package]] +name = "gif" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fb2d69b19215e18bb912fa30f7ce15846e301408695e44e0ef719f1da9e19f2" +dependencies = [ + "color_quant", + "weezl", +] + +[[package]] +name = "gimli" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32085ea23f3234fc7846555e85283ba4de91e21016dc0455a16286d87a292d64" + +[[package]] +name = "gloo-timers" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994" +dependencies = [ + "futures-channel", + "futures-core", + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "group" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc5ac374b108929de78460075f3dc439fa66df9d8fc77e8f12caa5165fcf0c89" +dependencies = [ + "byteorder", + "ff", + "rand_core 0.6.4", + "subtle", +] + +[[package]] +name = "h2" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e" +dependencies = [ + "atomic-waker", + "bytes", + "fnv", + "futures-core", + "futures-sink", + "http", + "indexmap 2.5.0", + "slab", + "tokio", + "tokio-util", + "tracing", +] + +[[package]] +name = "half" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888" +dependencies = [ + "cfg-if", + "crunchy", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hermit-abi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024" + +[[package]] +name = "hermit-abi" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "hickory-proto" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "447afdcdb8afb9d0a852af6dc65d9b285ce720ed7a59e42a8bf2e931c67bc1b5" +dependencies = [ + "async-trait", + "cfg-if", + "data-encoding", + "enum-as-inner", + "futures-channel", + "futures-io", + "futures-util", + "idna", + "ipnet", + "once_cell", + "rand", + "thiserror 1.0.64", + "tinyvec", + "tokio", + "tracing", + "url", +] + +[[package]] +name = "hickory-resolver" +version = "0.24.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0a2e2aba9c389ce5267d31cf1e4dace82390ae276b0b364ea55630b1fa1b44b4" +dependencies = [ + "cfg-if", + "futures-util", + "hickory-proto", + "ipconfig", + "lru-cache", + "once_cell", + "parking_lot", + "rand", + "resolv-conf", + "smallvec", + "thiserror 1.0.64", + "tokio", + "tracing", +] + +[[package]] +name = "hkdf" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7" +dependencies = [ + "hmac 0.12.1", +] + +[[package]] +name = "hmac" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b" +dependencies = [ + "crypto-mac", + "digest 0.9.0", +] + +[[package]] +name = "hmac" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "hostname" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" +dependencies = [ + "libc", + "match_cfg", + "winapi", +] + +[[package]] +name = "http" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea" +dependencies = [ + "bytes", + "fnv", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f" +dependencies = [ + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + +[[package]] +name = "hyper" +version = "1.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-tls" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0" +dependencies = [ + "bytes", + "http-body-util", + "hyper", + "hyper-util", + "native-tls", + "tokio", + "tokio-native-tls", + "tower-service", +] + +[[package]] +name = "hyper-util" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4" +dependencies = [ + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "icu_collections" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locid" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_locid_transform" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e" +dependencies = [ + "displaydoc", + "icu_locid", + "icu_locid_transform_data", + "icu_provider", + "tinystr", + "zerovec", +] + +[[package]] +name = "icu_locid_transform_data" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e" + +[[package]] +name = "icu_normalizer" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f" +dependencies = [ + "displaydoc", + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "utf16_iter", + "utf8_iter", + "write16", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516" + +[[package]] +name = "icu_properties" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5" +dependencies = [ + "displaydoc", + "icu_collections", + "icu_locid_transform", + "icu_properties_data", + "icu_provider", + "tinystr", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569" + +[[package]] +name = "icu_provider" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9" +dependencies = [ + "displaydoc", + "icu_locid", + "icu_provider_macros", + "stable_deref_trait", + "tinystr", + "writeable", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_provider_macros" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "image" +version = "0.25.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd6f44aed642f18953a158afeb30206f4d50da59fbc66ecb53c66488de73563b" +dependencies = [ + "bytemuck", + "byteorder-lite", + "color_quant", + "exr", + "gif", + "image-webp", + "num-traits", + "png", + "qoi", + "ravif", + "rayon", + "rgb", + "tiff", + "zune-core", + "zune-jpeg", +] + +[[package]] +name = "image-webp" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e031e8e3d94711a9ccb5d6ea357439ef3dcbed361798bd4071dc4d9793fbe22f" +dependencies = [ + "byteorder-lite", + "quick-error 2.0.1", +] + +[[package]] +name = "imgref" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408" + +[[package]] +name = "indenter" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683" + +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68b900aa2f7301e21c36462b170ee99994de34dff39a4a6a528e80e7376d07e5" +dependencies = [ + "equivalent", + "hashbrown 0.14.5", + "serde", +] + +[[package]] +name = "interpolate_name" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "ipconfig" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f" +dependencies = [ + "socket2", + "widestring", + "windows-sys 0.48.0", + "winreg", +] + +[[package]] +name = "ipnet" +version = "2.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "187674a687eed5fe42285b40c6291f9a01517d415fad1c3cbc6a9f778af7fcd4" + +[[package]] +name = "itertools" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" + +[[package]] +name = "jobserver" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0" +dependencies = [ + "libc", +] + +[[package]] +name = "jpeg-decoder" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0" + +[[package]] +name = "js-sys" +version = "0.3.70" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1868808506b929d7b0cfa8f75951347aa71bb21144b7791bae35d9bccfcfe37a" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "json-canon" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "447ae153a2bd47d61acc0d131295408e32ef87ed9785825a6f4ecef85afc0edb" +dependencies = [ + "ryu-js", + "serde", + "serde_json", +] + +[[package]] +name = "k256" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19c3a5e0a0b8450278feda242592512e09f61c72e018b8cd5c859482802daf2d" +dependencies = [ + "cfg-if", + "ecdsa", + "elliptic-curve", + "sec1", + "sha2 0.9.9", +] + +[[package]] +name = "keystore" +version = "0.1.0" +dependencies = [ + "async-trait", + "database", + "did-utils", + "mongodb", + "once_cell", + "serde", + "serde_json", + "tokio", +] + +[[package]] +name = "kv-log-macro" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f" +dependencies = [ + "log", +] + +[[package]] +name = "lazy_static" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" + +[[package]] +name = "lebe" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8" + +[[package]] +name = "libc" +version = "0.2.158" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" + +[[package]] +name = "libfuzzer-sys" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b9569d2f74e257076d8c6bfa73fb505b46b851e51ddaecc825944aa3bed17fa" +dependencies = [ + "arbitrary", + "cc", +] + +[[package]] +name = "linked-hash-map" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" + +[[package]] +name = "linux-raw-sys" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89" + +[[package]] +name = "litemap" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104" + +[[package]] +name = "lock_api" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" +dependencies = [ + "autocfg", + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24" +dependencies = [ + "value-bag", +] + +[[package]] +name = "loop9" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062" +dependencies = [ + "imgref", +] + +[[package]] +name = "lru-cache" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c" +dependencies = [ + "linked-hash-map", +] + +[[package]] +name = "match_cfg" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" + +[[package]] +name = "matchit" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" + +[[package]] +name = "maybe-rayon" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519" +dependencies = [ + "cfg-if", + "rayon", +] + +[[package]] +name = "md-5" +version = "0.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" +dependencies = [ + "cfg-if", + "digest 0.10.7", +] + +[[package]] +name = "mediator-coordination" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "did-utils", + "didcomm", + "hyper", + "json-canon", + "keystore", + "message-api", + "mongodb", + "multibase", + "paste", + "serde", + "serde_json", + "shared", + "thiserror 2.0.9", + "tokio", + "tracing", + "uuid 1.11.0", +] + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "message-api" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "didcomm", + "shared", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] +name = "miniz_oxide" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec" +dependencies = [ + "hermit-abi 0.3.9", + "libc", + "wasi", + "windows-sys 0.52.0", +] + +[[package]] +name = "mockall" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39a6bfcc6c8c7eed5ee98b9c3e33adc726054389233e201c95dab2d41a3839d2" +dependencies = [ + "cfg-if", + "downcast", + "fragile", + "mockall_derive", + "predicates", + "predicates-tree", +] + +[[package]] +name = "mockall_derive" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25ca3004c2efe9011bd4e461bd8256445052b9615405b4f7ea43fc8ca5c20898" +dependencies = [ + "cfg-if", + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "mongodb" +version = "3.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff1f6edf7fe8828429647a2200f684681ca6d5a33b45edc3140c81390d852301" +dependencies = [ + "async-trait", + "base64 0.13.1", + "bitflags 1.3.2", + "bson", + "chrono", + "derive-where", + "derive_more", + "futures-core", + "futures-executor", + "futures-io", + "futures-util", + "hex", + "hickory-proto", + "hickory-resolver", + "hmac 0.12.1", + "md-5", + "mongodb-internal-macros", + "once_cell", + "pbkdf2", + "percent-encoding", + "rand", + "rustc_version_runtime", + "rustls", + "rustls-pemfile", + "serde", + "serde_bytes", + "serde_with", + "sha-1", + "sha2 0.10.8", + "socket2", + "stringprep", + "strsim", + "take_mut", + "thiserror 1.0.64", + "tokio", + "tokio-rustls", + "tokio-util", + "typed-builder", + "uuid 1.11.0", + "webpki-roots", +] + +[[package]] +name = "mongodb-internal-macros" +version = "3.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b07bfd601af78e39384707a8e80041946c98260e3e0190e294ee7435823e6bf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "multibase" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b3539ec3c1f04ac9748a260728e855f261b4977f5c3406612c884564f329404" +dependencies = [ + "base-x", + "data-encoding", + "data-encoding-macro", +] + +[[package]] +name = "native-tls" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466" +dependencies = [ + "libc", + "log", + "openssl", + "openssl-probe", + "openssl-sys", + "schannel", + "security-framework", + "security-framework-sys", + "tempfile", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "nix" +version = "0.29.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46" +dependencies = [ + "bitflags 2.6.0", + "cfg-if", + "cfg_aliases", + "libc", +] + +[[package]] +name = "nom" +version = "7.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] +name = "noop_proc_macro" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8" + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "num-bigint" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9" +dependencies = [ + "num-integer", + "num-traits", +] + +[[package]] +name = "num-conv" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9" + +[[package]] +name = "num-derive" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "num-integer" +version = "0.1.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f" +dependencies = [ + "num-traits", +] + +[[package]] +name = "num-rational" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824" +dependencies = [ + "num-bigint", + "num-integer", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "object" +version = "0.36.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "084f1a5821ac4c651660a94a7153d27ac9d8a53736203f58b31945ded098070a" +dependencies = [ + "memchr", +] + +[[package]] +name = "once_cell" +version = "1.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775" + +[[package]] +name = "oob-messages" +version = "0.1.0" +dependencies = [ + "axum", + "base64 0.22.1", + "did-utils", + "filesystem", + "image", + "lazy_static", + "mockall", + "multibase", + "plugin-api", + "qrcode", + "serde", + "serde_json", + "tokio", + "tower", + "tracing", + "uuid 1.11.0", +] + +[[package]] +name = "opaque-debug" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381" + +[[package]] +name = "openssl" +version = "0.10.66" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9529f4786b70a3e8c61e11179af17ab6188ad8d0ded78c5529441ed39d4bd9c1" +dependencies = [ + "bitflags 2.6.0", + "cfg-if", + "foreign-types", + "libc", + "once_cell", + "openssl-macros", + "openssl-sys", +] + +[[package]] +name = "openssl-macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "openssl-probe" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" + +[[package]] +name = "openssl-sys" +version = "0.9.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f9e8deee91df40a943c71b917e5874b951d32a802526c85721ce3b776c929d6" +dependencies = [ + "cc", + "libc", + "pkg-config", + "vcpkg", +] + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "p256" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "19736d80675fbe9fe33426268150b951a3fb8f5cfca2a23a17c85ef3adb24e3b" +dependencies = [ + "ecdsa", + "elliptic-curve", + "sec1", + "sha2 0.9.9", +] + +[[package]] +name = "parking" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba" + +[[package]] +name = "parking_lot" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-targets 0.52.6", +] + +[[package]] +name = "paste" +version = "1.0.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" + +[[package]] +name = "pbkdf2" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917" +dependencies = [ + "digest 0.10.7", +] + +[[package]] +name = "percent-encoding" +version = "2.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e" + +[[package]] +name = "pickup" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "didcomm", + "message-api", + "mongodb", + "serde", + "serde_json", + "shared", + "thiserror 2.0.9", + "tokio", + "uuid 1.11.0", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "piper" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066" +dependencies = [ + "atomic-waker", + "fastrand", + "futures-io", +] + +[[package]] +name = "pkcs8" +version = "0.10.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" +dependencies = [ + "der 0.7.9", + "spki", +] + +[[package]] +name = "pkg-config" +version = "0.3.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec" + +[[package]] +name = "plugin-api" +version = "0.1.0" +dependencies = [ + "axum", + "thiserror 2.0.9", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "polling" +version = "3.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511" +dependencies = [ + "cfg-if", + "concurrent-queue", + "hermit-abi 0.4.0", + "pin-project-lite", + "rustix", + "tracing", + "windows-sys 0.59.0", +] + +[[package]] +name = "poly1305" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede" +dependencies = [ + "cpufeatures 0.2.14", + "opaque-debug", + "universal-hash", +] + +[[package]] +name = "polyval" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8419d2b623c7c0896ff2d5d96e2cb4ede590fed28fcc34934f4c33c036e620a1" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.14", + "opaque-debug", + "universal-hash", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "predicates" +version = "3.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e9086cc7640c29a356d1a29fd134380bee9d8f79a17410aa76e7ad295f42c97" +dependencies = [ + "anstyle", + "predicates-core", +] + +[[package]] +name = "predicates-core" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae8177bee8e75d6846599c6b9ff679ed51e882816914eec639944d7c9aa11931" + +[[package]] +name = "predicates-tree" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41b740d195ed3166cd147c8047ec98db0e22ec019eb8eeb76d343b795304fb13" +dependencies = [ + "predicates-core", + "termtree", +] + +[[package]] +name = "proc-macro2" +version = "1.0.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "profiling" +version = "1.0.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afbdc74edc00b6f6a218ca6a5364d6226a259d4b8ea1af4a0ea063f27e179f4d" +dependencies = [ + "profiling-procmacros", +] + +[[package]] +name = "profiling-procmacros" +version = "1.0.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a65f2e60fbf1063868558d69c6beacf412dc755f9fc020f514b7955fc914fe30" +dependencies = [ + "quote", + "syn 2.0.95", +] + +[[package]] +name = "qoi" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001" +dependencies = [ + "bytemuck", +] + +[[package]] +name = "qrcode" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d68782463e408eb1e668cf6152704bd856c78c5b6417adaee3203d8f4c1fc9ec" +dependencies = [ + "image", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quick-error" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3" + +[[package]] +name = "quote" +version = "1.0.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "radium" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rav1e" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9" +dependencies = [ + "arbitrary", + "arg_enum_proc_macro", + "arrayvec", + "av1-grain", + "bitstream-io", + "built", + "cfg-if", + "interpolate_name", + "itertools", + "libc", + "libfuzzer-sys", + "log", + "maybe-rayon", + "new_debug_unreachable", + "noop_proc_macro", + "num-derive", + "num-traits", + "once_cell", + "paste", + "profiling", + "rand", + "rand_chacha", + "simd_helpers", + "system-deps", + "thiserror 1.0.64", + "v_frame", + "wasm-bindgen", +] + +[[package]] +name = "ravif" +version = "0.11.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2413fd96bd0ea5cdeeb37eaf446a22e6ed7b981d792828721e74ded1980a45c6" +dependencies = [ + "avif-serialize", + "imgref", + "loop9", + "quick-error 2.0.1", + "rav1e", + "rayon", + "rgb", +] + +[[package]] +name = "rayon" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2" +dependencies = [ + "crossbeam-deque", + "crossbeam-utils", +] + +[[package]] +name = "redox_syscall" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0884ad60e090bf1345b93da0a5de8923c93884cd03f40dfcfddd3b4bee661853" +dependencies = [ + "bitflags 2.6.0", +] + +[[package]] +name = "regex" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" + +[[package]] +name = "resolv-conf" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00" +dependencies = [ + "hostname", + "quick-error 1.2.3", +] + +[[package]] +name = "rfc6979" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96ef608575f6392792f9ecf7890c00086591d29a83910939d430753f7c050525" +dependencies = [ + "crypto-bigint", + "hmac 0.11.0", + "zeroize", +] + +[[package]] +name = "rgb" +version = "0.8.50" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a" + +[[package]] +name = "ring" +version = "0.17.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d" +dependencies = [ + "cc", + "cfg-if", + "getrandom", + "libc", + "spin", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f" + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustc_version_runtime" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dd18cd2bae1820af0b6ad5e54f4a51d0f3fcc53b05f845675074efcc7af071d" +dependencies = [ + "rustc_version", + "semver", +] + +[[package]] +name = "rustix" +version = "0.38.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8acb788b847c24f28525660c4d7758620a7210875711f79e7f663cc152726811" +dependencies = [ + "bitflags 2.6.0", + "errno", + "libc", + "linux-raw-sys", + "windows-sys 0.52.0", +] + +[[package]] +name = "rustls" +version = "0.21.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e" +dependencies = [ + "log", + "ring", + "rustls-webpki", + "sct", +] + +[[package]] +name = "rustls-pemfile" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c" +dependencies = [ + "base64 0.21.7", +] + +[[package]] +name = "rustls-webpki" +version = "0.101.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" + +[[package]] +name = "ryu" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" + +[[package]] +name = "ryu-js" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6518fc26bced4d53678a22d6e423e9d8716377def84545fe328236e3af070e7f" + +[[package]] +name = "salsa20" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c7c5f10864beba947e1a1b43f3ef46c8cc58d1c2ae549fa471713e8ff60787a" +dependencies = [ + "cipher", + "zeroize", +] + +[[package]] +name = "schannel" +version = "0.1.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9aaafd5a2b6e3d657ff009d82fbd630b6bd54dd4eb06f21693925cdf80f9b8b" +dependencies = [ + "windows-sys 0.59.0", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "sct" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414" +dependencies = [ + "ring", + "untrusted", +] + +[[package]] +name = "sec1" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08da66b8b0965a5555b6bd6639e68ccba85e1e2506f5fbb089e93f8a04e1a2d1" +dependencies = [ + "der 0.5.1", + "generic-array", + "subtle", + "zeroize", +] + +[[package]] +name = "security-framework" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02" +dependencies = [ + "bitflags 2.6.0", + "core-foundation", + "core-foundation-sys", + "libc", + "security-framework-sys", +] + +[[package]] +name = "security-framework-sys" +version = "2.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "semver" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b" + +[[package]] +name = "serde" +version = "1.0.210" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8e3592472072e6e22e0a54d5904d9febf8508f65fb8552499a1abc7d1078c3a" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde-enum-str" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36a8922181ec93763421619030001d9d9acdc30a968b2067b6b17df7fee350cd" +dependencies = [ + "darling 0.12.4", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "serde-json-core" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8014aeea272bca0f0779778d43253f2f3375b414185b30e6ecc4d3e4a9994781" +dependencies = [ + "ryu", + "serde", +] + +[[package]] +name = "serde_bytes" +version = "0.11.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "387cc504cb06bb40a96c8e04e951fe01854cf6bc921053c954e4a606d9675c6a" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_derive" +version = "1.0.210" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "243902eda00fad750862fc144cea25caca5e20d615af0a81bee94ca738f1df1f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "serde_json" +version = "1.0.128" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ff5456707a1de34e7e37f2a6fd3d3f808c318259cbd01ab6377795054b483d8" +dependencies = [ + "indexmap 2.5.0", + "itoa", + "memchr", + "ryu", + "serde", +] + +[[package]] +name = "serde_path_to_error" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6" +dependencies = [ + "itoa", + "serde", +] + +[[package]] +name = "serde_spanned" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "serde_with" +version = "3.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6b6f7f2fcb69f747921f79f3926bd1e203fce4fef62c268dd3abfb6d86029aa" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.5.0", + "serde", + "serde_derive", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d00caa5193a3c8362ac2b73be6b9e768aa5a4b2f721d8f4b339600c3cb51f8e" +dependencies = [ + "darling 0.20.10", + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "sha-1" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.14", + "digest 0.10.7", +] + +[[package]] +name = "sha2" +version = "0.9.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800" +dependencies = [ + "block-buffer 0.9.0", + "cfg-if", + "cpufeatures 0.2.14", + "digest 0.9.0", + "opaque-debug", +] + +[[package]] +name = "sha2" +version = "0.10.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8" +dependencies = [ + "cfg-if", + "cpufeatures 0.2.14", + "digest 0.10.7", +] + +[[package]] +name = "sharded-slab" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "shared" +version = "0.1.0" +dependencies = [ + "async-trait", + "database", + "did-utils", + "didcomm", + "eyre", + "filesystem", + "json-canon", + "keystore", + "mongodb", + "serde", + "serde_json", + "thiserror 2.0.9", + "tokio", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "signal-hook-registry" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1" +dependencies = [ + "libc", +] + +[[package]] +name = "signature" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02658e48d89f2bec991f9a78e69cfa4c316f8d6a6c4ec12fae1aeb263d486788" +dependencies = [ + "digest 0.9.0", + "rand_core 0.6.4", +] + +[[package]] +name = "signature" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de" +dependencies = [ + "rand_core 0.6.4", +] + +[[package]] +name = "simd-adler32" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" + +[[package]] +name = "simd_helpers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6" +dependencies = [ + "quote", +] + +[[package]] +name = "slab" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" +dependencies = [ + "autocfg", +] + +[[package]] +name = "smallvec" +version = "1.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" + +[[package]] +name = "socket2" +version = "0.5.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c" +dependencies = [ + "libc", + "windows-sys 0.52.0", +] + +[[package]] +name = "spin" +version = "0.9.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" + +[[package]] +name = "spki" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d" +dependencies = [ + "base64ct", + "der 0.7.9", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "stringprep" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1" +dependencies = [ + "unicode-bidi", + "unicode-normalization", + "unicode-properties", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.95" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "46f71c0377baf4ef1cc3e3402ded576dccc315800fbc62dfc7fe04b009773b4a" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" + +[[package]] +name = "synstructure" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "system-deps" +version = "6.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" +dependencies = [ + "cfg-expr", + "heck", + "pkg-config", + "toml", + "version-compare", +] + +[[package]] +name = "take_mut" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60" + +[[package]] +name = "tap" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" + +[[package]] +name = "target-lexicon" +version = "0.12.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + +[[package]] +name = "tempfile" +version = "3.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64" +dependencies = [ + "cfg-if", + "fastrand", + "once_cell", + "rustix", + "windows-sys 0.59.0", +] + +[[package]] +name = "termtree" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76" + +[[package]] +name = "thiserror" +version = "1.0.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d50af8abc119fb8bb6dbabcfa89656f46f84aa0ac7688088608076ad2b459a84" +dependencies = [ + "thiserror-impl 1.0.64", +] + +[[package]] +name = "thiserror" +version = "2.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc" +dependencies = [ + "thiserror-impl 2.0.9", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08904e7672f5eb876eaaf87e0ce17857500934f4981c4a0ab2b4aa98baac7fc3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "thread_local" +version = "1.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c" +dependencies = [ + "cfg-if", + "once_cell", +] + +[[package]] +name = "tiff" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e" +dependencies = [ + "flate2", + "jpeg-decoder", + "weezl", +] + +[[package]] +name = "time" +version = "0.3.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" + +[[package]] +name = "time-macros" +version = "0.2.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.42.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551" +dependencies = [ + "backtrace", + "bytes", + "libc", + "mio", + "parking_lot", + "pin-project-lite", + "signal-hook-registry", + "socket2", + "tokio-macros", + "windows-sys 0.52.0", +] + +[[package]] +name = "tokio-macros" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "tokio-native-tls" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" +dependencies = [ + "native-tls", + "tokio", +] + +[[package]] +name = "tokio-rustls" +version = "0.24.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tokio-util" +version = "0.7.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a" +dependencies = [ + "bytes", + "futures-core", + "futures-io", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e" +dependencies = [ + "serde", + "serde_spanned", + "toml_datetime", + "toml_edit", +] + +[[package]] +name = "toml_datetime" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_edit" +version = "0.22.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5" +dependencies = [ + "indexmap 2.5.0", + "serde", + "serde_spanned", + "toml_datetime", + "winnow", +] + +[[package]] +name = "tower" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-http" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "403fa3b783d4b626a8ad51d766ab03cb6d2dbfc46b1c5d4448395e6628dc9697" +dependencies = [ + "bitflags 2.6.0", + "bytes", + "futures-util", + "http", + "http-body", + "http-body-util", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0" +dependencies = [ + "log", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "tracing-core" +version = "0.1.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" +dependencies = [ + "log", + "once_cell", + "tracing-core", +] + +[[package]] +name = "tracing-serde" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1" +dependencies = [ + "serde", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008" +dependencies = [ + "nu-ansi-term", + "serde", + "serde_json", + "sharded-slab", + "smallvec", + "thread_local", + "tracing-core", + "tracing-log", + "tracing-serde", +] + +[[package]] +name = "trust-ping" +version = "0.1.0" +dependencies = [ + "async-trait", + "axum", + "didcomm", + "message-api", + "serde", + "serde_json", + "shared", + "thiserror 2.0.9", + "tokio", + "uuid 1.11.0", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typed-builder" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "89851716b67b937e393b3daa8423e67ddfc4bbbf1654bcf05488e95e0828db0c" +dependencies = [ + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "typenum" +version = "1.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" + +[[package]] +name = "unicode-bidi" +version = "0.3.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75" + +[[package]] +name = "unicode-ident" +version = "1.0.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" + +[[package]] +name = "unicode-normalization" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5" +dependencies = [ + "tinyvec", +] + +[[package]] +name = "unicode-properties" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ea75f83c0137a9b98608359a5f1af8144876eb67bcb1ce837368e906a9f524" + +[[package]] +name = "universal-hash" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8326b2c654932e3e4f9196e69d08fdf7cfd718e1dc6f66b347e6024a0c961402" +dependencies = [ + "generic-array", + "subtle", +] + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf16_iter" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +dependencies = [ + "getrandom", +] + +[[package]] +name = "uuid" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a" +dependencies = [ + "getrandom", + "rand", + "serde", +] + +[[package]] +name = "v_frame" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6f32aaa24bacd11e488aa9ba66369c7cd514885742c9fe08cfe85884db3e92b" +dependencies = [ + "aligned-vec", + "num-traits", + "wasm-bindgen", +] + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "value-bag" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a84c137d37ab0142f0f2ddfe332651fdbf252e7b7dbb4e67b6c1f1b2e925101" + +[[package]] +name = "varint" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c37be5674e0be9c72790681999b0e6f09f03d3fc5d8904cfe2db615aad65887b" +dependencies = [ + "bit_utils", +] + +[[package]] +name = "vcpkg" +version = "0.2.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" + +[[package]] +name = "version-compare" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" + +[[package]] +name = "wasm-bindgen" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a82edfc16a6c469f5f44dc7b571814045d60404b55a0ee849f9bcfa2e63dd9b5" +dependencies = [ + "cfg-if", + "once_cell", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9de396da306523044d3302746f1208fa71d7532227f15e347e2d93e4145dd77b" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn 2.0.95", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61e9300f63a621e96ed275155c108eb6f843b6a26d053f122ab69724559dc8ed" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "585c4c91a46b072c92e908d99cb1dcdf95c5218eeb6f3bf1efa991ee7a68cccf" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "afc340c74d9005395cf9dd098506f7f44e38f2b4a21c6aaacf9a105ea5e1e836" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.93" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c62a0a307cb4a311d3a07867860911ca130c3494e8c2719593806c08bc5d0484" + +[[package]] +name = "web-sys" +version = "0.3.70" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26fdeaafd9bd129f65e7c031593c24d62186301e0c72c8978fa1678be7d532c0" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki-roots" +version = "0.25.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" + +[[package]] +name = "weezl" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082" + +[[package]] +name = "widestring" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7219d36b6eac893fa81e84ebe06485e7dcbb616177469b142df14f1f4deb1311" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "winnow" +version = "0.6.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "39281189af81c07ec09db316b302a3e67bf9bd7cbf6c820b50e35fee9c2fa980" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" +dependencies = [ + "cfg-if", + "windows-sys 0.48.0", +] + +[[package]] +name = "write16" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" + +[[package]] +name = "writeable" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51" + +[[package]] +name = "wyz" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed" +dependencies = [ + "tap", +] + +[[package]] +name = "x25519-dalek" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a0c105152107e3b96f6a00a65e86ce82d9b125230e1c4302940eca58ff71f4f" +dependencies = [ + "curve25519-dalek 3.2.0", + "rand_core 0.5.1", + "zeroize", +] + +[[package]] +name = "x25519-dalek" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277" +dependencies = [ + "curve25519-dalek 4.1.3", + "rand_core 0.6.4", + "serde", + "zeroize", +] + +[[package]] +name = "xsalsa20poly1305" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a214b4d445e6534a858c970b44eb526c398dbfaa2961e3efb637307af634284d" +dependencies = [ + "aead", + "poly1305", + "rand_core 0.6.4", + "salsa20", + "subtle", + "zeroize", +] + +[[package]] +name = "yoke" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40" +dependencies = [ + "serde", + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0" +dependencies = [ + "byteorder", + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.7.35" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "zerofrom" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde" +dependencies = [ + "serde", + "zeroize_derive", +] + +[[package]] +name = "zeroize_derive" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "zerovec" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.95", +] + +[[package]] +name = "zune-core" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a" + +[[package]] +name = "zune-inflate" +version = "0.2.54" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "zune-jpeg" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "99a5bab8d7dedf81405c4bb1f2b83ea057643d9cb28778cea9eecddeedd2e028" +dependencies = [ + "zune-core", +] diff --git a/Cargo.toml b/Cargo.toml index 6bb97444..4375cab7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -117,7 +117,6 @@ oob-messages = { workspace = true, optional = true } didcomm-messaging = { workspace = true, optional = true } - [features] default = [ "plugin-index", diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..637501e9 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,42 @@ +# Stage 1: Builder +FROM rust:1.80 as builder + +WORKDIR /app + +# Copy Cargo files and crates (this helps with caching dependencies) +COPY Cargo.toml Cargo.lock ./ +COPY src ./src +COPY crates ./crates + +# Pre-cache dependencies and build the project +RUN cargo fetch && cargo build --release + +# Dynamically mount source code during build for easy updates +VOLUME /app + +# Ensure the binary is built and available +CMD cargo build --release && \ + cp target/release/didcomm-mediator /usr/local/bin/didcomm-mediator + +# Stage 2: Runtime +FROM ubuntu:22.04 + +# Install necessary runtime dependencies +RUN apt update && apt install -y libpq5 && rm -rf /var/lib/apt/lists/* + +WORKDIR /app + +# Set the storage directory path +ENV STORAGE_DIRPATH="./storage" + +# Copy the built binary from the builder stage +COPY --from=builder /app/target/release/didcomm-mediator /usr/local/bin/didcomm-mediator + +# Copy runtime configurations +COPY .env .env + +# Expose the port the app will listen on +EXPOSE 3000 + +# Set the entrypoint for the application +ENTRYPOINT ["didcomm-mediator"] \ No newline at end of file diff --git a/crates/database/src/lib.rs b/crates/database/src/lib.rs index cb25bb46..f701f2e2 100644 --- a/crates/database/src/lib.rs +++ b/crates/database/src/lib.rs @@ -45,6 +45,7 @@ pub fn get_or_init_database() -> Arc> { // Create a handle to a database. let db = tokio::task::block_in_place(|| { tokio::runtime::Handle::current().block_on(async move { + let client_options = ClientOptions::parse(mongo_uri) .await .expect("Failed to parse Mongo URI"); diff --git a/crates/web-plugins/oob-messages/src/models.rs b/crates/web-plugins/oob-messages/src/models.rs index 1526c2c5..f6a0b97d 100644 --- a/crates/web-plugins/oob-messages/src/models.rs +++ b/crates/web-plugins/oob-messages/src/models.rs @@ -89,7 +89,6 @@ impl OobMessage { pub(crate) fn retrieve_or_generate_oob_inv( fs: &mut F, server_public_domain: &str, - server_local_port: &str, storage_dirpath: &str, ) -> Result where @@ -114,7 +113,7 @@ where let did = diddoc.id.clone(); let oob_message = OobMessage::new(&did); - let url: &String = &format!("{}:{}", server_public_domain, server_local_port); + let url: &String = &format!("{}", server_public_domain); let oob_url = OobMessage::serialize_oob_message(&oob_message, url) .map_err(|err| format!("Serialization error: {err}"))?; @@ -262,7 +261,6 @@ mod tests { fn test_retrieve_or_generate_oob_inv() { // Test data let server_public_domain = "https://example.com"; - let server_local_port = "8080"; let storage_dirpath = "testpath"; let mut mock_fs = MockFileSystem::new(); @@ -300,12 +298,8 @@ mod tests { .withf(|path, _content| path == Path::new("testpath/oob_invitation.txt")) .returning(|_, _| Ok(())); - let result = retrieve_or_generate_oob_inv( - &mut mock_fs, - server_public_domain, - server_local_port, - storage_dirpath, - ); + let result = + retrieve_or_generate_oob_inv(&mut mock_fs, server_public_domain, storage_dirpath); assert!(result.is_ok()); } diff --git a/crates/web-plugins/oob-messages/src/plugin.rs b/crates/web-plugins/oob-messages/src/plugin.rs index 03f0c538..d114254a 100644 --- a/crates/web-plugins/oob-messages/src/plugin.rs +++ b/crates/web-plugins/oob-messages/src/plugin.rs @@ -17,7 +17,6 @@ pub struct OOBMessages { struct OOBMessagesEnv { storage_dirpath: String, server_public_domain: String, - server_local_port: String, } #[derive(Clone)] @@ -33,14 +32,9 @@ fn get_env() -> Result { PluginError::InitError("SERVER_PUBLIC_DOMAIN env variable required".to_owned()) })?; - let server_local_port = std::env::var("SERVER_LOCAL_PORT").map_err(|_| { - PluginError::InitError("SERVER_LOCAL_PORT env variable required".to_owned()) - })?; - Ok(OOBMessagesEnv { storage_dirpath, server_public_domain, - server_local_port, }) } @@ -53,17 +47,13 @@ impl Plugin for OOBMessages { let env = get_env()?; let mut fs = StdFileSystem; - let oob_inv = retrieve_or_generate_oob_inv( - &mut fs, - &env.server_public_domain, - &env.server_local_port, - &env.storage_dirpath, - ) - .map_err(|err| { - PluginError::InitError(format!( - "Error retrieving or generating OOB invitation: {err}" - )) - })?; + let oob_inv = + retrieve_or_generate_oob_inv(&mut fs, &env.server_public_domain, &env.storage_dirpath) + .map_err(|err| { + PluginError::InitError(format!( + "Error retrieving or generating OOB invitation: {err}" + )) + })?; tracing::debug!("Out Of Band Invitation: {}", oob_inv); diff --git a/crates/web-plugins/oob-messages/src/web/handler.rs b/crates/web-plugins/oob-messages/src/web/handler.rs index ef453595..62abb688 100644 --- a/crates/web-plugins/oob-messages/src/web/handler.rs +++ b/crates/web-plugins/oob-messages/src/web/handler.rs @@ -9,33 +9,27 @@ use std::{error::Error, sync::Arc}; pub(crate) async fn handler_oob_inv(State(state): State>) -> Response { let mut fs = state.filesystem.lock().unwrap(); - let (server_public_domain, server_local_port, storage_dirpath) = - match get_environment_variables() { - Ok(result) => result, + let (server_public_domain, storage_dirpath) = match get_environment_variables() { + Ok(result) => result, + Err(err) => { + tracing::error!("Error: {err:?}"); + return (StatusCode::INTERNAL_SERVER_ERROR, "Internal server error").into_response(); + } + }; + + let content = + match retrieve_or_generate_oob_inv(&mut *fs, &server_public_domain, &storage_dirpath) { + Ok(oob_inv) => oob_inv, Err(err) => { - tracing::error!("Error: {err:?}"); - return (StatusCode::INTERNAL_SERVER_ERROR, "Internal server error") + tracing::error!("Failed to retrieve or generate oob invitation: {err:?}"); + return ( + StatusCode::SERVICE_UNAVAILABLE, + "Could not process request at this time. Please try again later", + ) .into_response(); } }; - let html_content = match retrieve_or_generate_oob_inv( - &mut *fs, - &server_public_domain, - &server_local_port, - &storage_dirpath, - ) { - Ok(oob_inv) => oob_inv, - Err(err) => { - tracing::error!("Failed to retrieve or generate oob invitation: {err:?}"); - return ( - StatusCode::SERVICE_UNAVAILABLE, - "Could not process request at this time. Please try again later", - ) - .into_response(); - } - }; - let html_content = format!( r#" @@ -53,7 +47,7 @@ pub(crate) async fn handler_oob_inv(State(state): State>) "#, - html_content + content ); Html(html_content).into_response() @@ -61,33 +55,27 @@ pub(crate) async fn handler_oob_inv(State(state): State>) pub(crate) async fn handler_oob_qr(State(state): State>) -> Response { let mut fs = state.filesystem.lock().unwrap(); - let (server_public_domain, server_local_port, storage_dirpath) = - match get_environment_variables() { - Ok(result) => result, + let (server_public_domain, storage_dirpath) = match get_environment_variables() { + Ok(result) => result, + Err(err) => { + tracing::error!("Error: {err:?}"); + return (StatusCode::INTERNAL_SERVER_ERROR, "Internal server error").into_response(); + } + }; + + let oob_inv = + match retrieve_or_generate_oob_inv(&mut *fs, &server_public_domain, &storage_dirpath) { + Ok(oob_inv) => oob_inv, Err(err) => { - tracing::error!("Error: {err:?}"); - return (StatusCode::INTERNAL_SERVER_ERROR, "Internal server error") + tracing::error!("Failed to retrieve or generate oob invitation: {err:?}"); + return ( + StatusCode::SERVICE_UNAVAILABLE, + "Could not process request at this time. Please try again later", + ) .into_response(); } }; - let oob_inv = match retrieve_or_generate_oob_inv( - &mut *fs, - &server_public_domain, - &server_local_port, - &storage_dirpath, - ) { - Ok(oob_inv) => oob_inv, - Err(err) => { - tracing::error!("Failed to retrieve or generate oob invitation: {err:?}"); - return ( - StatusCode::SERVICE_UNAVAILABLE, - "Could not process request at this time. Please try again later", - ) - .into_response(); - } - }; - let image_data = match retrieve_or_generate_qr_image(&mut *fs, &storage_dirpath, &oob_inv) { Ok(data) => data, Err(err) => { @@ -126,33 +114,27 @@ pub(crate) async fn handler_landing_page_oob( State(state): State>, ) -> Response { let mut fs = state.filesystem.lock().unwrap(); - let (server_public_domain, server_local_port, storage_dirpath) = - match get_environment_variables() { - Ok(result) => result, + let (server_public_domain, storage_dirpath) = match get_environment_variables() { + Ok(result) => result, + Err(err) => { + tracing::error!("Error: {err:?}"); + return (StatusCode::INTERNAL_SERVER_ERROR, "Internal server error").into_response(); + } + }; + + let oob_inv = + match retrieve_or_generate_oob_inv(&mut *fs, &server_public_domain, &storage_dirpath) { + Ok(oob_inv) => oob_inv, Err(err) => { - tracing::error!("Error: {err:?}"); - return (StatusCode::INTERNAL_SERVER_ERROR, "Internal server error") + tracing::error!("Failed to retrieve or generate oob invitation: {err:?}"); + return ( + StatusCode::SERVICE_UNAVAILABLE, + "Could not process request at this time. Please try again later", + ) .into_response(); } }; - let oob_inv = match retrieve_or_generate_oob_inv( - &mut *fs, - &server_public_domain, - &server_local_port, - &storage_dirpath, - ) { - Ok(oob_inv) => oob_inv, - Err(err) => { - tracing::error!("Failed to retrieve or generate oob invitation: {err:?}"); - return ( - StatusCode::SERVICE_UNAVAILABLE, - "Could not process request at this time. Please try again later", - ) - .into_response(); - } - }; - let image_data = match retrieve_or_generate_qr_image(&mut *fs, &storage_dirpath, &oob_inv) { Ok(data) => data, Err(err) => { @@ -200,15 +182,12 @@ pub(crate) async fn handler_landing_page_oob( .into_response() } -fn get_environment_variables() -> Result<(String, String, String), Box> { +fn get_environment_variables() -> Result<(String, String), Box> { let server_public_domain = std::env::var("SERVER_PUBLIC_DOMAIN") .map_err(|_| "SERVER_PUBLIC_DOMAIN env variable required")?; - let server_local_port = std::env::var("SERVER_LOCAL_PORT") - .map_err(|_| "SERVER_LOCAL_PORT env variable required")?; - let storage_dirpath = std::env::var("STORAGE_DIRPATH").map_err(|_| "STORAGE_DIRPATH env variable required")?; - Ok((server_public_domain, server_local_port, storage_dirpath)) + Ok((server_public_domain, storage_dirpath)) } diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 00000000..0319c73e --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,39 @@ +services: + mediator: + build: + context: . + container_name: didcomm-mediator + ports: + - "8080:8080" + env_file: + - .env # Reference the .env file + # depends_on: + # mongodb: + # condition: service_healthy + networks: + - mediator-network + + mongodb: + image: mongo:latest + container_name: mongodb + env_file: + - .env # Reference the same .env file + volumes: + - mongo-data:/data/db + networks: + - mediator-network + # healthcheck: + # test: ["CMD", "mongo", "--version"] + # interval: 10s + # timeout: 5s + # retries: 5 + environment: + MONGO_INITDB_ROOT_USERNAME: ${MONGO_INITDB_ROOT_USERNAME} + MONGO_INITDB_ROOT_PASSWORD: ${MONGO_INITDB_ROOT_PASSWORD} + +networks: + mediator-network: + driver: bridge + +volumes: + mongo-data: diff --git a/docs/deployment-environment-doc.md b/docs/deployment-environment-doc.md new file mode 100644 index 00000000..c5245344 --- /dev/null +++ b/docs/deployment-environment-doc.md @@ -0,0 +1,154 @@ +# **Application Deployment Documentation** + +## **1. Prerequisites** + +- **Tools and Software Required**: + - Helm (e.g., `Helm 3.x`) + - Kubernetes (e.g., `1.25+`) + - Minikube or any other Kubernetes cluster setup + - Other dependencies (e.g., Docker, kubectl) + +- **Environment Setup**: + - Access to a Kubernetes cluster + - Required credentials or configurations (e.g., kubeconfig, Helm setup) + + +## **2. Development Deployment** + +To run the application in a development environment, use Docker Compose: + +```bash +docker-compose up --build +``` + +## **3. Production Deployment** + +In production, deploy the application using Helm, as outlined in the next section. This involves setting up and configuring the necessary Helm charts. + +## **4. Helm Chart Structure** + +- **Chart Overview**: + This section explains the layout of the Helm chart and its components. + - `values.yaml`: Contains default configurations. + - `templates/`: Includes critical resources like Deployment, Service, ConfigMap, etc. + - **Critical Templates**: + - **Deployment**: Specifies the application container settings. + - **Service**: Defines the Kubernetes service for networking. + - **ConfigMap**: Used for configuration management. + +- **Customization**: + You can override the default `values.yaml` by providing your own custom configurations. Example: + + ```bash + helm install mediator ./mediator-charts --values custom-values.yaml + ``` + + - **Mandatory values** to override in `custom-values.yaml`: + - `MONGO_DBN` + - `MONGO_URI` + - `SERVER_LOCAL_PORT` + - `SERVER_PUBLIC_DOMAIN` + +## **5. Deployment Guide** + +Follow these steps to deploy the application: + +1. Clone the repository: + ```bash + git clone https://github.com/adorsys/didcomm-mediator-rs.git + ``` + +2. Install dependencies: + ```bash + helm dependency update mediator-charts + ``` + +3. Deploy using Helm: + ```bash + helm install mediator mediator-charts --namespace didcomm-mediator + ``` + +4. Verify the deployment status: + ```bash + kubectl get pods -n didcomm-mediator + kubectl get services -n didcomm-mediator + ``` + +--- + +### **5.1 Notes on Namespaces** + +- It is crucial to use the correct namespace when deploying to Kubernetes. Ensure that the namespace (`didcomm-mediator` in this case) exists, or create it manually: + ```bash + kubectl create namespace didcomm-mediator + ``` + +--- + +### **5.2 Rollback Instructions** + +To roll back to a previous release, use the following command: + +```bash +helm rollback mediator +``` + +You can find the available revisions by running: + +```bash +helm history mediator +``` + +--- + +## **6. Accessing the Application** + +### **6.1 Port Forwarding** + +To forward the application service ports locally for testing, use: + +```bash +kubectl port-forward service/ 8080: +``` + +### **6.2 Ingress/LoadBalancer Details** + +If the application is exposed via Ingress or LoadBalancer, follow these steps to access it: +- Verify the external IP or URL: + ```bash + kubectl get ingress -n didcomm-mediator + ``` + +--- + +## **7. Monitoring and Debugging** + +### **7.1 Logs** + +To fetch logs for a specific pod: + +```bash +kubectl logs -n didcomm-mediator +``` + +Use `kubectl get pods -n didcomm-mediator` to find the pod names. + +### **7.2 Monitoring Tools** + +- **Prometheus/Grafana**: These tools can be set up to monitor your application's performance. +- **ELK Stack**: If configured, you can use ELK for centralized logging and monitoring. + +**Steps to configure and access monitoring dashboards**: +- Install the monitoring tools (e.g., Prometheus, Grafana). +- Access Grafana dashboards using the provided URLs or port forwarding. + +--- + +## **8. Additional Notes** + +- **Helm Chart Upgrades**: To upgrade your release with new changes from the chart repository: + ```bash + helm upgrade mediator mediator-charts --namespace didcomm-mediator + ``` + +- **Custom Values**: If you have custom values that should be applied to the Helm chart, always include them with the `--values` flag as shown earlier. diff --git a/mediator-charts/.helmignore b/mediator-charts/.helmignore new file mode 100644 index 00000000..0e8a0eb3 --- /dev/null +++ b/mediator-charts/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/mediator-charts/Chart.yaml b/mediator-charts/Chart.yaml new file mode 100644 index 00000000..4c76dd45 --- /dev/null +++ b/mediator-charts/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: mediator-charts +description: A Helm chart for Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 0.1.0 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +appVersion: "0.1.9" diff --git a/mediator-charts/templates/env-configmap.yaml b/mediator-charts/templates/env-configmap.yaml new file mode 100644 index 00000000..39fbeae1 --- /dev/null +++ b/mediator-charts/templates/env-configmap.yaml @@ -0,0 +1,14 @@ +apiVersion: v1 +data: + MONGO_DBN: MediatorDB + SERVER_PUBLIC_DOMAIN: "https://didcomm-mediator.eudi-adorsys.com" + +kind: ConfigMap +metadata: + namespace: {{ .Values.namespace }} + creationTimestamp: null + labels: + io.kompose.service: mediator-env + name: env + + diff --git a/mediator-charts/templates/ingress.yml b/mediator-charts/templates/ingress.yml new file mode 100644 index 00000000..4f625787 --- /dev/null +++ b/mediator-charts/templates/ingress.yml @@ -0,0 +1,26 @@ +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ .Release.Name }}-ingress + namespace: {{ .Values.namespace }} + annotations: + external-dns.alpha.kubernetes.io/hostname: {{ .Values.externalDnsHostname }} + {{- toYaml .Values.mediator.ingress.annotations | nindent 4 }} +spec: + ingressClassName: nginx + rules: + - host: {{ .Values.externalDnsHostname }} + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: {{ .Release.Name }}-service + port: + number: 3000 + tls: + - hosts: + - {{ .Values.externalDnsHostname }} + secretName: {{ .Values.mediator.ingress.secretName }} + \ No newline at end of file diff --git a/mediator-charts/templates/mediator-deployment.yaml b/mediator-charts/templates/mediator-deployment.yaml new file mode 100644 index 00000000..091205cf --- /dev/null +++ b/mediator-charts/templates/mediator-deployment.yaml @@ -0,0 +1,47 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ .Release.Name }}-mediator-deployment + namespace: {{ .Values.namespace }} +spec: + replicas: {{ .Values.replicaCount }} + selector: + matchLabels: + app: {{ .Release.Name }}-mediator + template: + metadata: + labels: + app: {{ .Release.Name }}-mediator + spec: + containers: + - name: {{ .Release.Name }}-mediator-container + image: {{ .Values.mediator.image.repository }}:{{ .Values.mediator.image.tag }} + imagePullPolicy: {{ .Values.mediator.image.pullPolicy }} + ports: + - containerPort: 3000 + env: + - name: MONGO_DBN + valueFrom: + configMapKeyRef: + key: MONGO_DBN + name: env + - name: MONGO_INITDB_ROOT_PASSWORD + valueFrom: + secretKeyRef: + name: {{ .Release.Name }}-secret + key: password + - name: MONGO_INITDB_ROOT_USERNAME + valueFrom: + secretKeyRef: + name: {{ .Release.Name }}-secret + key: username + - name: MONGO_HOST + value: {{ .Release.Name }}-mongodb-service + - name: MONGO_URI + value: "mongodb://{{ .Release.Name }}-mongodb-service:27017" + - name: SERVER_PUBLIC_DOMAIN + valueFrom: + configMapKeyRef: + key: SERVER_PUBLIC_DOMAIN + name: env + \ No newline at end of file diff --git a/mediator-charts/templates/mediator-service.yaml b/mediator-charts/templates/mediator-service.yaml new file mode 100644 index 00000000..6ef4cc73 --- /dev/null +++ b/mediator-charts/templates/mediator-service.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ .Release.Name }}-service + namespace: {{ .Values.namespace }} +spec: + selector: + app: {{ .Release.Name }}-mediator + ports: + - name: https + port: 3000 + targetPort: 3000 + type: ClusterIP diff --git a/mediator-charts/templates/mongodb-deployment.yaml b/mediator-charts/templates/mongodb-deployment.yaml new file mode 100644 index 00000000..e7f709fc --- /dev/null +++ b/mediator-charts/templates/mongodb-deployment.yaml @@ -0,0 +1,45 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ .Release.Name }}-mongodb-deployment + namespace: {{ .Values.namespace }} +spec: + replicas: 1 + selector: + matchLabels: + app: {{ .Release.Name }}-mongodb + template: + metadata: + labels: + app: {{ .Release.Name }}-mongodb + spec: + containers: + - name: mongodb + image: mongo:latest + ports: + - containerPort: 27017 + resources: {} + env: + - name: MONGO_DBN + valueFrom: + configMapKeyRef: + name: env + key: MONGO_DBN + # - name: MONGO_INITDB_ROOT_USERNAME + # valueFrom: + # secretKeyRef: + # name: {{ .Release.Name }}-secret + # key: username + # - name: MONGO_INITDB_ROOT_PASSWORD + # valueFrom: + # secretKeyRef: + # name: {{ .Release.Name }}-secret + # key: password + volumeMounts: + - name: {{ .Release.Name }}-mongo-persistent-storage + mountPath: {{ .Values.mongoVolume.mountPath }} + restartPolicy: Always + volumes: + - name: {{ .Release.Name }}-mongo-persistent-storage + persistentVolumeClaim: + claimName: {{ .Release.Name }}-mongo-pvc diff --git a/mediator-charts/templates/mongodb-pv.yaml b/mediator-charts/templates/mongodb-pv.yaml new file mode 100644 index 00000000..3472270e --- /dev/null +++ b/mediator-charts/templates/mongodb-pv.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: PersistentVolume +metadata: + name: {{ .Release.Name }}-mongo-pv + namespace: {{ .Values.namespace }} +spec: + capacity: + storage: {{ .Values.mongoVolume.persistentVolume.storageSize }} + accessModes: + - ReadWriteOnce + hostPath: + path: {{ .Values.mongoVolume.persistentVolume.pathOnHost }} \ No newline at end of file diff --git a/mediator-charts/templates/mongodb-pvc.yaml b/mediator-charts/templates/mongodb-pvc.yaml new file mode 100644 index 00000000..9a4034e7 --- /dev/null +++ b/mediator-charts/templates/mongodb-pvc.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: {{ .Release.Name }}-mongo-pvc + namespace: {{ .Values.namespace }} +spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: {{ .Values.mongoVolume.persistentVolumeClaim.storageSize }} \ No newline at end of file diff --git a/mediator-charts/templates/mongodb-service.yaml b/mediator-charts/templates/mongodb-service.yaml new file mode 100644 index 00000000..2e5a72b8 --- /dev/null +++ b/mediator-charts/templates/mongodb-service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ .Release.Name }}-mongodb-service + namespace: {{ .Values.namespace }} +spec: + selector: + app: {{ .Release.Name }}-mongodb + ports: + - protocol: TCP + port: 27017 + targetPort: 27017 + type: ClusterIP + + \ No newline at end of file diff --git a/mediator-charts/templates/secrets.yaml b/mediator-charts/templates/secrets.yaml new file mode 100644 index 00000000..c008c282 --- /dev/null +++ b/mediator-charts/templates/secrets.yaml @@ -0,0 +1,9 @@ +apiVersion: v1 +kind: Secret +metadata: + name: {{ .Release.Name }}-secret + namespace: {{ .Values.namespace }} +type: Opaque +stringData: + password: root + username: root diff --git a/mediator-charts/values.yaml b/mediator-charts/values.yaml new file mode 100644 index 00000000..9112b60a --- /dev/null +++ b/mediator-charts/values.yaml @@ -0,0 +1,28 @@ +replicaCount: 1 +namespace: didcomm-mediator +externalDnsHostname: didcomm-mediator.eudi-adorsys.com + +mongodb: + databaseName: mongodb + +mediator: + image: + repository: ghcr.io/adorsys/didcomm-mediator-rs + pullPolicy: IfNotPresent + tag: latest + ingress: + secretName: eudi-adorsys-tls + annotations: + cert-manager.io/cluster-issuer: letsencrypt-prod + + +mongoVolume: + persistentVolumeClaim: + storageSize: 10Gi + + persistentVolume: + storageSize: 10Gi + pathOnHost: /var/lib/mongodb + + + mountPath: /var/lib/mongodb diff --git a/src/main.rs b/src/main.rs index 888e99c1..916bfe33 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,13 +6,14 @@ use tokio::net::TcpListener; #[tokio::main] async fn main() -> Result<()> { // Load dotenv-flow variables - dotenv_flow::dotenv_flow().ok(); + dotenv_flow::dotenv_flow()?; // Enable logging config_tracing(); // Configure server let port = std::env::var("SERVER_LOCAL_PORT").unwrap_or("3000".to_owned()); + let port = port.parse().context("failed to parse port")?; let addr = SocketAddr::from(([0, 0, 0, 0], port)); let listener = TcpListener::bind(addr) diff --git a/storage/did.json b/storage/did.json new file mode 100644 index 00000000..daebf98e --- /dev/null +++ b/storage/did.json @@ -0,0 +1,51 @@ +{ + "@context": [ + "https://www.w3.org/ns/did/v1", + "https://w3id.org/security/suites/jws-2020/v1" + ], + "id": "did:peer:2.Vz6Mks7dj3nvcw46L1nBWSVpKoSKW8WjRojntQ2ubpCPncPaj.Ez6LSk6zF7W8kn8hVp1jSaMWQrKe5s9nYGXqcXBF2GP4pCrqW.SeyJpZCI6IiNkaWRjb21tIiwicyI6eyJhIjpbImRpZGNvbW0vdjIiXSwiciI6W10sInVyaSI6Imh0dHBzOi8vZGlkY29tbS1tZWRpYXRvci5ldWRpLWFkb3JzeXMuY29tIn0sInQiOiJkbSJ9", + "alsoKnownAs": [ + "did:peer:3zQmXTbRyBb8aD2cx51goUBnTU5xpMn6FTmzeJiciigStV7V" + ], + "verificationMethod": [ + { + "id": "#key-1", + "type": "JsonWebKey2020", + "controller": "did:peer:2.Vz6Mks7dj3nvcw46L1nBWSVpKoSKW8WjRojntQ2ubpCPncPaj.Ez6LSk6zF7W8kn8hVp1jSaMWQrKe5s9nYGXqcXBF2GP4pCrqW.SeyJpZCI6IiNkaWRjb21tIiwicyI6eyJhIjpbImRpZGNvbW0vdjIiXSwiciI6W10sInVyaSI6Imh0dHBzOi8vZGlkY29tbS1tZWRpYXRvci5ldWRpLWFkb3JzeXMuY29tIn0sInQiOiJkbSJ9", + "publicKeyJwk": { + "kty": "OKP", + "crv": "Ed25519", + "x": "vCDT7qRDHDxYbbHBTgpL5YYjHJfKKcdaFMvTysw2jAQ" + } + }, + { + "id": "#key-2", + "type": "JsonWebKey2020", + "controller": "did:peer:2.Vz6Mks7dj3nvcw46L1nBWSVpKoSKW8WjRojntQ2ubpCPncPaj.Ez6LSk6zF7W8kn8hVp1jSaMWQrKe5s9nYGXqcXBF2GP4pCrqW.SeyJpZCI6IiNkaWRjb21tIiwicyI6eyJhIjpbImRpZGNvbW0vdjIiXSwiciI6W10sInVyaSI6Imh0dHBzOi8vZGlkY29tbS1tZWRpYXRvci5ldWRpLWFkb3JzeXMuY29tIn0sInQiOiJkbSJ9", + "publicKeyJwk": { + "kty": "OKP", + "crv": "X25519", + "x": "fTiq2NgHqn42dggk5fAj0fWhfnsKqlgo99Bt3umZkWk" + } + } + ], + "authentication": [ + "#key-1" + ], + "keyAgreement": [ + "#key-2" + ], + "service": [ + { + "id": "#didcomm", + "type": "DIDCommMessaging", + "serviceEndpoint": { + "accept": [ + "didcomm/v2" + ], + "routingKeys": [], + "uri": "https://didcomm-mediator.eudi-adorsys.com" + } + } + ] +} \ No newline at end of file diff --git a/storage/oob_invitation.txt b/storage/oob_invitation.txt new file mode 100644 index 00000000..913fe359 --- /dev/null +++ b/storage/oob_invitation.txt @@ -0,0 +1 @@ +https://didcomm-mediator.eudi-adorsys.com?_oob=eyJ0eXBlIjoiaHR0cHM6Ly9kaWRjb21tLm9yZy9vdXQtb2YtYmFuZC8yLjAvaW52aXRhdGlvbiIsImlkIjoiOThkM2ZjNzItNjFlOC00N2MwLWFlNmMtYmVmMzJhMDc1MWU2IiwiZnJvbSI6ImRpZDpwZWVyOjIuVno2TWtzN2RqM252Y3c0NkwxbkJXU1ZwS29TS1c4V2pSb2pudFEydWJwQ1BuY1Bhai5FejZMU2s2ekY3VzhrbjhoVnAxalNhTVdRcktlNXM5bllHWHFjWEJGMkdQNHBDcnFXLlNleUpwWkNJNklpTmthV1JqYjIxdElpd2ljeUk2ZXlKaElqcGJJbVJwWkdOdmJXMHZkaklpWFN3aWNpSTZXMTBzSW5WeWFTSTZJbWgwZEhCek9pOHZaR2xrWTI5dGJTMXRaV1JwWVhSdmNpNWxkV1JwTFdGa2IzSnplWE11WTI5dEluMHNJblFpT2lKa2JTSjkiLCJib2R5Ijp7ImdvYWxfY29kZSI6InJlcXVlc3QtbWVkaWF0ZSIsImdvYWwiOiJSZXF1ZXN0IE1lZGlhdGUiLCJsYWJlbCI6Ik1lZGlhdG9yIiwiYWNjZXB0IjpbImRpZGNvbW0vdjIiXX19 \ No newline at end of file diff --git a/storage/qrcode.txt b/storage/qrcode.txt new file mode 100644 index 00000000..5f67b3ab --- /dev/null +++ b/storage/qrcode.txt @@ -0,0 +1 @@ +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 \ No newline at end of file