Skip to content
Snippets Groups Projects
Cargo.lock 11.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • # This file is automatically @generated by Cargo.
    # It is not intended for manual editing.
    version = 3
    
    [[package]]
    
    name = "autocfg"
    version = "1.1.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
    
    [[package]]
    
    name = "base64"
    version = "0.13.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
    
    [[package]]
    name = "bcrypt"
    
    version = "0.13.0"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "a7e7c93a3fb23b2fdde989b2c9ec4dd153063ec81f408507f84c090cd91c6641"
    
    dependencies = [
     "base64",
     "blowfish",
     "getrandom",
    
    ]
    
    [[package]]
    name = "bcrypt-pbkdf"
    version = "0.8.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "f4ef233ffa9cb9c7820b2b0e9efd0821ed180e866c9120ec9f45518659742074"
    dependencies = [
     "blowfish",
     "pbkdf2",
     "sha2",
    ]
    
    [[package]]
    name = "bcrypt-rust"
    version = "0.1.0"
    dependencies = [
     "base64",
     "bcrypt",
     "bcrypt-pbkdf",
     "pyo3",
    ]
    
    [[package]]
    name = "bitflags"
    version = "1.3.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
    
    [[package]]
    name = "block-buffer"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
    
    dependencies = [
     "generic-array",
    ]
    
    [[package]]
    name = "blowfish"
    version = "0.9.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
    dependencies = [
     "byteorder",
     "cipher",
    ]
    
    [[package]]
    name = "byteorder"
    version = "1.4.3"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
    
    [[package]]
    name = "cfg-if"
    version = "1.0.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
    
    [[package]]
    name = "cipher"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
    
    dependencies = [
     "crypto-common",
     "inout",
    ]
    
    [[package]]
    name = "cpufeatures"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
    
    dependencies = [
     "libc",
    ]
    
    [[package]]
    name = "crypto-common"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
    
    dependencies = [
     "generic-array",
     "typenum",
    ]
    
    [[package]]
    name = "digest"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
    
    dependencies = [
     "block-buffer",
     "crypto-common",
     "subtle",
    ]
    
    [[package]]
    name = "generic-array"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
    
    dependencies = [
     "typenum",
     "version_check",
    ]
    
    [[package]]
    name = "getrandom"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
    
    dependencies = [
     "cfg-if",
     "libc",
     "wasi",
    ]
    
    [[package]]
    name = "indoc"
    version = "0.3.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "47741a8bc60fb26eb8d6e0238bbb26d8575ff623fdc97b1a2c00c050b9684ed8"
    dependencies = [
     "indoc-impl",
     "proc-macro-hack",
    ]
    
    [[package]]
    name = "indoc-impl"
    version = "0.3.6"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "ce046d161f000fffde5f432a0d034d0341dc152643b2598ed5bfce44c4f3a8f0"
    dependencies = [
     "proc-macro-hack",
     "proc-macro2",
     "quote",
     "syn",
     "unindent",
    ]
    
    [[package]]
    name = "inout"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
    
    dependencies = [
     "generic-array",
    ]
    
    [[package]]
    name = "instant"
    version = "0.1.12"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
    dependencies = [
     "cfg-if",
    ]
    
    [[package]]
    name = "libc"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "c0f80d65747a3e43d1596c7c5492d95d5edddaabd45a7fcdb02b95f644164966"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
    
    
    [[package]]
    name = "parking_lot"
    version = "0.11.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
    dependencies = [
     "instant",
     "lock_api",
     "parking_lot_core",
    ]
    
    [[package]]
    name = "parking_lot_core"
    version = "0.8.5"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
    dependencies = [
     "cfg-if",
     "instant",
     "libc",
     "redox_syscall",
     "smallvec",
     "winapi",
    ]
    
    [[package]]
    name = "paste"
    version = "0.1.18"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "45ca20c77d80be666aef2b45486da86238fabe33e38306bd3118fe4af33fa880"
    dependencies = [
     "paste-impl",
     "proc-macro-hack",
    ]
    
    [[package]]
    name = "paste-impl"
    version = "0.1.18"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d95a7db200b97ef370c8e6de0088252f7e0dfff7d047a28528e47456c0fc98b6"
    dependencies = [
     "proc-macro-hack",
    ]
    
    [[package]]
    name = "pbkdf2"
    version = "0.10.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "271779f35b581956db91a3e55737327a03aa051e90b1c47aeb189508533adfd7"
    dependencies = [
     "digest",
    ]
    
    [[package]]
    name = "proc-macro-hack"
    version = "0.5.19"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
    
    [[package]]
    name = "proc-macro2"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
    
    ]
    
    [[package]]
    name = "pyo3"
    version = "0.15.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d41d50a7271e08c7c8a54cd24af5d62f73ee3a6f6a314215281ebdec421d5752"
    dependencies = [
     "cfg-if",
     "indoc",
     "libc",
     "parking_lot",
     "paste",
     "pyo3-build-config",
     "pyo3-macros",
     "unindent",
    ]
    
    [[package]]
    name = "pyo3-build-config"
    version = "0.15.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "779239fc40b8e18bc8416d3a37d280ca9b9fb04bda54b98037bb6748595c2410"
    dependencies = [
     "once_cell",
    ]
    
    [[package]]
    name = "pyo3-macros"
    version = "0.15.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "00b247e8c664be87998d8628e86f282c25066165f1f8dda66100c48202fdb93a"
    dependencies = [
     "pyo3-macros-backend",
     "quote",
     "syn",
    ]
    
    [[package]]
    name = "pyo3-macros-backend"
    version = "0.15.2"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5a8c2812c412e00e641d99eeb79dd478317d981d938aa60325dfa7157b607095"
    dependencies = [
     "proc-macro2",
     "pyo3-build-config",
     "quote",
     "syn",
    ]
    
    [[package]]
    name = "quote"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
    
    dependencies = [
     "proc-macro2",
    ]
    
    [[package]]
    name = "redox_syscall"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
    
    dependencies = [
     "bitflags",
    ]
    
    [[package]]
    name = "scopeguard"
    version = "1.1.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
    
    [[package]]
    name = "sha2"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
    
    dependencies = [
     "cfg-if",
     "cpufeatures",
     "digest",
    ]
    
    [[package]]
    name = "smallvec"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
    
    
    [[package]]
    name = "subtle"
    version = "2.4.1"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
    
    [[package]]
    name = "syn"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "52205623b1b0f064a4e71182c3b18ae902267282930c6d5462c91b859668426e"
    
    dependencies = [
     "proc-macro2",
     "quote",
    
    ]
    
    [[package]]
    name = "typenum"
    version = "1.15.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
    
    [[package]]
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "dcc811dc4066ac62f84f11307873c4850cb653bfa9b1719cee2bd2204a4bc5dd"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "58ee9362deb4a96cef4d437d1ad49cffc9b9e92d202b6995674e928ce684f112"
    
    
    [[package]]
    name = "version_check"
    version = "0.9.4"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
    
    [[package]]
    name = "wasi"
    
    version = "0.11.0+wasi-snapshot-preview1"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
    
    
    [[package]]
    name = "winapi"
    version = "0.3.9"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
    dependencies = [
     "winapi-i686-pc-windows-gnu",
     "winapi-x86_64-pc-windows-gnu",
    ]
    
    [[package]]
    name = "winapi-i686-pc-windows-gnu"
    version = "0.4.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
    
    [[package]]
    name = "winapi-x86_64-pc-windows-gnu"
    version = "0.4.0"
    source = "registry+https://github.com/rust-lang/crates.io-index"
    checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
    
    source = "registry+https://github.com/rust-lang/crates.io-index"
    
    checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"