├── .dockerignore ├── .github ├── renovate.json5 └── workflows │ ├── ci.yml │ └── release.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Dockerfile ├── LICENSE ├── README.md ├── crates ├── koe-audio │ ├── Cargo.toml │ └── src │ │ ├── audio.rs │ │ ├── ffmpeg.rs │ │ └── lib.rs ├── koe-call │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── koe-config │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── koe-db │ ├── Cargo.toml │ └── src │ │ ├── dict.rs │ │ ├── lib.rs │ │ └── voice.rs ├── koe-speech │ ├── Cargo.toml │ └── src │ │ ├── lib.rs │ │ ├── speech.rs │ │ └── voicevox.rs └── koe │ ├── Cargo.toml │ └── src │ ├── app_state.rs │ ├── command │ ├── handler.rs │ ├── mod.rs │ ├── model.rs │ ├── parser.rs │ └── setup.rs │ ├── component_interaction │ ├── custom_id.rs │ ├── handler.rs │ └── mod.rs │ ├── error.rs │ ├── event_handler.rs │ ├── main.rs │ ├── message │ ├── handler.rs │ ├── mod.rs │ └── read.rs │ ├── regex.rs │ └── voice_state │ ├── handler.rs │ └── mod.rs ├── deployment ├── config │ ├── koe.yaml │ ├── redis.conf │ └── voicevox_presets.yaml └── docker-compose.yml ├── devtools ├── .gitattributes ├── .gitignore ├── .husky │ └── commit-msg ├── .prettierignore ├── .prettierrc.js ├── .release-it.js ├── .yarn │ └── releases │ │ └── yarn-4.2.2.cjs ├── .yarnrc.yml ├── commitlint.config.js ├── package.json ├── src │ └── generateDockerTags.js ├── template │ └── changelog │ │ └── header.hbs └── yarn.lock └── docs ├── logo ├── icon.png ├── icon.svg ├── logo.png └── logo.svg ├── release_procedure.md ├── setup_guide.md └── user_guide.md /.dockerignore: -------------------------------------------------------------------------------- 1 | # Rust build output 2 | target 3 | 4 | # CLion 5 | .idea 6 | 7 | # Files not required for Docker build 8 | .git 9 | .github 10 | deployment 11 | deployment_dev 12 | devtools 13 | docs 14 | .gitignore 15 | docker-compose.yml 16 | LICENSE 17 | README.md 18 | -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- 1 | { 2 | $schema: 'https://docs.renovatebot.com/renovate-schema.json', 3 | extends: [ 4 | 'config:base', 5 | ':semanticCommits', 6 | ':semanticCommitTypeAll(chore)', 7 | ':prHourlyLimitNone', 8 | ], 9 | timezone: 'Asia/Tokyo', 10 | schedule: ['before 9am on Saturday'], 11 | packageRules: [ 12 | { 13 | matchUpdateTypes: ['minor', 'patch'], 14 | matchCurrentVersion: '!/^0/', 15 | automerge: true, 16 | }, 17 | { 18 | matchManagers: ['npm'], 19 | rangeStrategy: 'bump', 20 | }, 21 | { 22 | matchManagers: ['dockerfile'], 23 | matchPackageNames: ['rust'], 24 | enabled: false, 25 | }, 26 | ], 27 | } 28 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | branches: [main] 6 | pull_request: 7 | branches: [main] 8 | 9 | permissions: 10 | contents: read 11 | 12 | env: 13 | RUST_VERSION: 1.73.0 14 | CARGO_TERM_COLOR: always 15 | 16 | jobs: 17 | format: 18 | runs-on: ubuntu-22.04 19 | steps: 20 | - uses: actions/checkout@v4 21 | 22 | - name: Setup Rust 23 | run: | 24 | rustup set profile minimal 25 | rustup toolchain install "$RUST_VERSION" --component rustfmt 26 | rustup override set "$RUST_VERSION" 27 | 28 | - name: Check code format 29 | run: cargo fmt --all -- --check 30 | 31 | lint: 32 | runs-on: ubuntu-22.04 33 | steps: 34 | - uses: actions/checkout@v4 35 | 36 | - name: Setup Rust 37 | run: | 38 | rustup set profile minimal 39 | rustup toolchain install "$RUST_VERSION" --component clippy 40 | rustup override set "$RUST_VERSION" 41 | 42 | - uses: Swatinem/rust-cache@v2 43 | 44 | - name: Run lint 45 | run: cargo clippy --all-targets --all-features -- -D warnings 46 | 47 | check-next-version: 48 | if: github.ref == 'refs/heads/main' 49 | runs-on: ubuntu-22.04 50 | steps: 51 | - uses: actions/checkout@v4 52 | with: 53 | fetch-depth: 0 54 | 55 | - uses: actions/setup-node@v4 56 | with: 57 | node-version: 18 58 | 59 | - name: Setup devtools 60 | run: yarn install --immutable 61 | working-directory: ./devtools 62 | 63 | - name: Check next version 64 | run: yarn run print-next-version 65 | working-directory: ./devtools 66 | 67 | docker-build-push: 68 | needs: [format, lint] 69 | runs-on: ubuntu-22.04 70 | permissions: 71 | contents: read 72 | packages: write 73 | steps: 74 | - uses: actions/checkout@v4 75 | 76 | - name: Set up Docker Buildx 77 | uses: docker/setup-buildx-action@v3 78 | 79 | - name: Login to GitHub Container Registry 80 | if: github.ref == 'refs/heads/main' 81 | uses: docker/login-action@v3 82 | with: 83 | registry: ghcr.io 84 | username: ${{ github.repository_owner }} 85 | password: ${{ secrets.GITHUB_TOKEN }} 86 | 87 | - name: Build (and push) 88 | uses: docker/build-push-action@v5 89 | with: 90 | context: . 91 | tags: ghcr.io/ciffelia/koe:git-${{ github.sha }} 92 | build-args: | 93 | SENTRY_RELEASE=${{ github.sha }} 94 | cache-from: type=gha 95 | cache-to: type=gha,mode=max 96 | push: ${{ github.ref == 'refs/heads/main' }} 97 | 98 | sentry-release: 99 | if: github.ref == 'refs/heads/main' 100 | needs: [docker-build-push] 101 | runs-on: ubuntu-22.04 102 | steps: 103 | - uses: actions/checkout@v4 104 | 105 | - name: Create Sentry release 106 | uses: getsentry/action-release@v1 107 | env: 108 | SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} 109 | SENTRY_ORG: ${{ secrets.SENTRY_ORG }} 110 | SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} 111 | with: 112 | environment: production 113 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | name: Create release 2 | 3 | on: 4 | workflow_dispatch: 5 | inputs: 6 | bump: 7 | description: Increment major, minor, or patch version 8 | type: choice 9 | required: true 10 | default: auto 11 | options: 12 | - auto 13 | - major 14 | - minor 15 | - patch 16 | 17 | permissions: 18 | contents: write 19 | packages: write 20 | 21 | concurrency: ${{ github.workflow }} 22 | 23 | jobs: 24 | create-release: 25 | runs-on: ubuntu-22.04 26 | steps: 27 | - name: Make sure that the container image is built 28 | run: skopeo inspect 'docker://ghcr.io/ciffelia/koe:git-${{ github.sha }}' 29 | 30 | - uses: actions/checkout@v4 31 | with: 32 | fetch-depth: 0 33 | 34 | - uses: actions/setup-node@v4 35 | with: 36 | node-version: 18 37 | 38 | - name: Setup devtools 39 | run: yarn install --immutable 40 | working-directory: ./devtools 41 | 42 | - name: Configure git author 43 | run: | 44 | git config user.name 'github-actions' 45 | git config user.email '41898282+github-actions[bot]@users.noreply.github.com' 46 | 47 | - name: Create release 48 | run: | 49 | echo 'Creating ${{ inputs.bump }} release' 50 | 51 | if [ '${{ inputs.bump }}' == 'auto' ]; then 52 | yarn run create-release 53 | else 54 | yarn run create-release '${{ inputs.bump }}' 55 | fi 56 | working-directory: ./devtools 57 | env: 58 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 59 | 60 | - name: Generate Docker tags 61 | id: generate-docker-tags 62 | run: | 63 | tags="$(yarn run generate-docker-tags)" 64 | echo "$tags" 65 | echo "tags=$tags" >> $GITHUB_OUTPUT 66 | working-directory: ./devtools 67 | 68 | - name: Login to GitHub Container Registry 69 | uses: docker/login-action@v3 70 | with: 71 | registry: ghcr.io 72 | username: ${{ github.repository_owner }} 73 | password: ${{ secrets.GITHUB_TOKEN }} 74 | 75 | - name: Create Docker tags 76 | run: | 77 | for tag in ${{ steps.generate-docker-tags.outputs.tags }} 78 | do 79 | skopeo copy --all 'docker://ghcr.io/ciffelia/koe:git-${{ github.sha }}' "docker://ghcr.io/ciffelia/koe:$tag" 80 | done 81 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Rust build output 2 | /target 3 | 4 | # Config files 5 | /deployment_dev 6 | 7 | # CLion 8 | /.idea 9 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 3 4 | 5 | [[package]] 6 | name = "addr2line" 7 | version = "0.21.0" 8 | source = "registry+https://github.com/rust-lang/crates.io-index" 9 | checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb" 10 | dependencies = [ 11 | "gimli", 12 | ] 13 | 14 | [[package]] 15 | name = "adler" 16 | version = "1.0.2" 17 | source = "registry+https://github.com/rust-lang/crates.io-index" 18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" 19 | 20 | [[package]] 21 | name = "aead" 22 | version = "0.4.3" 23 | source = "registry+https://github.com/rust-lang/crates.io-index" 24 | checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877" 25 | dependencies = [ 26 | "generic-array", 27 | "rand_core", 28 | ] 29 | 30 | [[package]] 31 | name = "aho-corasick" 32 | version = "1.1.3" 33 | source = "registry+https://github.com/rust-lang/crates.io-index" 34 | checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" 35 | dependencies = [ 36 | "memchr", 37 | ] 38 | 39 | [[package]] 40 | name = "android-tzdata" 41 | version = "0.1.1" 42 | source = "registry+https://github.com/rust-lang/crates.io-index" 43 | checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" 44 | 45 | [[package]] 46 | name = "android_system_properties" 47 | version = "0.1.5" 48 | source = "registry+https://github.com/rust-lang/crates.io-index" 49 | checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" 50 | dependencies = [ 51 | "libc", 52 | ] 53 | 54 | [[package]] 55 | name = "anyhow" 56 | version = "1.0.86" 57 | source = "registry+https://github.com/rust-lang/crates.io-index" 58 | checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da" 59 | dependencies = [ 60 | "backtrace", 61 | ] 62 | 63 | [[package]] 64 | name = "arrayvec" 65 | version = "0.7.4" 66 | source = "registry+https://github.com/rust-lang/crates.io-index" 67 | checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" 68 | 69 | [[package]] 70 | name = "async-trait" 71 | version = "0.1.74" 72 | source = "registry+https://github.com/rust-lang/crates.io-index" 73 | checksum = "a66537f1bb974b254c98ed142ff995236e81b9d0fe4db0575f46612cb15eb0f9" 74 | dependencies = [ 75 | "proc-macro2", 76 | "quote", 77 | "syn 2.0.48", 78 | ] 79 | 80 | [[package]] 81 | name = "async-tungstenite" 82 | version = "0.17.2" 83 | source = "registry+https://github.com/rust-lang/crates.io-index" 84 | checksum = "a1b71b31561643aa8e7df3effe284fa83ab1a840e52294c5f4bd7bfd8b2becbb" 85 | dependencies = [ 86 | "futures-io", 87 | "futures-util", 88 | "log", 89 | "native-tls", 90 | "pin-project-lite", 91 | "tokio", 92 | "tokio-native-tls", 93 | "tungstenite", 94 | ] 95 | 96 | [[package]] 97 | name = "audiopus" 98 | version = "0.3.0-rc.0" 99 | source = "registry+https://github.com/rust-lang/crates.io-index" 100 | checksum = "ab55eb0e56d7c6de3d59f544e5db122d7725ec33be6a276ee8241f3be6473955" 101 | dependencies = [ 102 | "audiopus_sys", 103 | ] 104 | 105 | [[package]] 106 | name = "audiopus_sys" 107 | version = "0.2.2" 108 | source = "registry+https://github.com/rust-lang/crates.io-index" 109 | checksum = "62314a1546a2064e033665d658e88c620a62904be945f8147e6b16c3db9f8651" 110 | dependencies = [ 111 | "cmake", 112 | "log", 113 | "pkg-config", 114 | ] 115 | 116 | [[package]] 117 | name = "autocfg" 118 | version = "1.1.0" 119 | source = "registry+https://github.com/rust-lang/crates.io-index" 120 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" 121 | 122 | [[package]] 123 | name = "backtrace" 124 | version = "0.3.69" 125 | source = "registry+https://github.com/rust-lang/crates.io-index" 126 | checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837" 127 | dependencies = [ 128 | "addr2line", 129 | "cc", 130 | "cfg-if", 131 | "libc", 132 | "miniz_oxide", 133 | "object", 134 | "rustc-demangle", 135 | ] 136 | 137 | [[package]] 138 | name = "base64" 139 | version = "0.13.1" 140 | source = "registry+https://github.com/rust-lang/crates.io-index" 141 | checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8" 142 | 143 | [[package]] 144 | name = "base64" 145 | version = "0.21.5" 146 | source = "registry+https://github.com/rust-lang/crates.io-index" 147 | checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9" 148 | 149 | [[package]] 150 | name = "bitflags" 151 | version = "1.3.2" 152 | source = "registry+https://github.com/rust-lang/crates.io-index" 153 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" 154 | 155 | [[package]] 156 | name = "bitflags" 157 | version = "2.4.1" 158 | source = "registry+https://github.com/rust-lang/crates.io-index" 159 | checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" 160 | 161 | [[package]] 162 | name = "block-buffer" 163 | version = "0.10.4" 164 | source = "registry+https://github.com/rust-lang/crates.io-index" 165 | checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" 166 | dependencies = [ 167 | "generic-array", 168 | ] 169 | 170 | [[package]] 171 | name = "bumpalo" 172 | version = "3.14.0" 173 | source = "registry+https://github.com/rust-lang/crates.io-index" 174 | checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" 175 | 176 | [[package]] 177 | name = "bytemuck" 178 | version = "1.14.0" 179 | source = "registry+https://github.com/rust-lang/crates.io-index" 180 | checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" 181 | 182 | [[package]] 183 | name = "byteorder" 184 | version = "1.5.0" 185 | source = "registry+https://github.com/rust-lang/crates.io-index" 186 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" 187 | 188 | [[package]] 189 | name = "bytes" 190 | version = "1.5.0" 191 | source = "registry+https://github.com/rust-lang/crates.io-index" 192 | checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223" 193 | 194 | [[package]] 195 | name = "cc" 196 | version = "1.0.83" 197 | source = "registry+https://github.com/rust-lang/crates.io-index" 198 | checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" 199 | dependencies = [ 200 | "libc", 201 | ] 202 | 203 | [[package]] 204 | name = "cfg-if" 205 | version = "1.0.0" 206 | source = "registry+https://github.com/rust-lang/crates.io-index" 207 | checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 208 | 209 | [[package]] 210 | name = "chrono" 211 | version = "0.4.31" 212 | source = "registry+https://github.com/rust-lang/crates.io-index" 213 | checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" 214 | dependencies = [ 215 | "android-tzdata", 216 | "iana-time-zone", 217 | "js-sys", 218 | "num-traits 0.2.17", 219 | "serde", 220 | "wasm-bindgen", 221 | "windows-targets", 222 | ] 223 | 224 | [[package]] 225 | name = "cipher" 226 | version = "0.3.0" 227 | source = "registry+https://github.com/rust-lang/crates.io-index" 228 | checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7" 229 | dependencies = [ 230 | "generic-array", 231 | ] 232 | 233 | [[package]] 234 | name = "cmake" 235 | version = "0.1.50" 236 | source = "registry+https://github.com/rust-lang/crates.io-index" 237 | checksum = "a31c789563b815f77f4250caee12365734369f942439b7defd71e18a48197130" 238 | dependencies = [ 239 | "cc", 240 | ] 241 | 242 | [[package]] 243 | name = "combine" 244 | version = "4.6.6" 245 | source = "registry+https://github.com/rust-lang/crates.io-index" 246 | checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4" 247 | dependencies = [ 248 | "bytes", 249 | "futures-core", 250 | "memchr", 251 | "pin-project-lite", 252 | "tokio", 253 | "tokio-util", 254 | ] 255 | 256 | [[package]] 257 | name = "convert_case" 258 | version = "0.4.0" 259 | source = "registry+https://github.com/rust-lang/crates.io-index" 260 | checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" 261 | 262 | [[package]] 263 | name = "core-foundation" 264 | version = "0.9.3" 265 | source = "registry+https://github.com/rust-lang/crates.io-index" 266 | checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146" 267 | dependencies = [ 268 | "core-foundation-sys", 269 | "libc", 270 | ] 271 | 272 | [[package]] 273 | name = "core-foundation-sys" 274 | version = "0.8.4" 275 | source = "registry+https://github.com/rust-lang/crates.io-index" 276 | checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa" 277 | 278 | [[package]] 279 | name = "cpufeatures" 280 | version = "0.2.11" 281 | source = "registry+https://github.com/rust-lang/crates.io-index" 282 | checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0" 283 | dependencies = [ 284 | "libc", 285 | ] 286 | 287 | [[package]] 288 | name = "crc32fast" 289 | version = "1.3.2" 290 | source = "registry+https://github.com/rust-lang/crates.io-index" 291 | checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" 292 | dependencies = [ 293 | "cfg-if", 294 | ] 295 | 296 | [[package]] 297 | name = "crossbeam-utils" 298 | version = "0.8.16" 299 | source = "registry+https://github.com/rust-lang/crates.io-index" 300 | checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" 301 | dependencies = [ 302 | "cfg-if", 303 | ] 304 | 305 | [[package]] 306 | name = "crypto-common" 307 | version = "0.1.6" 308 | source = "registry+https://github.com/rust-lang/crates.io-index" 309 | checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3" 310 | dependencies = [ 311 | "generic-array", 312 | "typenum", 313 | ] 314 | 315 | [[package]] 316 | name = "dashmap" 317 | version = "5.5.3" 318 | source = "registry+https://github.com/rust-lang/crates.io-index" 319 | checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" 320 | dependencies = [ 321 | "cfg-if", 322 | "hashbrown 0.14.2", 323 | "lock_api", 324 | "once_cell", 325 | "parking_lot_core", 326 | "serde", 327 | ] 328 | 329 | [[package]] 330 | name = "debugid" 331 | version = "0.8.0" 332 | source = "registry+https://github.com/rust-lang/crates.io-index" 333 | checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d" 334 | dependencies = [ 335 | "serde", 336 | "uuid 1.5.0", 337 | ] 338 | 339 | [[package]] 340 | name = "deranged" 341 | version = "0.3.9" 342 | source = "registry+https://github.com/rust-lang/crates.io-index" 343 | checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3" 344 | dependencies = [ 345 | "powerfmt", 346 | "serde", 347 | ] 348 | 349 | [[package]] 350 | name = "derivative" 351 | version = "2.2.0" 352 | source = "registry+https://github.com/rust-lang/crates.io-index" 353 | checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b" 354 | dependencies = [ 355 | "proc-macro2", 356 | "quote", 357 | "syn 1.0.109", 358 | ] 359 | 360 | [[package]] 361 | name = "derive_more" 362 | version = "0.99.17" 363 | source = "registry+https://github.com/rust-lang/crates.io-index" 364 | checksum = "4fb810d30a7c1953f91334de7244731fc3f3c10d7fe163338a35b9f640960321" 365 | dependencies = [ 366 | "convert_case", 367 | "proc-macro2", 368 | "quote", 369 | "rustc_version", 370 | "syn 1.0.109", 371 | ] 372 | 373 | [[package]] 374 | name = "digest" 375 | version = "0.10.7" 376 | source = "registry+https://github.com/rust-lang/crates.io-index" 377 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" 378 | dependencies = [ 379 | "block-buffer", 380 | "crypto-common", 381 | ] 382 | 383 | [[package]] 384 | name = "discord-md" 385 | version = "3.0.0" 386 | source = "registry+https://github.com/rust-lang/crates.io-index" 387 | checksum = "bf734867cf313d9ffed7677af003ce6779ce77a80d4f8a9101959c97df3ef96b" 388 | dependencies = [ 389 | "derive_more", 390 | "nom", 391 | ] 392 | 393 | [[package]] 394 | name = "discortp" 395 | version = "0.4.0" 396 | source = "registry+https://github.com/rust-lang/crates.io-index" 397 | checksum = "fb66017646a48220b5ea30d63ac18bb5952f647f1a41ed755880895125d26972" 398 | dependencies = [ 399 | "pnet_macros", 400 | "pnet_macros_support", 401 | ] 402 | 403 | [[package]] 404 | name = "ecs-logger" 405 | version = "1.1.0" 406 | source = "registry+https://github.com/rust-lang/crates.io-index" 407 | checksum = "64e5afecb521e3e32aa50153f4e2940a123ee8e70a67e41951af235a98564d11" 408 | dependencies = [ 409 | "chrono", 410 | "env_logger", 411 | "log", 412 | "serde", 413 | "serde_json", 414 | "thiserror", 415 | ] 416 | 417 | [[package]] 418 | name = "encoding_rs" 419 | version = "0.8.33" 420 | source = "registry+https://github.com/rust-lang/crates.io-index" 421 | checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1" 422 | dependencies = [ 423 | "cfg-if", 424 | ] 425 | 426 | [[package]] 427 | name = "enum_primitive" 428 | version = "0.1.1" 429 | source = "registry+https://github.com/rust-lang/crates.io-index" 430 | checksum = "be4551092f4d519593039259a9ed8daedf0da12e5109c5280338073eaeb81180" 431 | dependencies = [ 432 | "num-traits 0.1.43", 433 | ] 434 | 435 | [[package]] 436 | name = "env_logger" 437 | version = "0.10.1" 438 | source = "registry+https://github.com/rust-lang/crates.io-index" 439 | checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece" 440 | dependencies = [ 441 | "log", 442 | ] 443 | 444 | [[package]] 445 | name = "equivalent" 446 | version = "1.0.1" 447 | source = "registry+https://github.com/rust-lang/crates.io-index" 448 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" 449 | 450 | [[package]] 451 | name = "errno" 452 | version = "0.3.6" 453 | source = "registry+https://github.com/rust-lang/crates.io-index" 454 | checksum = "7c18ee0ed65a5f1f81cac6b1d213b69c35fa47d4252ad41f1486dbd8226fe36e" 455 | dependencies = [ 456 | "libc", 457 | "windows-sys", 458 | ] 459 | 460 | [[package]] 461 | name = "fastrand" 462 | version = "2.0.1" 463 | source = "registry+https://github.com/rust-lang/crates.io-index" 464 | checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" 465 | 466 | [[package]] 467 | name = "findshlibs" 468 | version = "0.10.2" 469 | source = "registry+https://github.com/rust-lang/crates.io-index" 470 | checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64" 471 | dependencies = [ 472 | "cc", 473 | "lazy_static", 474 | "libc", 475 | "winapi", 476 | ] 477 | 478 | [[package]] 479 | name = "flate2" 480 | version = "1.0.28" 481 | source = "registry+https://github.com/rust-lang/crates.io-index" 482 | checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e" 483 | dependencies = [ 484 | "crc32fast", 485 | "miniz_oxide", 486 | ] 487 | 488 | [[package]] 489 | name = "flume" 490 | version = "0.10.14" 491 | source = "registry+https://github.com/rust-lang/crates.io-index" 492 | checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577" 493 | dependencies = [ 494 | "futures-core", 495 | "futures-sink", 496 | "nanorand", 497 | "pin-project", 498 | "spin", 499 | ] 500 | 501 | [[package]] 502 | name = "fnv" 503 | version = "1.0.7" 504 | source = "registry+https://github.com/rust-lang/crates.io-index" 505 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" 506 | 507 | [[package]] 508 | name = "foreign-types" 509 | version = "0.3.2" 510 | source = "registry+https://github.com/rust-lang/crates.io-index" 511 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" 512 | dependencies = [ 513 | "foreign-types-shared", 514 | ] 515 | 516 | [[package]] 517 | name = "foreign-types-shared" 518 | version = "0.1.1" 519 | source = "registry+https://github.com/rust-lang/crates.io-index" 520 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" 521 | 522 | [[package]] 523 | name = "form_urlencoded" 524 | version = "1.2.0" 525 | source = "registry+https://github.com/rust-lang/crates.io-index" 526 | checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652" 527 | dependencies = [ 528 | "percent-encoding", 529 | ] 530 | 531 | [[package]] 532 | name = "futures" 533 | version = "0.3.29" 534 | source = "registry+https://github.com/rust-lang/crates.io-index" 535 | checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 536 | dependencies = [ 537 | "futures-channel", 538 | "futures-core", 539 | "futures-executor", 540 | "futures-io", 541 | "futures-sink", 542 | "futures-task", 543 | "futures-util", 544 | ] 545 | 546 | [[package]] 547 | name = "futures-channel" 548 | version = "0.3.29" 549 | source = "registry+https://github.com/rust-lang/crates.io-index" 550 | checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 551 | dependencies = [ 552 | "futures-core", 553 | "futures-sink", 554 | ] 555 | 556 | [[package]] 557 | name = "futures-core" 558 | version = "0.3.29" 559 | source = "registry+https://github.com/rust-lang/crates.io-index" 560 | checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 561 | 562 | [[package]] 563 | name = "futures-executor" 564 | version = "0.3.29" 565 | source = "registry+https://github.com/rust-lang/crates.io-index" 566 | checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 567 | dependencies = [ 568 | "futures-core", 569 | "futures-task", 570 | "futures-util", 571 | ] 572 | 573 | [[package]] 574 | name = "futures-io" 575 | version = "0.3.29" 576 | source = "registry+https://github.com/rust-lang/crates.io-index" 577 | checksum = "8bf34a163b5c4c52d0478a4d757da8fb65cabef42ba90515efee0f6f9fa45aaa" 578 | 579 | [[package]] 580 | name = "futures-macro" 581 | version = "0.3.29" 582 | source = "registry+https://github.com/rust-lang/crates.io-index" 583 | checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 584 | dependencies = [ 585 | "proc-macro2", 586 | "quote", 587 | "syn 2.0.48", 588 | ] 589 | 590 | [[package]] 591 | name = "futures-sink" 592 | version = "0.3.29" 593 | source = "registry+https://github.com/rust-lang/crates.io-index" 594 | checksum = "e36d3378ee38c2a36ad710c5d30c2911d752cb941c00c72dbabfb786a7970817" 595 | 596 | [[package]] 597 | name = "futures-task" 598 | version = "0.3.29" 599 | source = "registry+https://github.com/rust-lang/crates.io-index" 600 | checksum = "efd193069b0ddadc69c46389b740bbccdd97203899b48d09c5f7969591d6bae2" 601 | 602 | [[package]] 603 | name = "futures-util" 604 | version = "0.3.29" 605 | source = "registry+https://github.com/rust-lang/crates.io-index" 606 | checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 607 | dependencies = [ 608 | "futures-channel", 609 | "futures-core", 610 | "futures-io", 611 | "futures-macro", 612 | "futures-sink", 613 | "futures-task", 614 | "memchr", 615 | "pin-project-lite", 616 | "pin-utils", 617 | "slab", 618 | ] 619 | 620 | [[package]] 621 | name = "generator" 622 | version = "0.7.5" 623 | source = "registry+https://github.com/rust-lang/crates.io-index" 624 | checksum = "5cc16584ff22b460a382b7feec54b23d2908d858152e5739a120b949293bd74e" 625 | dependencies = [ 626 | "cc", 627 | "libc", 628 | "log", 629 | "rustversion", 630 | "windows", 631 | ] 632 | 633 | [[package]] 634 | name = "generic-array" 635 | version = "0.14.7" 636 | source = "registry+https://github.com/rust-lang/crates.io-index" 637 | checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" 638 | dependencies = [ 639 | "typenum", 640 | "version_check", 641 | ] 642 | 643 | [[package]] 644 | name = "getrandom" 645 | version = "0.2.11" 646 | source = "registry+https://github.com/rust-lang/crates.io-index" 647 | checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" 648 | dependencies = [ 649 | "cfg-if", 650 | "js-sys", 651 | "libc", 652 | "wasi", 653 | "wasm-bindgen", 654 | ] 655 | 656 | [[package]] 657 | name = "gimli" 658 | version = "0.28.0" 659 | source = "registry+https://github.com/rust-lang/crates.io-index" 660 | checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0" 661 | 662 | [[package]] 663 | name = "h2" 664 | version = "0.3.21" 665 | source = "registry+https://github.com/rust-lang/crates.io-index" 666 | checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833" 667 | dependencies = [ 668 | "bytes", 669 | "fnv", 670 | "futures-core", 671 | "futures-sink", 672 | "futures-util", 673 | "http", 674 | "indexmap 1.9.3", 675 | "slab", 676 | "tokio", 677 | "tokio-util", 678 | "tracing", 679 | ] 680 | 681 | [[package]] 682 | name = "hashbrown" 683 | version = "0.12.3" 684 | source = "registry+https://github.com/rust-lang/crates.io-index" 685 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" 686 | 687 | [[package]] 688 | name = "hashbrown" 689 | version = "0.14.2" 690 | source = "registry+https://github.com/rust-lang/crates.io-index" 691 | checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156" 692 | 693 | [[package]] 694 | name = "hermit-abi" 695 | version = "0.3.3" 696 | source = "registry+https://github.com/rust-lang/crates.io-index" 697 | checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" 698 | 699 | [[package]] 700 | name = "hex" 701 | version = "0.4.3" 702 | source = "registry+https://github.com/rust-lang/crates.io-index" 703 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" 704 | 705 | [[package]] 706 | name = "hostname" 707 | version = "0.3.1" 708 | source = "registry+https://github.com/rust-lang/crates.io-index" 709 | checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867" 710 | dependencies = [ 711 | "libc", 712 | "match_cfg", 713 | "winapi", 714 | ] 715 | 716 | [[package]] 717 | name = "http" 718 | version = "0.2.10" 719 | source = "registry+https://github.com/rust-lang/crates.io-index" 720 | checksum = "f95b9abcae896730d42b78e09c155ed4ddf82c07b4de772c64aee5b2d8b7c150" 721 | dependencies = [ 722 | "bytes", 723 | "fnv", 724 | "itoa", 725 | ] 726 | 727 | [[package]] 728 | name = "http-body" 729 | version = "0.4.5" 730 | source = "registry+https://github.com/rust-lang/crates.io-index" 731 | checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" 732 | dependencies = [ 733 | "bytes", 734 | "http", 735 | "pin-project-lite", 736 | ] 737 | 738 | [[package]] 739 | name = "httparse" 740 | version = "1.8.0" 741 | source = "registry+https://github.com/rust-lang/crates.io-index" 742 | checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" 743 | 744 | [[package]] 745 | name = "httpdate" 746 | version = "1.0.3" 747 | source = "registry+https://github.com/rust-lang/crates.io-index" 748 | checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" 749 | 750 | [[package]] 751 | name = "hyper" 752 | version = "0.14.27" 753 | source = "registry+https://github.com/rust-lang/crates.io-index" 754 | checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" 755 | dependencies = [ 756 | "bytes", 757 | "futures-channel", 758 | "futures-core", 759 | "futures-util", 760 | "h2", 761 | "http", 762 | "http-body", 763 | "httparse", 764 | "httpdate", 765 | "itoa", 766 | "pin-project-lite", 767 | "socket2 0.4.10", 768 | "tokio", 769 | "tower-service", 770 | "tracing", 771 | "want", 772 | ] 773 | 774 | [[package]] 775 | name = "hyper-tls" 776 | version = "0.5.0" 777 | source = "registry+https://github.com/rust-lang/crates.io-index" 778 | checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905" 779 | dependencies = [ 780 | "bytes", 781 | "hyper", 782 | "native-tls", 783 | "tokio", 784 | "tokio-native-tls", 785 | ] 786 | 787 | [[package]] 788 | name = "iana-time-zone" 789 | version = "0.1.58" 790 | source = "registry+https://github.com/rust-lang/crates.io-index" 791 | checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" 792 | dependencies = [ 793 | "android_system_properties", 794 | "core-foundation-sys", 795 | "iana-time-zone-haiku", 796 | "js-sys", 797 | "wasm-bindgen", 798 | "windows-core", 799 | ] 800 | 801 | [[package]] 802 | name = "iana-time-zone-haiku" 803 | version = "0.1.2" 804 | source = "registry+https://github.com/rust-lang/crates.io-index" 805 | checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" 806 | dependencies = [ 807 | "cc", 808 | ] 809 | 810 | [[package]] 811 | name = "idna" 812 | version = "0.4.0" 813 | source = "registry+https://github.com/rust-lang/crates.io-index" 814 | checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" 815 | dependencies = [ 816 | "unicode-bidi", 817 | "unicode-normalization", 818 | ] 819 | 820 | [[package]] 821 | name = "indexmap" 822 | version = "1.9.3" 823 | source = "registry+https://github.com/rust-lang/crates.io-index" 824 | checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" 825 | dependencies = [ 826 | "autocfg", 827 | "hashbrown 0.12.3", 828 | ] 829 | 830 | [[package]] 831 | name = "indexmap" 832 | version = "2.1.0" 833 | source = "registry+https://github.com/rust-lang/crates.io-index" 834 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" 835 | dependencies = [ 836 | "equivalent", 837 | "hashbrown 0.14.2", 838 | ] 839 | 840 | [[package]] 841 | name = "ipnet" 842 | version = "2.9.0" 843 | source = "registry+https://github.com/rust-lang/crates.io-index" 844 | checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3" 845 | 846 | [[package]] 847 | name = "itoa" 848 | version = "1.0.9" 849 | source = "registry+https://github.com/rust-lang/crates.io-index" 850 | checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" 851 | 852 | [[package]] 853 | name = "js-sys" 854 | version = "0.3.65" 855 | source = "registry+https://github.com/rust-lang/crates.io-index" 856 | checksum = "54c0c35952f67de54bb584e9fd912b3023117cbafc0a77d8f3dee1fb5f572fe8" 857 | dependencies = [ 858 | "wasm-bindgen", 859 | ] 860 | 861 | [[package]] 862 | name = "koe" 863 | version = "0.1.0" 864 | dependencies = [ 865 | "aho-corasick", 866 | "anyhow", 867 | "dashmap", 868 | "discord-md", 869 | "ecs-logger", 870 | "koe-audio", 871 | "koe-call", 872 | "koe-config", 873 | "koe-db", 874 | "koe-speech", 875 | "log", 876 | "once_cell", 877 | "rand", 878 | "regex", 879 | "sentry", 880 | "serenity", 881 | "songbird", 882 | "tokio", 883 | ] 884 | 885 | [[package]] 886 | name = "koe-audio" 887 | version = "0.1.0" 888 | dependencies = [ 889 | "anyhow", 890 | "log", 891 | "tokio", 892 | ] 893 | 894 | [[package]] 895 | name = "koe-call" 896 | version = "0.1.0" 897 | dependencies = [ 898 | "anyhow", 899 | "serenity", 900 | "songbird", 901 | "tokio", 902 | ] 903 | 904 | [[package]] 905 | name = "koe-config" 906 | version = "0.1.0" 907 | dependencies = [ 908 | "anyhow", 909 | "serde", 910 | "serde_yaml", 911 | "tokio", 912 | ] 913 | 914 | [[package]] 915 | name = "koe-db" 916 | version = "0.1.0" 917 | dependencies = [ 918 | "anyhow", 919 | "redis", 920 | ] 921 | 922 | [[package]] 923 | name = "koe-speech" 924 | version = "0.1.0" 925 | dependencies = [ 926 | "anyhow", 927 | "koe-audio", 928 | "reqwest", 929 | "serde", 930 | ] 931 | 932 | [[package]] 933 | name = "lazy_static" 934 | version = "1.4.0" 935 | source = "registry+https://github.com/rust-lang/crates.io-index" 936 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" 937 | 938 | [[package]] 939 | name = "libc" 940 | version = "0.2.150" 941 | source = "registry+https://github.com/rust-lang/crates.io-index" 942 | checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" 943 | 944 | [[package]] 945 | name = "linux-raw-sys" 946 | version = "0.4.11" 947 | source = "registry+https://github.com/rust-lang/crates.io-index" 948 | checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829" 949 | 950 | [[package]] 951 | name = "lock_api" 952 | version = "0.4.11" 953 | source = "registry+https://github.com/rust-lang/crates.io-index" 954 | checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" 955 | dependencies = [ 956 | "autocfg", 957 | "scopeguard", 958 | ] 959 | 960 | [[package]] 961 | name = "log" 962 | version = "0.4.20" 963 | source = "registry+https://github.com/rust-lang/crates.io-index" 964 | checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" 965 | 966 | [[package]] 967 | name = "loom" 968 | version = "0.5.6" 969 | source = "registry+https://github.com/rust-lang/crates.io-index" 970 | checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" 971 | dependencies = [ 972 | "cfg-if", 973 | "generator", 974 | "scoped-tls", 975 | "serde", 976 | "serde_json", 977 | "tracing", 978 | "tracing-subscriber", 979 | ] 980 | 981 | [[package]] 982 | name = "match_cfg" 983 | version = "0.1.0" 984 | source = "registry+https://github.com/rust-lang/crates.io-index" 985 | checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4" 986 | 987 | [[package]] 988 | name = "matchers" 989 | version = "0.1.0" 990 | source = "registry+https://github.com/rust-lang/crates.io-index" 991 | checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" 992 | dependencies = [ 993 | "regex-automata 0.1.10", 994 | ] 995 | 996 | [[package]] 997 | name = "memchr" 998 | version = "2.6.4" 999 | source = "registry+https://github.com/rust-lang/crates.io-index" 1000 | checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" 1001 | 1002 | [[package]] 1003 | name = "mime" 1004 | version = "0.3.17" 1005 | source = "registry+https://github.com/rust-lang/crates.io-index" 1006 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1007 | 1008 | [[package]] 1009 | name = "mime_guess" 1010 | version = "2.0.4" 1011 | source = "registry+https://github.com/rust-lang/crates.io-index" 1012 | checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef" 1013 | dependencies = [ 1014 | "mime", 1015 | "unicase", 1016 | ] 1017 | 1018 | [[package]] 1019 | name = "minimal-lexical" 1020 | version = "0.2.1" 1021 | source = "registry+https://github.com/rust-lang/crates.io-index" 1022 | checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" 1023 | 1024 | [[package]] 1025 | name = "miniz_oxide" 1026 | version = "0.7.1" 1027 | source = "registry+https://github.com/rust-lang/crates.io-index" 1028 | checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7" 1029 | dependencies = [ 1030 | "adler", 1031 | ] 1032 | 1033 | [[package]] 1034 | name = "mio" 1035 | version = "0.8.9" 1036 | source = "registry+https://github.com/rust-lang/crates.io-index" 1037 | checksum = "3dce281c5e46beae905d4de1870d8b1509a9142b62eedf18b443b011ca8343d0" 1038 | dependencies = [ 1039 | "libc", 1040 | "wasi", 1041 | "windows-sys", 1042 | ] 1043 | 1044 | [[package]] 1045 | name = "nanorand" 1046 | version = "0.7.0" 1047 | source = "registry+https://github.com/rust-lang/crates.io-index" 1048 | checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3" 1049 | dependencies = [ 1050 | "getrandom", 1051 | ] 1052 | 1053 | [[package]] 1054 | name = "native-tls" 1055 | version = "0.2.11" 1056 | source = "registry+https://github.com/rust-lang/crates.io-index" 1057 | checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" 1058 | dependencies = [ 1059 | "lazy_static", 1060 | "libc", 1061 | "log", 1062 | "openssl", 1063 | "openssl-probe", 1064 | "openssl-sys", 1065 | "schannel", 1066 | "security-framework", 1067 | "security-framework-sys", 1068 | "tempfile", 1069 | ] 1070 | 1071 | [[package]] 1072 | name = "nom" 1073 | version = "7.1.3" 1074 | source = "registry+https://github.com/rust-lang/crates.io-index" 1075 | checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a" 1076 | dependencies = [ 1077 | "memchr", 1078 | "minimal-lexical", 1079 | ] 1080 | 1081 | [[package]] 1082 | name = "nu-ansi-term" 1083 | version = "0.46.0" 1084 | source = "registry+https://github.com/rust-lang/crates.io-index" 1085 | checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" 1086 | dependencies = [ 1087 | "overload", 1088 | "winapi", 1089 | ] 1090 | 1091 | [[package]] 1092 | name = "num-traits" 1093 | version = "0.1.43" 1094 | source = "registry+https://github.com/rust-lang/crates.io-index" 1095 | checksum = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" 1096 | dependencies = [ 1097 | "num-traits 0.2.17", 1098 | ] 1099 | 1100 | [[package]] 1101 | name = "num-traits" 1102 | version = "0.2.17" 1103 | source = "registry+https://github.com/rust-lang/crates.io-index" 1104 | checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" 1105 | dependencies = [ 1106 | "autocfg", 1107 | ] 1108 | 1109 | [[package]] 1110 | name = "num_cpus" 1111 | version = "1.16.0" 1112 | source = "registry+https://github.com/rust-lang/crates.io-index" 1113 | checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43" 1114 | dependencies = [ 1115 | "hermit-abi", 1116 | "libc", 1117 | ] 1118 | 1119 | [[package]] 1120 | name = "object" 1121 | version = "0.32.1" 1122 | source = "registry+https://github.com/rust-lang/crates.io-index" 1123 | checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0" 1124 | dependencies = [ 1125 | "memchr", 1126 | ] 1127 | 1128 | [[package]] 1129 | name = "once_cell" 1130 | version = "1.19.0" 1131 | source = "registry+https://github.com/rust-lang/crates.io-index" 1132 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 1133 | 1134 | [[package]] 1135 | name = "opaque-debug" 1136 | version = "0.3.0" 1137 | source = "registry+https://github.com/rust-lang/crates.io-index" 1138 | checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5" 1139 | 1140 | [[package]] 1141 | name = "openssl" 1142 | version = "0.10.59" 1143 | source = "registry+https://github.com/rust-lang/crates.io-index" 1144 | checksum = "7a257ad03cd8fb16ad4172fedf8094451e1af1c4b70097636ef2eac9a5f0cc33" 1145 | dependencies = [ 1146 | "bitflags 2.4.1", 1147 | "cfg-if", 1148 | "foreign-types", 1149 | "libc", 1150 | "once_cell", 1151 | "openssl-macros", 1152 | "openssl-sys", 1153 | ] 1154 | 1155 | [[package]] 1156 | name = "openssl-macros" 1157 | version = "0.1.1" 1158 | source = "registry+https://github.com/rust-lang/crates.io-index" 1159 | checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" 1160 | dependencies = [ 1161 | "proc-macro2", 1162 | "quote", 1163 | "syn 2.0.48", 1164 | ] 1165 | 1166 | [[package]] 1167 | name = "openssl-probe" 1168 | version = "0.1.5" 1169 | source = "registry+https://github.com/rust-lang/crates.io-index" 1170 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" 1171 | 1172 | [[package]] 1173 | name = "openssl-sys" 1174 | version = "0.9.95" 1175 | source = "registry+https://github.com/rust-lang/crates.io-index" 1176 | checksum = "40a4130519a360279579c2053038317e40eff64d13fd3f004f9e1b72b8a6aaf9" 1177 | dependencies = [ 1178 | "cc", 1179 | "libc", 1180 | "pkg-config", 1181 | "vcpkg", 1182 | ] 1183 | 1184 | [[package]] 1185 | name = "ordered-float" 1186 | version = "2.10.1" 1187 | source = "registry+https://github.com/rust-lang/crates.io-index" 1188 | checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c" 1189 | dependencies = [ 1190 | "num-traits 0.2.17", 1191 | ] 1192 | 1193 | [[package]] 1194 | name = "os_info" 1195 | version = "3.7.0" 1196 | source = "registry+https://github.com/rust-lang/crates.io-index" 1197 | checksum = "006e42d5b888366f1880eda20371fedde764ed2213dc8496f49622fa0c99cd5e" 1198 | dependencies = [ 1199 | "log", 1200 | "serde", 1201 | "winapi", 1202 | ] 1203 | 1204 | [[package]] 1205 | name = "overload" 1206 | version = "0.1.1" 1207 | source = "registry+https://github.com/rust-lang/crates.io-index" 1208 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" 1209 | 1210 | [[package]] 1211 | name = "parking_lot" 1212 | version = "0.12.1" 1213 | source = "registry+https://github.com/rust-lang/crates.io-index" 1214 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" 1215 | dependencies = [ 1216 | "lock_api", 1217 | "parking_lot_core", 1218 | ] 1219 | 1220 | [[package]] 1221 | name = "parking_lot_core" 1222 | version = "0.9.9" 1223 | source = "registry+https://github.com/rust-lang/crates.io-index" 1224 | checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" 1225 | dependencies = [ 1226 | "cfg-if", 1227 | "libc", 1228 | "redox_syscall", 1229 | "smallvec", 1230 | "windows-targets", 1231 | ] 1232 | 1233 | [[package]] 1234 | name = "percent-encoding" 1235 | version = "2.3.0" 1236 | source = "registry+https://github.com/rust-lang/crates.io-index" 1237 | checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94" 1238 | 1239 | [[package]] 1240 | name = "pin-project" 1241 | version = "1.1.3" 1242 | source = "registry+https://github.com/rust-lang/crates.io-index" 1243 | checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422" 1244 | dependencies = [ 1245 | "pin-project-internal", 1246 | ] 1247 | 1248 | [[package]] 1249 | name = "pin-project-internal" 1250 | version = "1.1.3" 1251 | source = "registry+https://github.com/rust-lang/crates.io-index" 1252 | checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" 1253 | dependencies = [ 1254 | "proc-macro2", 1255 | "quote", 1256 | "syn 2.0.48", 1257 | ] 1258 | 1259 | [[package]] 1260 | name = "pin-project-lite" 1261 | version = "0.2.13" 1262 | source = "registry+https://github.com/rust-lang/crates.io-index" 1263 | checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58" 1264 | 1265 | [[package]] 1266 | name = "pin-utils" 1267 | version = "0.1.0" 1268 | source = "registry+https://github.com/rust-lang/crates.io-index" 1269 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" 1270 | 1271 | [[package]] 1272 | name = "pkg-config" 1273 | version = "0.3.27" 1274 | source = "registry+https://github.com/rust-lang/crates.io-index" 1275 | checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" 1276 | 1277 | [[package]] 1278 | name = "pnet_base" 1279 | version = "0.28.0" 1280 | source = "registry+https://github.com/rust-lang/crates.io-index" 1281 | checksum = "25488cd551a753dcaaa6fffc9f69a7610a412dd8954425bf7ffad5f7d1156fb8" 1282 | 1283 | [[package]] 1284 | name = "pnet_macros" 1285 | version = "0.28.0" 1286 | source = "registry+https://github.com/rust-lang/crates.io-index" 1287 | checksum = "30490e0852e58402b8fae0d39897b08a24f493023a4d6cf56b2e30f31ed57548" 1288 | dependencies = [ 1289 | "proc-macro2", 1290 | "quote", 1291 | "regex", 1292 | "syn 1.0.109", 1293 | ] 1294 | 1295 | [[package]] 1296 | name = "pnet_macros_support" 1297 | version = "0.28.0" 1298 | source = "registry+https://github.com/rust-lang/crates.io-index" 1299 | checksum = "d4714e10f30cab023005adce048f2d30dd4ac4f093662abf2220855655ef8f90" 1300 | dependencies = [ 1301 | "pnet_base", 1302 | ] 1303 | 1304 | [[package]] 1305 | name = "poly1305" 1306 | version = "0.7.2" 1307 | source = "registry+https://github.com/rust-lang/crates.io-index" 1308 | checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede" 1309 | dependencies = [ 1310 | "cpufeatures", 1311 | "opaque-debug", 1312 | "universal-hash", 1313 | ] 1314 | 1315 | [[package]] 1316 | name = "powerfmt" 1317 | version = "0.2.0" 1318 | source = "registry+https://github.com/rust-lang/crates.io-index" 1319 | checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" 1320 | 1321 | [[package]] 1322 | name = "ppv-lite86" 1323 | version = "0.2.17" 1324 | source = "registry+https://github.com/rust-lang/crates.io-index" 1325 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" 1326 | 1327 | [[package]] 1328 | name = "proc-macro2" 1329 | version = "1.0.75" 1330 | source = "registry+https://github.com/rust-lang/crates.io-index" 1331 | checksum = "907a61bd0f64c2f29cd1cf1dc34d05176426a3f504a78010f08416ddb7b13708" 1332 | dependencies = [ 1333 | "unicode-ident", 1334 | ] 1335 | 1336 | [[package]] 1337 | name = "quote" 1338 | version = "1.0.35" 1339 | source = "registry+https://github.com/rust-lang/crates.io-index" 1340 | checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" 1341 | dependencies = [ 1342 | "proc-macro2", 1343 | ] 1344 | 1345 | [[package]] 1346 | name = "rand" 1347 | version = "0.8.5" 1348 | source = "registry+https://github.com/rust-lang/crates.io-index" 1349 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" 1350 | dependencies = [ 1351 | "libc", 1352 | "rand_chacha", 1353 | "rand_core", 1354 | ] 1355 | 1356 | [[package]] 1357 | name = "rand_chacha" 1358 | version = "0.3.1" 1359 | source = "registry+https://github.com/rust-lang/crates.io-index" 1360 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" 1361 | dependencies = [ 1362 | "ppv-lite86", 1363 | "rand_core", 1364 | ] 1365 | 1366 | [[package]] 1367 | name = "rand_core" 1368 | version = "0.6.4" 1369 | source = "registry+https://github.com/rust-lang/crates.io-index" 1370 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" 1371 | dependencies = [ 1372 | "getrandom", 1373 | ] 1374 | 1375 | [[package]] 1376 | name = "redis" 1377 | version = "0.23.3" 1378 | source = "registry+https://github.com/rust-lang/crates.io-index" 1379 | checksum = "4f49cdc0bb3f412bf8e7d1bd90fe1d9eb10bc5c399ba90973c14662a27b3f8ba" 1380 | dependencies = [ 1381 | "async-trait", 1382 | "bytes", 1383 | "combine", 1384 | "futures-util", 1385 | "itoa", 1386 | "percent-encoding", 1387 | "pin-project-lite", 1388 | "ryu", 1389 | "tokio", 1390 | "tokio-util", 1391 | "url", 1392 | ] 1393 | 1394 | [[package]] 1395 | name = "redox_syscall" 1396 | version = "0.4.1" 1397 | source = "registry+https://github.com/rust-lang/crates.io-index" 1398 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" 1399 | dependencies = [ 1400 | "bitflags 1.3.2", 1401 | ] 1402 | 1403 | [[package]] 1404 | name = "regex" 1405 | version = "1.10.4" 1406 | source = "registry+https://github.com/rust-lang/crates.io-index" 1407 | checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c" 1408 | dependencies = [ 1409 | "aho-corasick", 1410 | "memchr", 1411 | "regex-automata 0.4.5", 1412 | "regex-syntax 0.8.2", 1413 | ] 1414 | 1415 | [[package]] 1416 | name = "regex-automata" 1417 | version = "0.1.10" 1418 | source = "registry+https://github.com/rust-lang/crates.io-index" 1419 | checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" 1420 | dependencies = [ 1421 | "regex-syntax 0.6.29", 1422 | ] 1423 | 1424 | [[package]] 1425 | name = "regex-automata" 1426 | version = "0.4.5" 1427 | source = "registry+https://github.com/rust-lang/crates.io-index" 1428 | checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" 1429 | dependencies = [ 1430 | "aho-corasick", 1431 | "memchr", 1432 | "regex-syntax 0.8.2", 1433 | ] 1434 | 1435 | [[package]] 1436 | name = "regex-syntax" 1437 | version = "0.6.29" 1438 | source = "registry+https://github.com/rust-lang/crates.io-index" 1439 | checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1" 1440 | 1441 | [[package]] 1442 | name = "regex-syntax" 1443 | version = "0.8.2" 1444 | source = "registry+https://github.com/rust-lang/crates.io-index" 1445 | checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" 1446 | 1447 | [[package]] 1448 | name = "reqwest" 1449 | version = "0.11.22" 1450 | source = "registry+https://github.com/rust-lang/crates.io-index" 1451 | checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b" 1452 | dependencies = [ 1453 | "base64 0.21.5", 1454 | "bytes", 1455 | "encoding_rs", 1456 | "futures-core", 1457 | "futures-util", 1458 | "h2", 1459 | "http", 1460 | "http-body", 1461 | "hyper", 1462 | "hyper-tls", 1463 | "ipnet", 1464 | "js-sys", 1465 | "log", 1466 | "mime", 1467 | "mime_guess", 1468 | "native-tls", 1469 | "once_cell", 1470 | "percent-encoding", 1471 | "pin-project-lite", 1472 | "serde", 1473 | "serde_json", 1474 | "serde_urlencoded", 1475 | "system-configuration", 1476 | "tokio", 1477 | "tokio-native-tls", 1478 | "tokio-util", 1479 | "tower-service", 1480 | "url", 1481 | "wasm-bindgen", 1482 | "wasm-bindgen-futures", 1483 | "wasm-streams", 1484 | "web-sys", 1485 | "winreg", 1486 | ] 1487 | 1488 | [[package]] 1489 | name = "rustc-demangle" 1490 | version = "0.1.23" 1491 | source = "registry+https://github.com/rust-lang/crates.io-index" 1492 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" 1493 | 1494 | [[package]] 1495 | name = "rustc_version" 1496 | version = "0.4.0" 1497 | source = "registry+https://github.com/rust-lang/crates.io-index" 1498 | checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" 1499 | dependencies = [ 1500 | "semver", 1501 | ] 1502 | 1503 | [[package]] 1504 | name = "rustix" 1505 | version = "0.38.21" 1506 | source = "registry+https://github.com/rust-lang/crates.io-index" 1507 | checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3" 1508 | dependencies = [ 1509 | "bitflags 2.4.1", 1510 | "errno", 1511 | "libc", 1512 | "linux-raw-sys", 1513 | "windows-sys", 1514 | ] 1515 | 1516 | [[package]] 1517 | name = "rustversion" 1518 | version = "1.0.14" 1519 | source = "registry+https://github.com/rust-lang/crates.io-index" 1520 | checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4" 1521 | 1522 | [[package]] 1523 | name = "ryu" 1524 | version = "1.0.15" 1525 | source = "registry+https://github.com/rust-lang/crates.io-index" 1526 | checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" 1527 | 1528 | [[package]] 1529 | name = "salsa20" 1530 | version = "0.9.0" 1531 | source = "registry+https://github.com/rust-lang/crates.io-index" 1532 | checksum = "0c0fbb5f676da676c260ba276a8f43a8dc67cf02d1438423aeb1c677a7212686" 1533 | dependencies = [ 1534 | "cipher", 1535 | "zeroize", 1536 | ] 1537 | 1538 | [[package]] 1539 | name = "schannel" 1540 | version = "0.1.22" 1541 | source = "registry+https://github.com/rust-lang/crates.io-index" 1542 | checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88" 1543 | dependencies = [ 1544 | "windows-sys", 1545 | ] 1546 | 1547 | [[package]] 1548 | name = "scoped-tls" 1549 | version = "1.0.1" 1550 | source = "registry+https://github.com/rust-lang/crates.io-index" 1551 | checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" 1552 | 1553 | [[package]] 1554 | name = "scopeguard" 1555 | version = "1.2.0" 1556 | source = "registry+https://github.com/rust-lang/crates.io-index" 1557 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 1558 | 1559 | [[package]] 1560 | name = "security-framework" 1561 | version = "2.9.2" 1562 | source = "registry+https://github.com/rust-lang/crates.io-index" 1563 | checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" 1564 | dependencies = [ 1565 | "bitflags 1.3.2", 1566 | "core-foundation", 1567 | "core-foundation-sys", 1568 | "libc", 1569 | "security-framework-sys", 1570 | ] 1571 | 1572 | [[package]] 1573 | name = "security-framework-sys" 1574 | version = "2.9.1" 1575 | source = "registry+https://github.com/rust-lang/crates.io-index" 1576 | checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a" 1577 | dependencies = [ 1578 | "core-foundation-sys", 1579 | "libc", 1580 | ] 1581 | 1582 | [[package]] 1583 | name = "semver" 1584 | version = "1.0.20" 1585 | source = "registry+https://github.com/rust-lang/crates.io-index" 1586 | checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090" 1587 | 1588 | [[package]] 1589 | name = "sentry" 1590 | version = "0.31.8" 1591 | source = "registry+https://github.com/rust-lang/crates.io-index" 1592 | checksum = "6ce4b57f1b521f674df7a1d200be8ff5d74e3712020ee25b553146657b5377d5" 1593 | dependencies = [ 1594 | "httpdate", 1595 | "native-tls", 1596 | "reqwest", 1597 | "sentry-anyhow", 1598 | "sentry-backtrace", 1599 | "sentry-contexts", 1600 | "sentry-core", 1601 | "sentry-debug-images", 1602 | "sentry-panic", 1603 | "sentry-tracing", 1604 | "tokio", 1605 | "ureq", 1606 | ] 1607 | 1608 | [[package]] 1609 | name = "sentry-anyhow" 1610 | version = "0.31.8" 1611 | source = "registry+https://github.com/rust-lang/crates.io-index" 1612 | checksum = "8868ca6e513f7a80b394b7e0f4b6071afeebb69e62b5e4aafe37b45e431fac8b" 1613 | dependencies = [ 1614 | "anyhow", 1615 | "sentry-backtrace", 1616 | "sentry-core", 1617 | ] 1618 | 1619 | [[package]] 1620 | name = "sentry-backtrace" 1621 | version = "0.31.8" 1622 | source = "registry+https://github.com/rust-lang/crates.io-index" 1623 | checksum = "58cc8d4e04a73de8f718dc703943666d03f25d3e9e4d0fb271ca0b8c76dfa00e" 1624 | dependencies = [ 1625 | "backtrace", 1626 | "once_cell", 1627 | "regex", 1628 | "sentry-core", 1629 | ] 1630 | 1631 | [[package]] 1632 | name = "sentry-contexts" 1633 | version = "0.31.8" 1634 | source = "registry+https://github.com/rust-lang/crates.io-index" 1635 | checksum = "6436c1bad22cdeb02179ea8ef116ffc217797c028927def303bc593d9320c0d1" 1636 | dependencies = [ 1637 | "hostname", 1638 | "libc", 1639 | "os_info", 1640 | "rustc_version", 1641 | "sentry-core", 1642 | "uname", 1643 | ] 1644 | 1645 | [[package]] 1646 | name = "sentry-core" 1647 | version = "0.31.8" 1648 | source = "registry+https://github.com/rust-lang/crates.io-index" 1649 | checksum = "901f761681f97db3db836ef9e094acdd8756c40215326c194201941947164ef1" 1650 | dependencies = [ 1651 | "once_cell", 1652 | "rand", 1653 | "sentry-types", 1654 | "serde", 1655 | "serde_json", 1656 | ] 1657 | 1658 | [[package]] 1659 | name = "sentry-debug-images" 1660 | version = "0.31.8" 1661 | source = "registry+https://github.com/rust-lang/crates.io-index" 1662 | checksum = "afdb263e73d22f39946f6022ed455b7561b22ff5553aca9be3c6a047fa39c328" 1663 | dependencies = [ 1664 | "findshlibs", 1665 | "once_cell", 1666 | "sentry-core", 1667 | ] 1668 | 1669 | [[package]] 1670 | name = "sentry-panic" 1671 | version = "0.31.8" 1672 | source = "registry+https://github.com/rust-lang/crates.io-index" 1673 | checksum = "74fbf1c163f8b6a9d05912e1b272afa27c652e8b47ea60cb9a57ad5e481eea99" 1674 | dependencies = [ 1675 | "sentry-backtrace", 1676 | "sentry-core", 1677 | ] 1678 | 1679 | [[package]] 1680 | name = "sentry-tracing" 1681 | version = "0.31.8" 1682 | source = "registry+https://github.com/rust-lang/crates.io-index" 1683 | checksum = "82eabcab0a047040befd44599a1da73d3adb228ff53b5ed9795ae04535577704" 1684 | dependencies = [ 1685 | "sentry-backtrace", 1686 | "sentry-core", 1687 | "tracing-core", 1688 | "tracing-subscriber", 1689 | ] 1690 | 1691 | [[package]] 1692 | name = "sentry-types" 1693 | version = "0.31.8" 1694 | source = "registry+https://github.com/rust-lang/crates.io-index" 1695 | checksum = "da956cca56e0101998c8688bc65ce1a96f00673a0e58e663664023d4c7911e82" 1696 | dependencies = [ 1697 | "debugid", 1698 | "hex", 1699 | "rand", 1700 | "serde", 1701 | "serde_json", 1702 | "thiserror", 1703 | "time", 1704 | "url", 1705 | "uuid 1.5.0", 1706 | ] 1707 | 1708 | [[package]] 1709 | name = "serde" 1710 | version = "1.0.203" 1711 | source = "registry+https://github.com/rust-lang/crates.io-index" 1712 | checksum = "7253ab4de971e72fb7be983802300c30b5a7f0c2e56fab8abfc6a214307c0094" 1713 | dependencies = [ 1714 | "serde_derive", 1715 | ] 1716 | 1717 | [[package]] 1718 | name = "serde-value" 1719 | version = "0.7.0" 1720 | source = "registry+https://github.com/rust-lang/crates.io-index" 1721 | checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c" 1722 | dependencies = [ 1723 | "ordered-float", 1724 | "serde", 1725 | ] 1726 | 1727 | [[package]] 1728 | name = "serde_derive" 1729 | version = "1.0.203" 1730 | source = "registry+https://github.com/rust-lang/crates.io-index" 1731 | checksum = "500cbc0ebeb6f46627f50f3f5811ccf6bf00643be300b4c3eabc0ef55dc5b5ba" 1732 | dependencies = [ 1733 | "proc-macro2", 1734 | "quote", 1735 | "syn 2.0.48", 1736 | ] 1737 | 1738 | [[package]] 1739 | name = "serde_json" 1740 | version = "1.0.108" 1741 | source = "registry+https://github.com/rust-lang/crates.io-index" 1742 | checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" 1743 | dependencies = [ 1744 | "indexmap 2.1.0", 1745 | "itoa", 1746 | "ryu", 1747 | "serde", 1748 | ] 1749 | 1750 | [[package]] 1751 | name = "serde_repr" 1752 | version = "0.1.17" 1753 | source = "registry+https://github.com/rust-lang/crates.io-index" 1754 | checksum = "3081f5ffbb02284dda55132aa26daecedd7372a42417bbbab6f14ab7d6bb9145" 1755 | dependencies = [ 1756 | "proc-macro2", 1757 | "quote", 1758 | "syn 2.0.48", 1759 | ] 1760 | 1761 | [[package]] 1762 | name = "serde_urlencoded" 1763 | version = "0.7.1" 1764 | source = "registry+https://github.com/rust-lang/crates.io-index" 1765 | checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" 1766 | dependencies = [ 1767 | "form_urlencoded", 1768 | "itoa", 1769 | "ryu", 1770 | "serde", 1771 | ] 1772 | 1773 | [[package]] 1774 | name = "serde_yaml" 1775 | version = "0.9.27" 1776 | source = "registry+https://github.com/rust-lang/crates.io-index" 1777 | checksum = "3cc7a1570e38322cfe4154732e5110f887ea57e22b76f4bfd32b5bdd3368666c" 1778 | dependencies = [ 1779 | "indexmap 2.1.0", 1780 | "itoa", 1781 | "ryu", 1782 | "serde", 1783 | "unsafe-libyaml", 1784 | ] 1785 | 1786 | [[package]] 1787 | name = "serenity" 1788 | version = "0.11.7" 1789 | source = "registry+https://github.com/rust-lang/crates.io-index" 1790 | checksum = "7a7a89cef23483fc9d4caf2df41e6d3928e18aada84c56abd237439d929622c6" 1791 | dependencies = [ 1792 | "async-trait", 1793 | "async-tungstenite", 1794 | "base64 0.21.5", 1795 | "bitflags 1.3.2", 1796 | "bytes", 1797 | "cfg-if", 1798 | "dashmap", 1799 | "flate2", 1800 | "futures", 1801 | "mime", 1802 | "mime_guess", 1803 | "parking_lot", 1804 | "percent-encoding", 1805 | "reqwest", 1806 | "serde", 1807 | "serde-value", 1808 | "serde_json", 1809 | "time", 1810 | "tokio", 1811 | "tracing", 1812 | "typemap_rev", 1813 | "url", 1814 | ] 1815 | 1816 | [[package]] 1817 | name = "serenity-voice-model" 1818 | version = "0.1.1" 1819 | source = "registry+https://github.com/rust-lang/crates.io-index" 1820 | checksum = "8be3aec8849ca2fde1e8a5dfbed96fbd68e9b5f4283fbe277d8694ce811d4952" 1821 | dependencies = [ 1822 | "bitflags 1.3.2", 1823 | "enum_primitive", 1824 | "serde", 1825 | "serde_json", 1826 | "serde_repr", 1827 | ] 1828 | 1829 | [[package]] 1830 | name = "sha-1" 1831 | version = "0.10.1" 1832 | source = "registry+https://github.com/rust-lang/crates.io-index" 1833 | checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c" 1834 | dependencies = [ 1835 | "cfg-if", 1836 | "cpufeatures", 1837 | "digest", 1838 | ] 1839 | 1840 | [[package]] 1841 | name = "sharded-slab" 1842 | version = "0.1.7" 1843 | source = "registry+https://github.com/rust-lang/crates.io-index" 1844 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" 1845 | dependencies = [ 1846 | "lazy_static", 1847 | ] 1848 | 1849 | [[package]] 1850 | name = "signal-hook-registry" 1851 | version = "1.4.1" 1852 | source = "registry+https://github.com/rust-lang/crates.io-index" 1853 | checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1" 1854 | dependencies = [ 1855 | "libc", 1856 | ] 1857 | 1858 | [[package]] 1859 | name = "slab" 1860 | version = "0.4.9" 1861 | source = "registry+https://github.com/rust-lang/crates.io-index" 1862 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" 1863 | dependencies = [ 1864 | "autocfg", 1865 | ] 1866 | 1867 | [[package]] 1868 | name = "smallvec" 1869 | version = "1.11.2" 1870 | source = "registry+https://github.com/rust-lang/crates.io-index" 1871 | checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" 1872 | 1873 | [[package]] 1874 | name = "socket2" 1875 | version = "0.4.10" 1876 | source = "registry+https://github.com/rust-lang/crates.io-index" 1877 | checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d" 1878 | dependencies = [ 1879 | "libc", 1880 | "winapi", 1881 | ] 1882 | 1883 | [[package]] 1884 | name = "socket2" 1885 | version = "0.5.5" 1886 | source = "registry+https://github.com/rust-lang/crates.io-index" 1887 | checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9" 1888 | dependencies = [ 1889 | "libc", 1890 | "windows-sys", 1891 | ] 1892 | 1893 | [[package]] 1894 | name = "songbird" 1895 | version = "0.3.2" 1896 | source = "registry+https://github.com/rust-lang/crates.io-index" 1897 | checksum = "32f686a0fd771939de1da3e43cee45169fafe1595770b94680572cf18bdef288" 1898 | dependencies = [ 1899 | "async-trait", 1900 | "async-tungstenite", 1901 | "audiopus", 1902 | "byteorder", 1903 | "dashmap", 1904 | "derivative", 1905 | "discortp", 1906 | "flume", 1907 | "futures", 1908 | "parking_lot", 1909 | "pin-project", 1910 | "rand", 1911 | "serde", 1912 | "serde_json", 1913 | "serenity", 1914 | "serenity-voice-model", 1915 | "streamcatcher", 1916 | "symphonia-core", 1917 | "tokio", 1918 | "tracing", 1919 | "tracing-futures", 1920 | "typemap_rev", 1921 | "url", 1922 | "uuid 0.8.2", 1923 | "xsalsa20poly1305", 1924 | ] 1925 | 1926 | [[package]] 1927 | name = "spin" 1928 | version = "0.9.8" 1929 | source = "registry+https://github.com/rust-lang/crates.io-index" 1930 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" 1931 | dependencies = [ 1932 | "lock_api", 1933 | ] 1934 | 1935 | [[package]] 1936 | name = "streamcatcher" 1937 | version = "1.0.1" 1938 | source = "registry+https://github.com/rust-lang/crates.io-index" 1939 | checksum = "71664755c349abb0758fda6218fb2d2391ca2a73f9302c03b145491db4fcea29" 1940 | dependencies = [ 1941 | "crossbeam-utils", 1942 | "futures-util", 1943 | "loom", 1944 | ] 1945 | 1946 | [[package]] 1947 | name = "subtle" 1948 | version = "2.4.1" 1949 | source = "registry+https://github.com/rust-lang/crates.io-index" 1950 | checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601" 1951 | 1952 | [[package]] 1953 | name = "symphonia-core" 1954 | version = "0.5.3" 1955 | source = "registry+https://github.com/rust-lang/crates.io-index" 1956 | checksum = "f7c73eb88fee79705268cc7b742c7bc93a7b76e092ab751d0833866970754142" 1957 | dependencies = [ 1958 | "arrayvec", 1959 | "bitflags 1.3.2", 1960 | "bytemuck", 1961 | "lazy_static", 1962 | "log", 1963 | ] 1964 | 1965 | [[package]] 1966 | name = "syn" 1967 | version = "1.0.109" 1968 | source = "registry+https://github.com/rust-lang/crates.io-index" 1969 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" 1970 | dependencies = [ 1971 | "proc-macro2", 1972 | "quote", 1973 | "unicode-ident", 1974 | ] 1975 | 1976 | [[package]] 1977 | name = "syn" 1978 | version = "2.0.48" 1979 | source = "registry+https://github.com/rust-lang/crates.io-index" 1980 | checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" 1981 | dependencies = [ 1982 | "proc-macro2", 1983 | "quote", 1984 | "unicode-ident", 1985 | ] 1986 | 1987 | [[package]] 1988 | name = "system-configuration" 1989 | version = "0.5.1" 1990 | source = "registry+https://github.com/rust-lang/crates.io-index" 1991 | checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7" 1992 | dependencies = [ 1993 | "bitflags 1.3.2", 1994 | "core-foundation", 1995 | "system-configuration-sys", 1996 | ] 1997 | 1998 | [[package]] 1999 | name = "system-configuration-sys" 2000 | version = "0.5.0" 2001 | source = "registry+https://github.com/rust-lang/crates.io-index" 2002 | checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9" 2003 | dependencies = [ 2004 | "core-foundation-sys", 2005 | "libc", 2006 | ] 2007 | 2008 | [[package]] 2009 | name = "tempfile" 2010 | version = "3.8.1" 2011 | source = "registry+https://github.com/rust-lang/crates.io-index" 2012 | checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5" 2013 | dependencies = [ 2014 | "cfg-if", 2015 | "fastrand", 2016 | "redox_syscall", 2017 | "rustix", 2018 | "windows-sys", 2019 | ] 2020 | 2021 | [[package]] 2022 | name = "thiserror" 2023 | version = "1.0.50" 2024 | source = "registry+https://github.com/rust-lang/crates.io-index" 2025 | checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" 2026 | dependencies = [ 2027 | "thiserror-impl", 2028 | ] 2029 | 2030 | [[package]] 2031 | name = "thiserror-impl" 2032 | version = "1.0.50" 2033 | source = "registry+https://github.com/rust-lang/crates.io-index" 2034 | checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" 2035 | dependencies = [ 2036 | "proc-macro2", 2037 | "quote", 2038 | "syn 2.0.48", 2039 | ] 2040 | 2041 | [[package]] 2042 | name = "thread_local" 2043 | version = "1.1.7" 2044 | source = "registry+https://github.com/rust-lang/crates.io-index" 2045 | checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152" 2046 | dependencies = [ 2047 | "cfg-if", 2048 | "once_cell", 2049 | ] 2050 | 2051 | [[package]] 2052 | name = "time" 2053 | version = "0.3.30" 2054 | source = "registry+https://github.com/rust-lang/crates.io-index" 2055 | checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5" 2056 | dependencies = [ 2057 | "deranged", 2058 | "itoa", 2059 | "powerfmt", 2060 | "serde", 2061 | "time-core", 2062 | "time-macros", 2063 | ] 2064 | 2065 | [[package]] 2066 | name = "time-core" 2067 | version = "0.1.2" 2068 | source = "registry+https://github.com/rust-lang/crates.io-index" 2069 | checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3" 2070 | 2071 | [[package]] 2072 | name = "time-macros" 2073 | version = "0.2.15" 2074 | source = "registry+https://github.com/rust-lang/crates.io-index" 2075 | checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20" 2076 | dependencies = [ 2077 | "time-core", 2078 | ] 2079 | 2080 | [[package]] 2081 | name = "tinyvec" 2082 | version = "1.6.0" 2083 | source = "registry+https://github.com/rust-lang/crates.io-index" 2084 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" 2085 | dependencies = [ 2086 | "tinyvec_macros", 2087 | ] 2088 | 2089 | [[package]] 2090 | name = "tinyvec_macros" 2091 | version = "0.1.1" 2092 | source = "registry+https://github.com/rust-lang/crates.io-index" 2093 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" 2094 | 2095 | [[package]] 2096 | name = "tokio" 2097 | version = "1.38.0" 2098 | source = "registry+https://github.com/rust-lang/crates.io-index" 2099 | checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a" 2100 | dependencies = [ 2101 | "backtrace", 2102 | "bytes", 2103 | "libc", 2104 | "mio", 2105 | "num_cpus", 2106 | "pin-project-lite", 2107 | "signal-hook-registry", 2108 | "socket2 0.5.5", 2109 | "tokio-macros", 2110 | "windows-sys", 2111 | ] 2112 | 2113 | [[package]] 2114 | name = "tokio-macros" 2115 | version = "2.3.0" 2116 | source = "registry+https://github.com/rust-lang/crates.io-index" 2117 | checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a" 2118 | dependencies = [ 2119 | "proc-macro2", 2120 | "quote", 2121 | "syn 2.0.48", 2122 | ] 2123 | 2124 | [[package]] 2125 | name = "tokio-native-tls" 2126 | version = "0.3.1" 2127 | source = "registry+https://github.com/rust-lang/crates.io-index" 2128 | checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2" 2129 | dependencies = [ 2130 | "native-tls", 2131 | "tokio", 2132 | ] 2133 | 2134 | [[package]] 2135 | name = "tokio-util" 2136 | version = "0.7.10" 2137 | source = "registry+https://github.com/rust-lang/crates.io-index" 2138 | checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15" 2139 | dependencies = [ 2140 | "bytes", 2141 | "futures-core", 2142 | "futures-sink", 2143 | "pin-project-lite", 2144 | "tokio", 2145 | "tracing", 2146 | ] 2147 | 2148 | [[package]] 2149 | name = "tower-service" 2150 | version = "0.3.2" 2151 | source = "registry+https://github.com/rust-lang/crates.io-index" 2152 | checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" 2153 | 2154 | [[package]] 2155 | name = "tracing" 2156 | version = "0.1.40" 2157 | source = "registry+https://github.com/rust-lang/crates.io-index" 2158 | checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef" 2159 | dependencies = [ 2160 | "log", 2161 | "pin-project-lite", 2162 | "tracing-attributes", 2163 | "tracing-core", 2164 | ] 2165 | 2166 | [[package]] 2167 | name = "tracing-attributes" 2168 | version = "0.1.27" 2169 | source = "registry+https://github.com/rust-lang/crates.io-index" 2170 | checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" 2171 | dependencies = [ 2172 | "proc-macro2", 2173 | "quote", 2174 | "syn 2.0.48", 2175 | ] 2176 | 2177 | [[package]] 2178 | name = "tracing-core" 2179 | version = "0.1.32" 2180 | source = "registry+https://github.com/rust-lang/crates.io-index" 2181 | checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54" 2182 | dependencies = [ 2183 | "once_cell", 2184 | "valuable", 2185 | ] 2186 | 2187 | [[package]] 2188 | name = "tracing-futures" 2189 | version = "0.2.5" 2190 | source = "registry+https://github.com/rust-lang/crates.io-index" 2191 | checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2" 2192 | dependencies = [ 2193 | "pin-project", 2194 | "tracing", 2195 | ] 2196 | 2197 | [[package]] 2198 | name = "tracing-log" 2199 | version = "0.1.4" 2200 | source = "registry+https://github.com/rust-lang/crates.io-index" 2201 | checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2" 2202 | dependencies = [ 2203 | "log", 2204 | "once_cell", 2205 | "tracing-core", 2206 | ] 2207 | 2208 | [[package]] 2209 | name = "tracing-subscriber" 2210 | version = "0.3.17" 2211 | source = "registry+https://github.com/rust-lang/crates.io-index" 2212 | checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77" 2213 | dependencies = [ 2214 | "matchers", 2215 | "nu-ansi-term", 2216 | "once_cell", 2217 | "regex", 2218 | "sharded-slab", 2219 | "smallvec", 2220 | "thread_local", 2221 | "tracing", 2222 | "tracing-core", 2223 | "tracing-log", 2224 | ] 2225 | 2226 | [[package]] 2227 | name = "try-lock" 2228 | version = "0.2.4" 2229 | source = "registry+https://github.com/rust-lang/crates.io-index" 2230 | checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" 2231 | 2232 | [[package]] 2233 | name = "tungstenite" 2234 | version = "0.17.3" 2235 | source = "registry+https://github.com/rust-lang/crates.io-index" 2236 | checksum = "e27992fd6a8c29ee7eef28fc78349aa244134e10ad447ce3b9f0ac0ed0fa4ce0" 2237 | dependencies = [ 2238 | "base64 0.13.1", 2239 | "byteorder", 2240 | "bytes", 2241 | "http", 2242 | "httparse", 2243 | "log", 2244 | "native-tls", 2245 | "rand", 2246 | "sha-1", 2247 | "thiserror", 2248 | "url", 2249 | "utf-8", 2250 | ] 2251 | 2252 | [[package]] 2253 | name = "typemap_rev" 2254 | version = "0.1.5" 2255 | source = "registry+https://github.com/rust-lang/crates.io-index" 2256 | checksum = "ed5b74f0a24b5454580a79abb6994393b09adf0ab8070f15827cb666255de155" 2257 | 2258 | [[package]] 2259 | name = "typenum" 2260 | version = "1.17.0" 2261 | source = "registry+https://github.com/rust-lang/crates.io-index" 2262 | checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" 2263 | 2264 | [[package]] 2265 | name = "uname" 2266 | version = "0.1.1" 2267 | source = "registry+https://github.com/rust-lang/crates.io-index" 2268 | checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8" 2269 | dependencies = [ 2270 | "libc", 2271 | ] 2272 | 2273 | [[package]] 2274 | name = "unicase" 2275 | version = "2.7.0" 2276 | source = "registry+https://github.com/rust-lang/crates.io-index" 2277 | checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89" 2278 | dependencies = [ 2279 | "version_check", 2280 | ] 2281 | 2282 | [[package]] 2283 | name = "unicode-bidi" 2284 | version = "0.3.13" 2285 | source = "registry+https://github.com/rust-lang/crates.io-index" 2286 | checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" 2287 | 2288 | [[package]] 2289 | name = "unicode-ident" 2290 | version = "1.0.12" 2291 | source = "registry+https://github.com/rust-lang/crates.io-index" 2292 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 2293 | 2294 | [[package]] 2295 | name = "unicode-normalization" 2296 | version = "0.1.22" 2297 | source = "registry+https://github.com/rust-lang/crates.io-index" 2298 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" 2299 | dependencies = [ 2300 | "tinyvec", 2301 | ] 2302 | 2303 | [[package]] 2304 | name = "universal-hash" 2305 | version = "0.4.1" 2306 | source = "registry+https://github.com/rust-lang/crates.io-index" 2307 | checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05" 2308 | dependencies = [ 2309 | "generic-array", 2310 | "subtle", 2311 | ] 2312 | 2313 | [[package]] 2314 | name = "unsafe-libyaml" 2315 | version = "0.2.9" 2316 | source = "registry+https://github.com/rust-lang/crates.io-index" 2317 | checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa" 2318 | 2319 | [[package]] 2320 | name = "ureq" 2321 | version = "2.8.0" 2322 | source = "registry+https://github.com/rust-lang/crates.io-index" 2323 | checksum = "f5ccd538d4a604753ebc2f17cd9946e89b77bf87f6a8e2309667c6f2e87855e3" 2324 | dependencies = [ 2325 | "base64 0.21.5", 2326 | "log", 2327 | "native-tls", 2328 | "once_cell", 2329 | "url", 2330 | ] 2331 | 2332 | [[package]] 2333 | name = "url" 2334 | version = "2.4.1" 2335 | source = "registry+https://github.com/rust-lang/crates.io-index" 2336 | checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" 2337 | dependencies = [ 2338 | "form_urlencoded", 2339 | "idna", 2340 | "percent-encoding", 2341 | "serde", 2342 | ] 2343 | 2344 | [[package]] 2345 | name = "utf-8" 2346 | version = "0.7.6" 2347 | source = "registry+https://github.com/rust-lang/crates.io-index" 2348 | checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" 2349 | 2350 | [[package]] 2351 | name = "uuid" 2352 | version = "0.8.2" 2353 | source = "registry+https://github.com/rust-lang/crates.io-index" 2354 | checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" 2355 | dependencies = [ 2356 | "getrandom", 2357 | ] 2358 | 2359 | [[package]] 2360 | name = "uuid" 2361 | version = "1.5.0" 2362 | source = "registry+https://github.com/rust-lang/crates.io-index" 2363 | checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" 2364 | dependencies = [ 2365 | "serde", 2366 | ] 2367 | 2368 | [[package]] 2369 | name = "valuable" 2370 | version = "0.1.0" 2371 | source = "registry+https://github.com/rust-lang/crates.io-index" 2372 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" 2373 | 2374 | [[package]] 2375 | name = "vcpkg" 2376 | version = "0.2.15" 2377 | source = "registry+https://github.com/rust-lang/crates.io-index" 2378 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" 2379 | 2380 | [[package]] 2381 | name = "version_check" 2382 | version = "0.9.4" 2383 | source = "registry+https://github.com/rust-lang/crates.io-index" 2384 | checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" 2385 | 2386 | [[package]] 2387 | name = "want" 2388 | version = "0.3.1" 2389 | source = "registry+https://github.com/rust-lang/crates.io-index" 2390 | checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" 2391 | dependencies = [ 2392 | "try-lock", 2393 | ] 2394 | 2395 | [[package]] 2396 | name = "wasi" 2397 | version = "0.11.0+wasi-snapshot-preview1" 2398 | source = "registry+https://github.com/rust-lang/crates.io-index" 2399 | checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 2400 | 2401 | [[package]] 2402 | name = "wasm-bindgen" 2403 | version = "0.2.88" 2404 | source = "registry+https://github.com/rust-lang/crates.io-index" 2405 | checksum = "7daec296f25a1bae309c0cd5c29c4b260e510e6d813c286b19eaadf409d40fce" 2406 | dependencies = [ 2407 | "cfg-if", 2408 | "wasm-bindgen-macro", 2409 | ] 2410 | 2411 | [[package]] 2412 | name = "wasm-bindgen-backend" 2413 | version = "0.2.88" 2414 | source = "registry+https://github.com/rust-lang/crates.io-index" 2415 | checksum = "e397f4664c0e4e428e8313a469aaa58310d302159845980fd23b0f22a847f217" 2416 | dependencies = [ 2417 | "bumpalo", 2418 | "log", 2419 | "once_cell", 2420 | "proc-macro2", 2421 | "quote", 2422 | "syn 2.0.48", 2423 | "wasm-bindgen-shared", 2424 | ] 2425 | 2426 | [[package]] 2427 | name = "wasm-bindgen-futures" 2428 | version = "0.4.38" 2429 | source = "registry+https://github.com/rust-lang/crates.io-index" 2430 | checksum = "9afec9963e3d0994cac82455b2b3502b81a7f40f9a0d32181f7528d9f4b43e02" 2431 | dependencies = [ 2432 | "cfg-if", 2433 | "js-sys", 2434 | "wasm-bindgen", 2435 | "web-sys", 2436 | ] 2437 | 2438 | [[package]] 2439 | name = "wasm-bindgen-macro" 2440 | version = "0.2.88" 2441 | source = "registry+https://github.com/rust-lang/crates.io-index" 2442 | checksum = "5961017b3b08ad5f3fe39f1e79877f8ee7c23c5e5fd5eb80de95abc41f1f16b2" 2443 | dependencies = [ 2444 | "quote", 2445 | "wasm-bindgen-macro-support", 2446 | ] 2447 | 2448 | [[package]] 2449 | name = "wasm-bindgen-macro-support" 2450 | version = "0.2.88" 2451 | source = "registry+https://github.com/rust-lang/crates.io-index" 2452 | checksum = "c5353b8dab669f5e10f5bd76df26a9360c748f054f862ff5f3f8aae0c7fb3907" 2453 | dependencies = [ 2454 | "proc-macro2", 2455 | "quote", 2456 | "syn 2.0.48", 2457 | "wasm-bindgen-backend", 2458 | "wasm-bindgen-shared", 2459 | ] 2460 | 2461 | [[package]] 2462 | name = "wasm-bindgen-shared" 2463 | version = "0.2.88" 2464 | source = "registry+https://github.com/rust-lang/crates.io-index" 2465 | checksum = "0d046c5d029ba91a1ed14da14dca44b68bf2f124cfbaf741c54151fdb3e0750b" 2466 | 2467 | [[package]] 2468 | name = "wasm-streams" 2469 | version = "0.3.0" 2470 | source = "registry+https://github.com/rust-lang/crates.io-index" 2471 | checksum = "b4609d447824375f43e1ffbc051b50ad8f4b3ae8219680c94452ea05eb240ac7" 2472 | dependencies = [ 2473 | "futures-util", 2474 | "js-sys", 2475 | "wasm-bindgen", 2476 | "wasm-bindgen-futures", 2477 | "web-sys", 2478 | ] 2479 | 2480 | [[package]] 2481 | name = "web-sys" 2482 | version = "0.3.65" 2483 | source = "registry+https://github.com/rust-lang/crates.io-index" 2484 | checksum = "5db499c5f66323272151db0e666cd34f78617522fb0c1604d31a27c50c206a85" 2485 | dependencies = [ 2486 | "js-sys", 2487 | "wasm-bindgen", 2488 | ] 2489 | 2490 | [[package]] 2491 | name = "winapi" 2492 | version = "0.3.9" 2493 | source = "registry+https://github.com/rust-lang/crates.io-index" 2494 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" 2495 | dependencies = [ 2496 | "winapi-i686-pc-windows-gnu", 2497 | "winapi-x86_64-pc-windows-gnu", 2498 | ] 2499 | 2500 | [[package]] 2501 | name = "winapi-i686-pc-windows-gnu" 2502 | version = "0.4.0" 2503 | source = "registry+https://github.com/rust-lang/crates.io-index" 2504 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" 2505 | 2506 | [[package]] 2507 | name = "winapi-x86_64-pc-windows-gnu" 2508 | version = "0.4.0" 2509 | source = "registry+https://github.com/rust-lang/crates.io-index" 2510 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" 2511 | 2512 | [[package]] 2513 | name = "windows" 2514 | version = "0.48.0" 2515 | source = "registry+https://github.com/rust-lang/crates.io-index" 2516 | checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f" 2517 | dependencies = [ 2518 | "windows-targets", 2519 | ] 2520 | 2521 | [[package]] 2522 | name = "windows-core" 2523 | version = "0.51.1" 2524 | source = "registry+https://github.com/rust-lang/crates.io-index" 2525 | checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" 2526 | dependencies = [ 2527 | "windows-targets", 2528 | ] 2529 | 2530 | [[package]] 2531 | name = "windows-sys" 2532 | version = "0.48.0" 2533 | source = "registry+https://github.com/rust-lang/crates.io-index" 2534 | checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" 2535 | dependencies = [ 2536 | "windows-targets", 2537 | ] 2538 | 2539 | [[package]] 2540 | name = "windows-targets" 2541 | version = "0.48.5" 2542 | source = "registry+https://github.com/rust-lang/crates.io-index" 2543 | checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" 2544 | dependencies = [ 2545 | "windows_aarch64_gnullvm", 2546 | "windows_aarch64_msvc", 2547 | "windows_i686_gnu", 2548 | "windows_i686_msvc", 2549 | "windows_x86_64_gnu", 2550 | "windows_x86_64_gnullvm", 2551 | "windows_x86_64_msvc", 2552 | ] 2553 | 2554 | [[package]] 2555 | name = "windows_aarch64_gnullvm" 2556 | version = "0.48.5" 2557 | source = "registry+https://github.com/rust-lang/crates.io-index" 2558 | checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" 2559 | 2560 | [[package]] 2561 | name = "windows_aarch64_msvc" 2562 | version = "0.48.5" 2563 | source = "registry+https://github.com/rust-lang/crates.io-index" 2564 | checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" 2565 | 2566 | [[package]] 2567 | name = "windows_i686_gnu" 2568 | version = "0.48.5" 2569 | source = "registry+https://github.com/rust-lang/crates.io-index" 2570 | checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" 2571 | 2572 | [[package]] 2573 | name = "windows_i686_msvc" 2574 | version = "0.48.5" 2575 | source = "registry+https://github.com/rust-lang/crates.io-index" 2576 | checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" 2577 | 2578 | [[package]] 2579 | name = "windows_x86_64_gnu" 2580 | version = "0.48.5" 2581 | source = "registry+https://github.com/rust-lang/crates.io-index" 2582 | checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" 2583 | 2584 | [[package]] 2585 | name = "windows_x86_64_gnullvm" 2586 | version = "0.48.5" 2587 | source = "registry+https://github.com/rust-lang/crates.io-index" 2588 | checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" 2589 | 2590 | [[package]] 2591 | name = "windows_x86_64_msvc" 2592 | version = "0.48.5" 2593 | source = "registry+https://github.com/rust-lang/crates.io-index" 2594 | checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" 2595 | 2596 | [[package]] 2597 | name = "winreg" 2598 | version = "0.50.0" 2599 | source = "registry+https://github.com/rust-lang/crates.io-index" 2600 | checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1" 2601 | dependencies = [ 2602 | "cfg-if", 2603 | "windows-sys", 2604 | ] 2605 | 2606 | [[package]] 2607 | name = "xsalsa20poly1305" 2608 | version = "0.8.0" 2609 | source = "registry+https://github.com/rust-lang/crates.io-index" 2610 | checksum = "e68bcb965d6c650091450b95cea12f07dcd299a01c15e2f9433b0813ea3c0886" 2611 | dependencies = [ 2612 | "aead", 2613 | "poly1305", 2614 | "rand_core", 2615 | "salsa20", 2616 | "subtle", 2617 | "zeroize", 2618 | ] 2619 | 2620 | [[package]] 2621 | name = "zeroize" 2622 | version = "1.3.0" 2623 | source = "registry+https://github.com/rust-lang/crates.io-index" 2624 | checksum = "4756f7db3f7b5574938c3eb1c117038b8e07f95ee6718c0efad4ac21508f1efd" 2625 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- 1 | [workspace] 2 | members = ["crates/*"] 3 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM rust:1.73.0-bullseye as builder 2 | 3 | RUN apt-get update && \ 4 | apt-get install -y libopus-dev && \ 5 | rm -rf /var/lib/apt/lists/* 6 | 7 | WORKDIR /root/koe 8 | COPY . . 9 | 10 | RUN --mount=type=cache,target=/root/.cargo/bin \ 11 | --mount=type=cache,target=/root/.cargo/registry/index \ 12 | --mount=type=cache,target=/root/.cargo/registry/cache \ 13 | --mount=type=cache,target=/root/.cargo/git/db \ 14 | --mount=type=cache,target=/root/koe/target \ 15 | cargo build --release --bin koe && \ 16 | cp target/release/koe /usr/local/bin/koe 17 | 18 | ### 19 | 20 | FROM debian:bullseye-slim 21 | 22 | RUN apt-get update && \ 23 | apt-get install -y ca-certificates ffmpeg && \ 24 | rm -rf /var/lib/apt/lists/* 25 | 26 | # Switch to unpriviledged user 27 | RUN useradd --user-group koe 28 | USER koe 29 | 30 | COPY --from=builder /usr/local/bin/koe /usr/local/bin/koe 31 | 32 | ARG SENTRY_RELEASE 33 | ENV SENTRY_RELEASE=$SENTRY_RELEASE 34 | 35 | ENTRYPOINT ["koe"] 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Ciffelia 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |