mirror of
https://github.com/logos-messaging/libchat.git
synced 2026-02-10 00:43:09 +00:00
452 lines
11 KiB
Plaintext
452 lines
11 KiB
Plaintext
|
|
# This file is automatically @generated by Cargo.
|
||
|
|
# It is not intended for manual editing.
|
||
|
|
version = 4
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "aead"
|
||
|
|
version = "0.5.2"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
|
||
|
|
dependencies = [
|
||
|
|
"crypto-common",
|
||
|
|
"generic-array",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "blake2"
|
||
|
|
version = "0.10.6"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
||
|
|
dependencies = [
|
||
|
|
"digest",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "block-buffer"
|
||
|
|
version = "0.10.4"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
||
|
|
dependencies = [
|
||
|
|
"generic-array",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "cfg-if"
|
||
|
|
version = "1.0.4"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "chacha20"
|
||
|
|
version = "0.9.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
|
||
|
|
dependencies = [
|
||
|
|
"cfg-if",
|
||
|
|
"cipher",
|
||
|
|
"cpufeatures",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "chacha20poly1305"
|
||
|
|
version = "0.10.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
|
||
|
|
dependencies = [
|
||
|
|
"aead",
|
||
|
|
"chacha20",
|
||
|
|
"cipher",
|
||
|
|
"poly1305",
|
||
|
|
"zeroize",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "cipher"
|
||
|
|
version = "0.4.4"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
||
|
|
dependencies = [
|
||
|
|
"crypto-common",
|
||
|
|
"inout",
|
||
|
|
"zeroize",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "cpufeatures"
|
||
|
|
version = "0.2.17"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
||
|
|
dependencies = [
|
||
|
|
"libc",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "crypto-common"
|
||
|
|
version = "0.1.7"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
||
|
|
dependencies = [
|
||
|
|
"generic-array",
|
||
|
|
"rand_core",
|
||
|
|
"typenum",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "curve25519-dalek"
|
||
|
|
version = "4.1.3"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
|
||
|
|
dependencies = [
|
||
|
|
"cfg-if",
|
||
|
|
"cpufeatures",
|
||
|
|
"curve25519-dalek-derive",
|
||
|
|
"fiat-crypto",
|
||
|
|
"rustc_version",
|
||
|
|
"subtle",
|
||
|
|
"zeroize",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "curve25519-dalek-derive"
|
||
|
|
version = "0.1.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
|
||
|
|
dependencies = [
|
||
|
|
"proc-macro2",
|
||
|
|
"quote",
|
||
|
|
"syn",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "digest"
|
||
|
|
version = "0.10.7"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
||
|
|
dependencies = [
|
||
|
|
"block-buffer",
|
||
|
|
"crypto-common",
|
||
|
|
"subtle",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "double-ratchets"
|
||
|
|
version = "0.0.1"
|
||
|
|
dependencies = [
|
||
|
|
"blake2",
|
||
|
|
"chacha20poly1305",
|
||
|
|
"hkdf",
|
||
|
|
"rand",
|
||
|
|
"rand_core",
|
||
|
|
"thiserror",
|
||
|
|
"x25519-dalek",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "fiat-crypto"
|
||
|
|
version = "0.2.9"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "generic-array"
|
||
|
|
version = "0.14.7"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
||
|
|
dependencies = [
|
||
|
|
"typenum",
|
||
|
|
"version_check",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "getrandom"
|
||
|
|
version = "0.2.16"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
||
|
|
dependencies = [
|
||
|
|
"cfg-if",
|
||
|
|
"libc",
|
||
|
|
"wasi",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "hkdf"
|
||
|
|
version = "0.12.4"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
|
||
|
|
dependencies = [
|
||
|
|
"hmac",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "hmac"
|
||
|
|
version = "0.12.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
||
|
|
dependencies = [
|
||
|
|
"digest",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "inout"
|
||
|
|
version = "0.1.4"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
||
|
|
dependencies = [
|
||
|
|
"generic-array",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "libc"
|
||
|
|
version = "0.2.178"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "logos-chat"
|
||
|
|
version = "0.1.0"
|
||
|
|
dependencies = [
|
||
|
|
"thiserror",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "opaque-debug"
|
||
|
|
version = "0.3.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "poly1305"
|
||
|
|
version = "0.8.0"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
|
||
|
|
dependencies = [
|
||
|
|
"cpufeatures",
|
||
|
|
"opaque-debug",
|
||
|
|
"universal-hash",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "ppv-lite86"
|
||
|
|
version = "0.2.21"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
||
|
|
dependencies = [
|
||
|
|
"zerocopy",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "proc-macro2"
|
||
|
|
version = "1.0.103"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
||
|
|
dependencies = [
|
||
|
|
"unicode-ident",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "quote"
|
||
|
|
version = "1.0.42"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
||
|
|
dependencies = [
|
||
|
|
"proc-macro2",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "rand"
|
||
|
|
version = "0.8.5"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
||
|
|
dependencies = [
|
||
|
|
"libc",
|
||
|
|
"rand_chacha",
|
||
|
|
"rand_core",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "rand_chacha"
|
||
|
|
version = "0.3.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
||
|
|
dependencies = [
|
||
|
|
"ppv-lite86",
|
||
|
|
"rand_core",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "rand_core"
|
||
|
|
version = "0.6.4"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
||
|
|
dependencies = [
|
||
|
|
"getrandom",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "rustc_version"
|
||
|
|
version = "0.4.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
||
|
|
dependencies = [
|
||
|
|
"semver",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "semver"
|
||
|
|
version = "1.0.27"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "serde"
|
||
|
|
version = "1.0.228"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
||
|
|
dependencies = [
|
||
|
|
"serde_core",
|
||
|
|
"serde_derive",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "serde_core"
|
||
|
|
version = "1.0.228"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
||
|
|
dependencies = [
|
||
|
|
"serde_derive",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "serde_derive"
|
||
|
|
version = "1.0.228"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
||
|
|
dependencies = [
|
||
|
|
"proc-macro2",
|
||
|
|
"quote",
|
||
|
|
"syn",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "subtle"
|
||
|
|
version = "2.6.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "syn"
|
||
|
|
version = "2.0.111"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
||
|
|
dependencies = [
|
||
|
|
"proc-macro2",
|
||
|
|
"quote",
|
||
|
|
"unicode-ident",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "thiserror"
|
||
|
|
version = "2.0.17"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
||
|
|
dependencies = [
|
||
|
|
"thiserror-impl",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "thiserror-impl"
|
||
|
|
version = "2.0.17"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
||
|
|
dependencies = [
|
||
|
|
"proc-macro2",
|
||
|
|
"quote",
|
||
|
|
"syn",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "typenum"
|
||
|
|
version = "1.19.0"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "unicode-ident"
|
||
|
|
version = "1.0.22"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "universal-hash"
|
||
|
|
version = "0.5.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
|
||
|
|
dependencies = [
|
||
|
|
"crypto-common",
|
||
|
|
"subtle",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "version_check"
|
||
|
|
version = "0.9.5"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "wasi"
|
||
|
|
version = "0.11.1+wasi-snapshot-preview1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "x25519-dalek"
|
||
|
|
version = "2.0.1"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "c7e468321c81fb07fa7f4c636c3972b9100f0346e5b6a9f2bd0603a52f7ed277"
|
||
|
|
dependencies = [
|
||
|
|
"curve25519-dalek",
|
||
|
|
"rand_core",
|
||
|
|
"serde",
|
||
|
|
"zeroize",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "zerocopy"
|
||
|
|
version = "0.8.31"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
||
|
|
dependencies = [
|
||
|
|
"zerocopy-derive",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "zerocopy-derive"
|
||
|
|
version = "0.8.31"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
||
|
|
dependencies = [
|
||
|
|
"proc-macro2",
|
||
|
|
"quote",
|
||
|
|
"syn",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "zeroize"
|
||
|
|
version = "1.8.2"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
||
|
|
dependencies = [
|
||
|
|
"zeroize_derive",
|
||
|
|
]
|
||
|
|
|
||
|
|
[[package]]
|
||
|
|
name = "zeroize_derive"
|
||
|
|
version = "1.4.2"
|
||
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||
|
|
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
|
||
|
|
dependencies = [
|
||
|
|
"proc-macro2",
|
||
|
|
"quote",
|
||
|
|
"syn",
|
||
|
|
]
|