1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 3 4 5[[package]] 6name = "arc-swap" 7version = "1.7.1" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457" 10 11[[package]] 12name = "atomic_refcell" 13version = "0.1.13" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "41e67cd8309bbd06cd603a9e693a784ac2e5d1e955f11286e355089fcab3047c" 16 17[[package]] 18name = "autocfg" 19version = "1.3.0" 20source = "registry+https://github.com/rust-lang/crates.io-index" 21checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" 22 23[[package]] 24name = "bitflags" 25version = "2.5.0" 26source = "registry+https://github.com/rust-lang/crates.io-index" 27checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" 28 29[[package]] 30name = "bumpalo" 31version = "3.16.0" 32source = "registry+https://github.com/rust-lang/crates.io-index" 33checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" 34 35[[package]] 36name = "cfg-if" 37version = "1.0.0" 38source = "registry+https://github.com/rust-lang/crates.io-index" 39checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" 40 41[[package]] 42name = "fastrand" 43version = "2.1.0" 44source = "registry+https://github.com/rust-lang/crates.io-index" 45checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a" 46dependencies = [ 47 "getrandom", 48] 49 50[[package]] 51name = "getrandom" 52version = "0.2.15" 53source = "registry+https://github.com/rust-lang/crates.io-index" 54checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" 55dependencies = [ 56 "cfg-if", 57 "js-sys", 58 "libc", 59 "wasi", 60 "wasm-bindgen", 61] 62 63[[package]] 64name = "heck" 65version = "0.4.1" 66source = "registry+https://github.com/rust-lang/crates.io-index" 67checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" 68 69[[package]] 70name = "indoc" 71version = "2.0.5" 72source = "registry+https://github.com/rust-lang/crates.io-index" 73checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" 74 75[[package]] 76name = "itoa" 77version = "1.0.11" 78source = "registry+https://github.com/rust-lang/crates.io-index" 79checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" 80 81[[package]] 82name = "js-sys" 83version = "0.3.69" 84source = "registry+https://github.com/rust-lang/crates.io-index" 85checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" 86dependencies = [ 87 "wasm-bindgen", 88] 89 90[[package]] 91name = "libc" 92version = "0.2.154" 93source = "registry+https://github.com/rust-lang/crates.io-index" 94checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" 95 96[[package]] 97name = "lock_api" 98version = "0.4.12" 99source = "registry+https://github.com/rust-lang/crates.io-index" 100checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17" 101dependencies = [ 102 "autocfg", 103 "scopeguard", 104] 105 106[[package]] 107name = "log" 108version = "0.4.21" 109source = "registry+https://github.com/rust-lang/crates.io-index" 110checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" 111 112[[package]] 113name = "memoffset" 114version = "0.9.1" 115source = "registry+https://github.com/rust-lang/crates.io-index" 116checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" 117dependencies = [ 118 "autocfg", 119] 120 121[[package]] 122name = "once_cell" 123version = "1.19.0" 124source = "registry+https://github.com/rust-lang/crates.io-index" 125checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" 126 127[[package]] 128name = "parking_lot" 129version = "0.12.2" 130source = "registry+https://github.com/rust-lang/crates.io-index" 131checksum = "7e4af0ca4f6caed20e900d564c242b8e5d4903fdacf31d3daf527b66fe6f42fb" 132dependencies = [ 133 "lock_api", 134 "parking_lot_core", 135] 136 137[[package]] 138name = "parking_lot_core" 139version = "0.9.10" 140source = "registry+https://github.com/rust-lang/crates.io-index" 141checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8" 142dependencies = [ 143 "cfg-if", 144 "libc", 145 "redox_syscall", 146 "smallvec", 147 "windows-targets", 148] 149 150[[package]] 151name = "portable-atomic" 152version = "1.6.0" 153source = "registry+https://github.com/rust-lang/crates.io-index" 154checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" 155 156[[package]] 157name = "proc-macro2" 158version = "1.0.82" 159source = "registry+https://github.com/rust-lang/crates.io-index" 160checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" 161dependencies = [ 162 "unicode-ident", 163] 164 165[[package]] 166name = "pycrdt" 167version = "0.8.24" 168dependencies = [ 169 "pyo3", 170 "yrs", 171] 172 173[[package]] 174name = "pyo3" 175version = "0.20.3" 176source = "registry+https://github.com/rust-lang/crates.io-index" 177checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233" 178dependencies = [ 179 "cfg-if", 180 "indoc", 181 "libc", 182 "memoffset", 183 "parking_lot", 184 "portable-atomic", 185 "pyo3-build-config", 186 "pyo3-ffi", 187 "pyo3-macros", 188 "unindent", 189] 190 191[[package]] 192name = "pyo3-build-config" 193version = "0.20.3" 194source = "registry+https://github.com/rust-lang/crates.io-index" 195checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7" 196dependencies = [ 197 "once_cell", 198 "target-lexicon", 199] 200 201[[package]] 202name = "pyo3-ffi" 203version = "0.20.3" 204source = "registry+https://github.com/rust-lang/crates.io-index" 205checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa" 206dependencies = [ 207 "libc", 208 "pyo3-build-config", 209] 210 211[[package]] 212name = "pyo3-macros" 213version = "0.20.3" 214source = "registry+https://github.com/rust-lang/crates.io-index" 215checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158" 216dependencies = [ 217 "proc-macro2", 218 "pyo3-macros-backend", 219 "quote", 220 "syn", 221] 222 223[[package]] 224name = "pyo3-macros-backend" 225version = "0.20.3" 226source = "registry+https://github.com/rust-lang/crates.io-index" 227checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185" 228dependencies = [ 229 "heck", 230 "proc-macro2", 231 "pyo3-build-config", 232 "quote", 233 "syn", 234] 235 236[[package]] 237name = "quote" 238version = "1.0.36" 239source = "registry+https://github.com/rust-lang/crates.io-index" 240checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" 241dependencies = [ 242 "proc-macro2", 243] 244 245[[package]] 246name = "redox_syscall" 247version = "0.5.1" 248source = "registry+https://github.com/rust-lang/crates.io-index" 249checksum = "469052894dcb553421e483e4209ee581a45100d31b4018de03e5a7ad86374a7e" 250dependencies = [ 251 "bitflags", 252] 253 254[[package]] 255name = "ryu" 256version = "1.0.18" 257source = "registry+https://github.com/rust-lang/crates.io-index" 258checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f" 259 260[[package]] 261name = "scopeguard" 262version = "1.2.0" 263source = "registry+https://github.com/rust-lang/crates.io-index" 264checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" 265 266[[package]] 267name = "serde" 268version = "1.0.200" 269source = "registry+https://github.com/rust-lang/crates.io-index" 270checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f" 271dependencies = [ 272 "serde_derive", 273] 274 275[[package]] 276name = "serde_derive" 277version = "1.0.200" 278source = "registry+https://github.com/rust-lang/crates.io-index" 279checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb" 280dependencies = [ 281 "proc-macro2", 282 "quote", 283 "syn", 284] 285 286[[package]] 287name = "serde_json" 288version = "1.0.116" 289source = "registry+https://github.com/rust-lang/crates.io-index" 290checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813" 291dependencies = [ 292 "itoa", 293 "ryu", 294 "serde", 295] 296 297[[package]] 298name = "smallstr" 299version = "0.3.0" 300source = "registry+https://github.com/rust-lang/crates.io-index" 301checksum = "63b1aefdf380735ff8ded0b15f31aab05daf1f70216c01c02a12926badd1df9d" 302dependencies = [ 303 "smallvec", 304] 305 306[[package]] 307name = "smallvec" 308version = "1.13.2" 309source = "registry+https://github.com/rust-lang/crates.io-index" 310checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" 311 312[[package]] 313name = "syn" 314version = "2.0.61" 315source = "registry+https://github.com/rust-lang/crates.io-index" 316checksum = "c993ed8ccba56ae856363b1845da7266a7cb78e1d146c8a32d54b45a8b831fc9" 317dependencies = [ 318 "proc-macro2", 319 "quote", 320 "unicode-ident", 321] 322 323[[package]] 324name = "target-lexicon" 325version = "0.12.14" 326source = "registry+https://github.com/rust-lang/crates.io-index" 327checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f" 328 329[[package]] 330name = "thiserror" 331version = "1.0.60" 332source = "registry+https://github.com/rust-lang/crates.io-index" 333checksum = "579e9083ca58dd9dcf91a9923bb9054071b9ebbd800b342194c9feb0ee89fc18" 334dependencies = [ 335 "thiserror-impl", 336] 337 338[[package]] 339name = "thiserror-impl" 340version = "1.0.60" 341source = "registry+https://github.com/rust-lang/crates.io-index" 342checksum = "e2470041c06ec3ac1ab38d0356a6119054dedaea53e12fbefc0de730a1c08524" 343dependencies = [ 344 "proc-macro2", 345 "quote", 346 "syn", 347] 348 349[[package]] 350name = "unicode-ident" 351version = "1.0.12" 352source = "registry+https://github.com/rust-lang/crates.io-index" 353checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" 354 355[[package]] 356name = "unindent" 357version = "0.2.3" 358source = "registry+https://github.com/rust-lang/crates.io-index" 359checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce" 360 361[[package]] 362name = "wasi" 363version = "0.11.0+wasi-snapshot-preview1" 364source = "registry+https://github.com/rust-lang/crates.io-index" 365checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" 366 367[[package]] 368name = "wasm-bindgen" 369version = "0.2.92" 370source = "registry+https://github.com/rust-lang/crates.io-index" 371checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" 372dependencies = [ 373 "cfg-if", 374 "wasm-bindgen-macro", 375] 376 377[[package]] 378name = "wasm-bindgen-backend" 379version = "0.2.92" 380source = "registry+https://github.com/rust-lang/crates.io-index" 381checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" 382dependencies = [ 383 "bumpalo", 384 "log", 385 "once_cell", 386 "proc-macro2", 387 "quote", 388 "syn", 389 "wasm-bindgen-shared", 390] 391 392[[package]] 393name = "wasm-bindgen-macro" 394version = "0.2.92" 395source = "registry+https://github.com/rust-lang/crates.io-index" 396checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" 397dependencies = [ 398 "quote", 399 "wasm-bindgen-macro-support", 400] 401 402[[package]] 403name = "wasm-bindgen-macro-support" 404version = "0.2.92" 405source = "registry+https://github.com/rust-lang/crates.io-index" 406checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" 407dependencies = [ 408 "proc-macro2", 409 "quote", 410 "syn", 411 "wasm-bindgen-backend", 412 "wasm-bindgen-shared", 413] 414 415[[package]] 416name = "wasm-bindgen-shared" 417version = "0.2.92" 418source = "registry+https://github.com/rust-lang/crates.io-index" 419checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" 420 421[[package]] 422name = "windows-targets" 423version = "0.52.5" 424source = "registry+https://github.com/rust-lang/crates.io-index" 425checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" 426dependencies = [ 427 "windows_aarch64_gnullvm", 428 "windows_aarch64_msvc", 429 "windows_i686_gnu", 430 "windows_i686_gnullvm", 431 "windows_i686_msvc", 432 "windows_x86_64_gnu", 433 "windows_x86_64_gnullvm", 434 "windows_x86_64_msvc", 435] 436 437[[package]] 438name = "windows_aarch64_gnullvm" 439version = "0.52.5" 440source = "registry+https://github.com/rust-lang/crates.io-index" 441checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" 442 443[[package]] 444name = "windows_aarch64_msvc" 445version = "0.52.5" 446source = "registry+https://github.com/rust-lang/crates.io-index" 447checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" 448 449[[package]] 450name = "windows_i686_gnu" 451version = "0.52.5" 452source = "registry+https://github.com/rust-lang/crates.io-index" 453checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" 454 455[[package]] 456name = "windows_i686_gnullvm" 457version = "0.52.5" 458source = "registry+https://github.com/rust-lang/crates.io-index" 459checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" 460 461[[package]] 462name = "windows_i686_msvc" 463version = "0.52.5" 464source = "registry+https://github.com/rust-lang/crates.io-index" 465checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" 466 467[[package]] 468name = "windows_x86_64_gnu" 469version = "0.52.5" 470source = "registry+https://github.com/rust-lang/crates.io-index" 471checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" 472 473[[package]] 474name = "windows_x86_64_gnullvm" 475version = "0.52.5" 476source = "registry+https://github.com/rust-lang/crates.io-index" 477checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" 478 479[[package]] 480name = "windows_x86_64_msvc" 481version = "0.52.5" 482source = "registry+https://github.com/rust-lang/crates.io-index" 483checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" 484 485[[package]] 486name = "yrs" 487version = "0.18.7" 488source = "registry+https://github.com/rust-lang/crates.io-index" 489checksum = "d58fbc807677598fedfab76f99f6e1aa5c644411255002b5438ea0ab14672398" 490dependencies = [ 491 "arc-swap", 492 "atomic_refcell", 493 "fastrand", 494 "serde", 495 "serde_json", 496 "smallstr", 497 "smallvec", 498 "thiserror", 499]