clipboard-substitutor/Cargo.lock

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

977 lines
25 KiB
Plaintext
Raw Permalink Normal View History

2021-11-11 20:33:17 +05:30
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-06-28 07:54:20 +05:30
[[package]]
name = "addr2line"
2023-08-23 06:58:30 +05:30
version = "0.21.0"
2023-06-28 07:54:20 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-23 06:58:30 +05:30
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
2023-06-28 07:54:20 +05:30
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2021-11-12 09:42:39 +05:30
[[package]]
name = "aho-corasick"
2024-03-20 07:51:26 +05:30
version = "1.1.3"
2021-11-12 09:42:39 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-20 07:51:26 +05:30
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2021-11-12 09:42:39 +05:30
dependencies = [
"memchr",
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "anyhow"
version = "1.0.86"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
2021-11-11 20:33:17 +05:30
[[package]]
name = "argv"
version = "0.1.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ec90225cd9dc43f6b1c9892603293f3767520a3e8440edec1f7d2a47b88c678"
2022-02-15 11:31:57 +05:30
[[package]]
name = "assay"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b6400785ccafeab7f18a4d23d726f9090dd1195386f06026c6e59db36e11938"
2022-02-15 11:31:57 +05:30
dependencies = [
"assay-proc-macro",
"pretty_assertions",
2022-02-15 11:31:57 +05:30
"rusty-fork",
"tempfile",
"tokio",
2022-02-15 11:31:57 +05:30
]
[[package]]
name = "assay-proc-macro"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d94121b572ccf1d1b38a1004155e59c64f4c6ff7793070d84a8807e0550881e"
2022-02-15 11:31:57 +05:30
dependencies = [
"quote",
2023-06-25 23:46:46 +05:30
"syn 1.0.109",
2022-02-15 11:31:57 +05:30
]
2023-06-28 07:54:20 +05:30
[[package]]
name = "backtrace"
2024-03-23 06:55:02 +05:30
version = "0.3.71"
2023-06-28 07:54:20 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 06:55:02 +05:30
checksum = "26b05800d2e817c8b3b4b54abd461726265fa9789ae34330622f2db9ee696f9d"
2023-06-28 07:54:20 +05:30
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-07-21 06:45:34 +05:30
[[package]]
name = "bitflags"
2024-03-20 07:51:26 +05:30
version = "2.5.0"
2023-07-21 06:45:34 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-20 07:51:26 +05:30
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
2023-07-21 06:45:34 +05:30
2021-11-11 20:33:17 +05:30
[[package]]
name = "block"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
2023-06-25 23:46:46 +05:30
[[package]]
name = "cc"
2024-05-07 07:00:18 +05:30
version = "1.0.97"
2023-06-25 23:46:46 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-07 07:00:18 +05:30
checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4"
2023-06-25 23:46:46 +05:30
2021-11-11 20:33:17 +05:30
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "clipboard-substitutor"
version = "0.7.7"
2021-11-11 20:33:17 +05:30
dependencies = [
"anyhow",
"argv",
2022-02-15 11:31:57 +05:30
"assay",
"copypasta",
2021-11-11 20:33:17 +05:30
"dirs",
2021-11-12 09:42:39 +05:30
"regex",
2021-11-11 20:33:17 +05:30
"serde",
"serde_derive",
"toml",
"tracing",
"tracing-journald",
"tracing-subscriber",
2021-11-11 20:33:17 +05:30
]
[[package]]
name = "clipboard-win"
version = "3.1.1"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fdf5e01086b6be750428ba4a40619f847eb2e95756eee84b18e06e5f0b50342"
2021-11-11 20:33:17 +05:30
dependencies = [
"lazy-bytes-cast",
2021-11-11 20:33:17 +05:30
"winapi",
]
[[package]]
name = "copypasta"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "deb85422867ca93da58b7f95fb5c0c10f6183ed6e1ef8841568968a896d3a858"
dependencies = [
"clipboard-win",
"objc",
"objc-foundation",
"objc_id",
"x11-clipboard",
]
2022-02-15 11:31:57 +05:30
[[package]]
name = "diff"
version = "0.1.13"
2022-02-15 11:31:57 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
2022-02-15 11:31:57 +05:30
2021-11-11 20:33:17 +05:30
[[package]]
name = "dirs"
version = "5.0.1"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
2021-11-11 20:33:17 +05:30
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.4.1"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
2021-11-11 20:33:17 +05:30
dependencies = [
"libc",
"option-ext",
2021-11-11 20:33:17 +05:30
"redox_users",
2023-11-28 07:40:21 +05:30
"windows-sys 0.48.0",
2021-11-11 20:33:17 +05:30
]
[[package]]
name = "equivalent"
2023-07-21 06:45:34 +05:30
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-21 06:45:34 +05:30
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
2023-06-25 23:46:46 +05:30
[[package]]
name = "errno"
2024-05-09 01:12:33 +05:30
version = "0.3.9"
2023-06-25 23:46:46 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 01:12:33 +05:30
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
2023-06-25 23:46:46 +05:30
dependencies = [
"libc",
2023-11-28 07:40:21 +05:30
"windows-sys 0.52.0",
2023-06-25 23:46:46 +05:30
]
2022-02-15 11:31:57 +05:30
[[package]]
name = "fastrand"
2024-04-28 09:43:31 +05:30
version = "2.1.0"
2022-02-15 11:31:57 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-28 09:43:31 +05:30
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
2022-02-15 11:31:57 +05:30
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "gethostname"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
dependencies = [
"libc",
"windows-targets 0.48.5",
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "getrandom"
2024-05-18 09:18:47 +05:30
version = "0.2.15"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 09:18:47 +05:30
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2021-11-11 20:33:17 +05:30
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2023-06-28 07:54:20 +05:30
[[package]]
name = "gimli"
2023-11-25 05:47:09 +05:30
version = "0.28.1"
2023-06-28 07:54:20 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-11-25 05:47:09 +05:30
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
2023-06-28 07:54:20 +05:30
[[package]]
name = "hashbrown"
2024-04-29 06:38:11 +05:30
version = "0.14.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-29 06:38:11 +05:30
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2023-06-25 23:46:46 +05:30
[[package]]
name = "hermit-abi"
2024-02-29 07:16:09 +05:30
version = "0.3.9"
2023-06-25 23:46:46 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-29 07:16:09 +05:30
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2023-06-25 23:46:46 +05:30
[[package]]
name = "indexmap"
2024-03-23 06:55:02 +05:30
version = "2.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-23 06:55:02 +05:30
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
dependencies = [
"equivalent",
"hashbrown",
]
[[package]]
name = "lazy-bytes-cast"
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10257499f089cd156ad82d0a9cd57d9501fa2c989068992a97eb3c27836f206b"
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2021-11-11 20:33:17 +05:30
[[package]]
name = "libc"
2024-05-18 09:18:47 +05:30
version = "0.2.155"
2023-06-25 23:46:46 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 09:18:47 +05:30
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
2023-06-25 23:46:46 +05:30
2023-11-05 07:06:48 +05:30
[[package]]
name = "libredox"
2024-04-01 06:05:01 +05:30
version = "0.1.3"
2023-11-05 07:06:48 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-01 06:05:01 +05:30
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2023-11-05 07:06:48 +05:30
dependencies = [
2024-04-01 06:05:01 +05:30
"bitflags",
2023-11-05 07:06:48 +05:30
"libc",
]
2023-06-25 23:46:46 +05:30
[[package]]
name = "linux-raw-sys"
2024-05-17 07:23:29 +05:30
version = "0.4.14"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-17 07:23:29 +05:30
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2021-11-11 20:33:17 +05:30
[[package]]
name = "log"
2024-02-29 07:16:09 +05:30
version = "0.4.21"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-29 07:16:09 +05:30
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
2021-11-11 20:33:17 +05:30
[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
dependencies = [
"libc",
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata 0.1.10",
]
2021-11-12 09:42:39 +05:30
[[package]]
name = "memchr"
2024-03-28 05:57:55 +05:30
version = "2.7.2"
2021-11-12 09:42:39 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-28 05:57:55 +05:30
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
2021-11-12 09:42:39 +05:30
2023-06-28 07:54:20 +05:30
[[package]]
name = "miniz_oxide"
2024-05-18 09:18:47 +05:30
version = "0.7.3"
2023-06-28 07:54:20 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 09:18:47 +05:30
checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
2023-06-28 07:54:20 +05:30
dependencies = [
"adler",
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2022-02-15 11:31:57 +05:30
[[package]]
name = "num_cpus"
2023-06-30 06:33:53 +05:30
version = "1.16.0"
2022-02-15 11:31:57 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-30 06:33:53 +05:30
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2022-02-15 11:31:57 +05:30
dependencies = [
2023-06-30 06:33:53 +05:30
"hermit-abi",
"libc",
2022-02-15 11:31:57 +05:30
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "objc"
version = "0.2.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
dependencies = [
"malloc_buf",
]
[[package]]
name = "objc-foundation"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1add1b659e36c9607c7aab864a76c7a4c2760cd0cd2e120f3fb8b952c7e22bf9"
dependencies = [
"block",
"objc",
"objc_id",
]
[[package]]
name = "objc_id"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c92d4ddb4bd7b50d730c215ff871754d0da6b2178849f8a2a2ab69712d0c073b"
dependencies = [
"objc",
]
2023-06-28 07:54:20 +05:30
[[package]]
name = "object"
2023-12-24 09:07:12 +05:30
version = "0.32.2"
2023-06-28 07:54:20 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-24 09:07:12 +05:30
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
2023-06-28 07:54:20 +05:30
dependencies = [
"memchr",
]
[[package]]
name = "once_cell"
2023-12-08 06:30:33 +05:30
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-08 06:30:33 +05:30
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-02-15 11:31:57 +05:30
[[package]]
name = "pin-project-lite"
2024-03-30 07:56:51 +05:30
version = "0.2.14"
2022-02-15 11:31:57 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-30 07:56:51 +05:30
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
2022-02-15 11:31:57 +05:30
[[package]]
name = "pretty_assertions"
2023-07-07 08:41:50 +05:30
version = "1.4.0"
2022-02-15 11:31:57 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-07-07 08:41:50 +05:30
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
2022-02-15 11:31:57 +05:30
dependencies = [
"diff",
"yansi",
2022-02-15 11:31:57 +05:30
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "proc-macro2"
2024-05-09 01:12:33 +05:30
version = "1.0.82"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 01:12:33 +05:30
checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
2021-11-11 20:33:17 +05:30
dependencies = [
2022-05-19 16:40:50 +05:30
"unicode-ident",
2021-11-11 20:33:17 +05:30
]
[[package]]
name = "quick-error"
version = "1.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2021-11-11 20:33:17 +05:30
[[package]]
name = "quote"
2024-04-11 06:55:13 +05:30
version = "1.0.36"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-11 06:55:13 +05:30
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2021-11-11 20:33:17 +05:30
dependencies = [
"proc-macro2",
]
[[package]]
name = "redox_users"
2024-04-01 06:05:01 +05:30
version = "0.4.5"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-01 06:05:01 +05:30
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
2021-11-11 20:33:17 +05:30
dependencies = [
"getrandom",
2023-11-05 07:06:48 +05:30
"libredox",
"thiserror",
2021-11-11 20:33:17 +05:30
]
2021-11-12 09:42:39 +05:30
[[package]]
name = "regex"
version = "1.10.4"
2021-11-12 09:42:39 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2021-11-12 09:42:39 +05:30
dependencies = [
"aho-corasick",
"memchr",
2024-03-05 06:41:25 +05:30
"regex-automata 0.4.6",
2024-03-27 07:49:20 +05:30
"regex-syntax 0.8.3",
2021-11-12 09:42:39 +05:30
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax 0.6.29",
]
[[package]]
name = "regex-automata"
2024-03-05 06:41:25 +05:30
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-05 06:41:25 +05:30
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
dependencies = [
"aho-corasick",
"memchr",
2024-03-27 07:49:20 +05:30
"regex-syntax 0.8.3",
]
2021-11-12 09:42:39 +05:30
[[package]]
name = "regex-syntax"
version = "0.6.29"
2021-11-12 09:42:39 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
2021-11-12 09:42:39 +05:30
[[package]]
name = "regex-syntax"
2024-03-27 07:49:20 +05:30
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-27 07:49:20 +05:30
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2023-06-28 07:54:20 +05:30
[[package]]
name = "rustc-demangle"
2024-05-09 01:12:33 +05:30
version = "0.1.24"
2023-06-28 07:54:20 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-09 01:12:33 +05:30
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2023-06-28 07:54:20 +05:30
2022-02-15 11:31:57 +05:30
[[package]]
2023-06-25 23:46:46 +05:30
name = "rustix"
2024-04-23 06:39:40 +05:30
version = "0.38.34"
2022-02-15 11:31:57 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-23 06:39:40 +05:30
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
2022-02-15 11:31:57 +05:30
dependencies = [
2024-04-01 06:05:01 +05:30
"bitflags",
2023-06-25 23:46:46 +05:30
"errno",
"libc",
"linux-raw-sys",
2023-12-01 06:58:33 +05:30
"windows-sys 0.52.0",
2022-02-15 11:31:57 +05:30
]
[[package]]
name = "rusty-fork"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb3dcc6e454c328bb824492db107ab7c0ae8fcffe4ad210136ef014458c1bc4f"
dependencies = [
"fnv",
"quick-error",
"tempfile",
"wait-timeout",
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "serde"
version = "1.0.202"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395"
2023-08-24 06:44:15 +05:30
dependencies = [
"serde_derive",
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "serde_derive"
version = "1.0.202"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838"
2021-11-11 20:33:17 +05:30
dependencies = [
"proc-macro2",
"quote",
2024-05-17 07:23:29 +05:30
"syn 2.0.64",
2021-11-11 20:33:17 +05:30
]
[[package]]
name = "serde_spanned"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "79e674e01f999af37c49f70a6ede167a8a60b2503e56c5599532a65baa5969a0"
dependencies = [
"serde",
]
[[package]]
name = "sharded-slab"
2023-10-05 05:31:53 +05:30
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-05 05:31:53 +05:30
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
"lazy_static",
]
[[package]]
name = "smallvec"
2024-03-21 05:56:36 +05:30
version = "1.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-21 05:56:36 +05:30
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2021-11-11 20:33:17 +05:30
[[package]]
name = "syn"
2023-06-25 23:46:46 +05:30
version = "1.0.109"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-06-25 23:46:46 +05:30
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2021-11-11 20:33:17 +05:30
dependencies = [
"proc-macro2",
"quote",
2022-05-19 16:40:50 +05:30
"unicode-ident",
2021-11-11 20:33:17 +05:30
]
2023-03-18 17:06:01 +05:30
[[package]]
name = "syn"
2024-05-17 07:23:29 +05:30
version = "2.0.64"
2023-03-18 17:06:01 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-17 07:23:29 +05:30
checksum = "7ad3dee41f36859875573074334c200d1add8e4a87bb37113ebd31d926b7b11f"
2023-03-18 17:06:01 +05:30
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
2022-02-15 11:31:57 +05:30
[[package]]
name = "tempfile"
2024-02-27 07:21:22 +05:30
version = "3.10.1"
2022-02-15 11:31:57 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-27 07:21:22 +05:30
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
2022-02-15 11:31:57 +05:30
dependencies = [
"cfg-if",
"fastrand",
2023-06-25 23:46:46 +05:30
"rustix",
2023-12-29 06:26:03 +05:30
"windows-sys 0.52.0",
2022-02-15 11:31:57 +05:30
]
[[package]]
name = "thiserror"
2024-05-18 09:18:47 +05:30
version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 09:18:47 +05:30
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2024-05-18 09:18:47 +05:30
version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-18 09:18:47 +05:30
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
dependencies = [
"proc-macro2",
"quote",
2024-05-17 07:23:29 +05:30
"syn 2.0.64",
]
[[package]]
name = "thread_local"
2024-02-21 09:13:54 +05:30
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-21 09:13:54 +05:30
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
dependencies = [
2023-02-16 19:53:18 +05:30
"cfg-if",
"once_cell",
]
[[package]]
name = "tokio"
2024-03-29 05:37:11 +05:30
version = "1.37.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-29 05:37:11 +05:30
checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787"
dependencies = [
2023-06-28 07:54:20 +05:30
"backtrace",
"num_cpus",
"pin-project-lite",
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "toml"
version = "0.8.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4e43f8cc456c9704c851ae29c67e17ef65d2c30017c17a9765b89c382dc8bba"
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
"toml_edit",
]
[[package]]
name = "toml_datetime"
version = "0.6.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4badfd56924ae69bcc9039335b2e017639ce3f9b001c393c1b2d1ef846ce2cbf"
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
version = "0.22.13"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c127785850e8c20836d49732ae6abfa47616e60bf9d9f57c43c250361a9db96c"
2021-11-11 20:33:17 +05:30
dependencies = [
"indexmap",
2021-11-11 20:33:17 +05:30
"serde",
"serde_spanned",
"toml_datetime",
"winnow",
2021-11-11 20:33:17 +05:30
]
[[package]]
name = "tracing"
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
2024-05-17 07:23:29 +05:30
"syn 2.0.64",
]
[[package]]
name = "tracing-core"
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
dependencies = [
"once_cell",
"valuable",
]
[[package]]
name = "tracing-journald"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba316a74e8fc3c3896a850dba2375928a9fa171b085ecddfc7c054d39970f3fd"
dependencies = [
"libc",
"tracing-core",
"tracing-subscriber",
]
[[package]]
name = "tracing-log"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
"log",
2023-10-24 06:22:00 +05:30
"once_cell",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
dependencies = [
"matchers",
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
2021-11-11 20:33:17 +05:30
[[package]]
2022-05-19 16:40:50 +05:30
name = "unicode-ident"
2023-09-13 13:32:43 +05:30
version = "1.0.12"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-13 13:32:43 +05:30
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2021-11-11 20:33:17 +05:30
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2022-02-15 11:31:57 +05:30
[[package]]
name = "wait-timeout"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
dependencies = [
"libc",
]
2021-11-11 20:33:17 +05:30
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-11-11 20:33:17 +05:30
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-11-28 07:40:21 +05:30
"windows-targets 0.48.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-04-13 07:28:12 +05:30
"windows-targets 0.52.5",
]
[[package]]
name = "windows-targets"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
2023-11-28 07:40:21 +05:30
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
2023-11-28 07:40:21 +05:30
dependencies = [
2024-04-13 07:28:12 +05:30
"windows_aarch64_gnullvm 0.52.5",
"windows_aarch64_msvc 0.52.5",
"windows_i686_gnu 0.52.5",
"windows_i686_gnullvm",
"windows_i686_msvc 0.52.5",
"windows_x86_64_gnu 0.52.5",
"windows_x86_64_gnullvm 0.52.5",
"windows_x86_64_msvc 0.52.5",
]
[[package]]
name = "windows_aarch64_gnullvm"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_aarch64_gnullvm"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_aarch64_msvc"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_aarch64_msvc"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_i686_gnu"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_i686_gnu"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_i686_msvc"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_i686_msvc"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_x86_64_gnu"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_x86_64_gnu"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_x86_64_gnullvm"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_x86_64_msvc"
2023-08-19 05:40:42 +05:30
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-19 05:40:42 +05:30
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-11-28 07:40:21 +05:30
[[package]]
name = "windows_x86_64_msvc"
2024-04-13 07:28:12 +05:30
version = "0.52.5"
2023-11-28 07:40:21 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-13 07:28:12 +05:30
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
2023-11-28 07:40:21 +05:30
[[package]]
name = "winnow"
2024-05-06 09:04:44 +05:30
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-06 09:04:44 +05:30
checksum = "c3c52e9c97a68071b23e836c9380edae937f17b9c4667bd021973efc689f618d"
dependencies = [
"memchr",
]
[[package]]
name = "x11-clipboard"
2024-03-01 07:49:34 +05:30
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-01 07:49:34 +05:30
checksum = "b98785a09322d7446e28a13203d2cae1059a0dd3dfb32cb06d0a225f023d8286"
dependencies = [
"libc",
"x11rb",
2021-11-11 20:33:17 +05:30
]
[[package]]
name = "x11rb"
2024-05-03 07:14:42 +05:30
version = "0.13.1"
2021-11-11 20:33:17 +05:30
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 07:14:42 +05:30
checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
2021-11-11 20:33:17 +05:30
dependencies = [
"gethostname",
"rustix",
"x11rb-protocol",
]
[[package]]
name = "x11rb-protocol"
2024-05-03 07:14:42 +05:30
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-03 07:14:42 +05:30
checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"