ironbar/Cargo.lock

2775 lines
66 KiB
Plaintext
Raw Normal View History

2022-08-14 16:30:13 +03:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "addr2line"
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9ecd88a8c8378ca913a680cd98f0f13ac67383d35993f86c90a70e3f137816b"
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
2022-08-14 16:30:13 +03:00
[[package]]
name = "ahash"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
2022-10-15 01:53:13 +03:00
version = "0.7.19"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "b4f55bd91a0978cbfd91c457a164bab8b4001c833b7f323132c0a4e1922dd44e"
2022-08-14 16:30:13 +03:00
dependencies = [
"memchr",
]
[[package]]
2022-10-15 01:53:13 +03:00
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
2022-10-15 01:53:13 +03:00
"libc",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "anyhow"
2022-11-02 01:56:47 +03:00
version = "1.0.66"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "216261ddc8289130e551ddcd5ce8a064710c0d064a4d2895c67151c92b5443f6"
2022-08-14 16:30:13 +03:00
[[package]]
name = "arrayvec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
2022-08-14 16:30:13 +03:00
[[package]]
name = "async-broadcast"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d26004fe83b2d1cd3a97609b21e39f9a31535822210fe83205d2ce48866ea61"
dependencies = [
"event-listener",
"futures-core",
"parking_lot",
]
[[package]]
name = "async-channel"
2022-10-15 01:53:13 +03:00
version = "1.7.1"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "e14485364214912d3b19cc3435dde4df66065127f05fa0d75c712f36f12c2f28"
2022-08-14 16:30:13 +03:00
dependencies = [
"concurrent-queue",
"event-listener",
"futures-core",
]
[[package]]
name = "async-executor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "871f9bb5e0a22eeb7e8cf16641feb87c9dc67032ccf8ff49e772eb9941d3a965"
dependencies = [
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"once_cell",
"slab",
]
[[package]]
name = "async-io"
2022-11-02 01:56:47 +03:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "e8121296a9f05be7f34aa4196b1747243b3b62e048bb7906f644f3fbfc490cf7"
dependencies = [
2022-11-02 01:56:47 +03:00
"async-lock",
"autocfg",
"concurrent-queue",
"futures-lite",
"libc",
"log",
"parking",
"polling",
"slab",
"socket2",
"waker-fn",
"winapi",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "async-lock"
2022-11-02 01:56:47 +03:00
version = "2.6.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "c8101efe8695a6c17e02911402145357e718ac92d3ff88ae8419e84b1707b685"
2022-08-14 16:30:13 +03:00
dependencies = [
"event-listener",
2022-11-02 01:56:47 +03:00
"futures-lite",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "async-pidfd"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12177058299bb8e3507695941b6d0d7dc0e4e6515b8bc1bf4609d9e32ef51799"
dependencies = [
"async-io",
"libc",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "async-recursion"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7d78656ba01f1b93024b7c3a0467f1608e4be67d725749fdcd7d2c7678fd7a2"
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "async-task"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a40729d2133846d9ed0ea60a8b9541bccddab49cd30f0715a1da672fe9a2524"
[[package]]
name = "async-trait"
2022-11-02 01:56:47 +03:00
version = "0.1.58"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "async_once"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ce4f10ea3abcd6617873bae9f91d1c5332b4a778bd9ce34d0cd517474c1de82"
2022-08-14 16:30:13 +03:00
[[package]]
name = "atk"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "39991bc421ddf72f70159011b323ff49b0f783cc676a7287c59453da2e2531cf"
2022-08-14 16:30:13 +03:00
dependencies = [
"atk-sys",
"bitflags",
"glib",
"libc",
]
[[package]]
name = "atk-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "11ad703eb64dc058024f0e57ccfa069e15a413b98dbd50a1a950e743b7f11148"
2022-08-14 16:30:13 +03:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
"system-deps",
]
[[package]]
name = "autocfg"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]]
name = "backtrace"
version = "0.3.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7"
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "block-buffer"
2022-10-15 01:53:13 +03:00
version = "0.10.3"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
2022-08-14 16:30:13 +03:00
dependencies = [
"generic-array",
]
2022-10-15 01:53:13 +03:00
[[package]]
name = "bumpalo"
2022-11-02 01:56:47 +03:00
version = "3.11.1"
2022-10-15 01:53:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
2022-10-15 01:53:13 +03:00
2022-08-14 16:30:13 +03:00
[[package]]
name = "byteorder"
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
[[package]]
name = "bytes"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec8a7b6a70fde80372154c65702f00a0f56f3e1c36abbc6c440484be248856db"
[[package]]
name = "cache-padded"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c1db59621ec70f09c5e9b597b220c7a2b43611f4710dc03ceb8748637775692c"
[[package]]
name = "cairo-rs"
2022-11-02 01:56:47 +03:00
version = "0.16.1"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "08f9ee4a4ca9239c9a839453dce04b7ddee2f859ec4cd7acd1f5703b68db549c"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"cairo-sys-rs",
"glib",
"libc",
2022-11-02 01:56:47 +03:00
"once_cell",
2022-08-14 16:30:13 +03:00
"thiserror",
]
[[package]]
name = "cairo-sys-rs"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "5119ea655ec777b523f0b57279e70f8a4542f61b0e98a48f892b4ef043fd4c5d"
2022-08-14 16:30:13 +03:00
dependencies = [
"glib-sys",
"libc",
"system-deps",
]
[[package]]
name = "calloop"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a22a6a8f622f797120d452c630b0ab12e1331a1a753e2039ce7868d4ac77b4ee"
dependencies = [
"log",
"nix 0.24.2",
"slotmap",
"thiserror",
"vec_map",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "cc"
2022-11-02 01:56:47 +03:00
version = "1.0.74"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "581f5dba903aac52ea3feb5ec4810848460ee833876f1f9b0fdeab1f19091574"
2022-08-14 16:30:13 +03:00
[[package]]
name = "cfg-expr"
2022-11-02 01:56:47 +03:00
version = "0.11.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "b0357a6402b295ca3a86bc148e84df46c02e41f41fef186bda662557ef6328aa"
2022-08-14 16:30:13 +03:00
dependencies = [
"smallvec",
]
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
2022-10-15 01:53:13 +03:00
version = "0.4.22"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "bfd4d1b31faaa3a89d7934dbded3111da0d2ef28e3ebccdb4f0179f5929d1ef1"
2022-08-14 16:30:13 +03:00
dependencies = [
2022-10-15 01:53:13 +03:00
"iana-time-zone",
"js-sys",
2022-08-14 16:30:13 +03:00
"num-integer",
"num-traits",
"time 0.1.44",
2022-10-15 01:53:13 +03:00
"wasm-bindgen",
"winapi",
2022-08-14 16:30:13 +03:00
]
2022-10-15 01:53:13 +03:00
[[package]]
name = "codespan-reporting"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
dependencies = [
"termcolor",
"unicode-width",
]
[[package]]
name = "color-eyre"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a667583cca8c4f8436db8de46ea8233c42a7d9ae424a82d338f2e4675229204"
dependencies = [
"backtrace",
"color-spantrace",
"eyre",
"indenter",
"once_cell",
"owo-colors",
"tracing-error",
]
[[package]]
name = "color-spantrace"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ba75b3d9449ecdccb27ecbc479fdc0b87fa2dd43d2f8298f9bf0e59aacc8dce"
dependencies = [
"once_cell",
"owo-colors",
"tracing-core",
"tracing-error",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "concurrent-queue"
version = "1.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af4780a44ab5696ea9e28294517f1fffb421a83a25af521333c838635509db9c"
dependencies = [
"cache-padded",
]
[[package]]
name = "core-foundation-sys"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
[[package]]
name = "cpufeatures"
2022-10-15 01:53:13 +03:00
version = "0.2.5"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
2022-08-14 16:30:13 +03:00
dependencies = [
"libc",
]
[[package]]
name = "crossbeam-channel"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
dependencies = [
"cfg-if",
"crossbeam-utils",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "crossbeam-deque"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
"crossbeam-epoch",
"crossbeam-utils",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "crossbeam-epoch"
2022-10-15 01:53:13 +03:00
version = "0.9.11"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "f916dfc5d356b0ed9dae65f1db9fc9770aa2851d2662b988ccf4fe3516e86348"
2022-08-14 16:30:13 +03:00
dependencies = [
"autocfg",
"cfg-if",
"crossbeam-utils",
2022-08-14 16:30:13 +03:00
"memoffset",
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2022-10-15 01:53:13 +03:00
version = "0.8.12"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "edbafec5fa1f196ca66527c1b12c2ec4745ca14b50f1ad8f9f6f720b55d11fac"
2022-08-14 16:30:13 +03:00
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
2022-10-15 01:53:13 +03:00
[[package]]
name = "cxx"
2022-11-02 01:56:47 +03:00
version = "1.0.80"
2022-10-15 01:53:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "6b7d4e43b25d3c994662706a1d4fcfc32aaa6afd287502c111b237093bb23f3a"
2022-10-15 01:53:13 +03:00
dependencies = [
"cc",
"cxxbridge-flags",
"cxxbridge-macro",
"link-cplusplus",
]
[[package]]
name = "cxx-build"
2022-11-02 01:56:47 +03:00
version = "1.0.80"
2022-10-15 01:53:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "84f8829ddc213e2c1368e51a2564c552b65a8cb6a28f31e576270ac81d5e5827"
2022-10-15 01:53:13 +03:00
dependencies = [
"cc",
"codespan-reporting",
"once_cell",
"proc-macro2",
"quote",
"scratch",
"syn",
]
[[package]]
name = "cxxbridge-flags"
2022-11-02 01:56:47 +03:00
version = "1.0.80"
2022-10-15 01:53:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "e72537424b474af1460806647c41d4b6d35d09ef7fe031c5c2fa5766047cc56a"
2022-10-15 01:53:13 +03:00
[[package]]
name = "cxxbridge-macro"
2022-11-02 01:56:47 +03:00
version = "1.0.80"
2022-10-15 01:53:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "309e4fb93eed90e1e14bea0da16b209f81813ba9fc7830c20ed151dd7bc0a4d7"
2022-10-15 01:53:13 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "darling"
2022-11-02 01:56:47 +03:00
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "b0dd3cd20dc6b5a876612a6e5accfe7f3dd883db6d07acfbf14c128f61550dfa"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2022-11-02 01:56:47 +03:00
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "a784d2ccaf7c98501746bf0be29b2022ba41fd62a2e622af997a03e9f972859f"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
2022-11-02 01:56:47 +03:00
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "7618812407e9402654622dd402b0a89dff9ba93badd6540781526117b92aab7e"
dependencies = [
"darling_core",
"quote",
"syn",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "derivative"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "derive_builder"
version = "0.11.2"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07adf7be193b71cc36b193d0f5fe60b918a3a9db4dad0449f57bcfd519704a3"
2022-08-14 16:30:13 +03:00
dependencies = [
"derive_builder_macro",
]
[[package]]
name = "derive_builder_core"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f91d4cfa921f1c05904dc3c57b4a32c38aed3340cce209f3a6fd1478babafc4"
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "derive_builder_macro"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f0314b72bed045f3a68671b3c86328386762c93f82d98c65c3cb5e5f573dd68"
dependencies = [
"derive_builder_core",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "digest"
2022-10-15 01:53:13 +03:00
version = "0.10.5"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "adfbc57365a37acbd2ebf2b64d7e69bb766e2fea813521ed536f5d0520dcf86c"
2022-08-14 16:30:13 +03:00
dependencies = [
"block-buffer",
"crypto-common",
]
[[package]]
name = "dirs"
version = "4.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
dependencies = [
"libc",
"redox_users",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "dlib"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac1b7517328c04c2aa68422fc60a41b92208182142ed04a25879c26c8f878794"
dependencies = [
"libloading",
]
[[package]]
name = "downcast-rs"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650"
2022-08-14 16:30:13 +03:00
[[package]]
name = "either"
2022-10-15 01:53:13 +03:00
version = "1.8.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
2022-08-14 16:30:13 +03:00
[[package]]
name = "enumflags2"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb"
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
version = "0.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae"
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "event-listener"
version = "2.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
[[package]]
name = "eyre"
version = "0.6.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c2b6b5a29c02cdc822728b7d7b8ae1bab3e3b05d44522770ddd49722eeac7eb"
dependencies = [
"indenter",
"once_cell",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "fastrand"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
dependencies = [
"instant",
]
[[package]]
name = "field-offset"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e1c54951450cbd39f3dbcf1005ac413b49487dabf18a720ad2383eccfeffb92"
dependencies = [
"memoffset",
"rustc_version",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "filetime"
2022-11-02 01:56:47 +03:00
version = "0.2.18"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3"
2022-08-14 16:30:13 +03:00
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
"libc",
"redox_syscall",
"windows-sys",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "futures-channel"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
2022-08-14 16:30:13 +03:00
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
2022-08-14 16:30:13 +03:00
[[package]]
name = "futures-executor"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
2022-08-14 16:30:13 +03:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
2022-08-14 16:30:13 +03:00
[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
"fastrand",
"futures-core",
"futures-io",
"memchr",
"parking",
"pin-project-lite",
"waker-fn",
]
[[package]]
name = "futures-macro"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "futures-sink"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
2022-08-14 16:30:13 +03:00
[[package]]
name = "futures-task"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
2022-08-14 16:30:13 +03:00
[[package]]
name = "futures-util"
2022-11-02 01:56:47 +03:00
version = "0.3.25"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
2022-08-14 16:30:13 +03:00
dependencies = [
"futures-core",
"futures-macro",
"futures-sink",
"futures-task",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "gdk"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "8f0a4a7aa015962d02634258715164977eb151b48fd250dcac48fab8d312a5aa"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"cairo-rs",
"gdk-pixbuf",
"gdk-sys",
"gio",
"glib",
"libc",
"pango",
]
[[package]]
name = "gdk-pixbuf"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "c0fb526c8c3a075eda15f961820edf3e15fe18576ac4fbabbb324e4cc6c421e6"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"gdk-pixbuf-sys",
"gio",
"glib",
"libc",
]
[[package]]
name = "gdk-pixbuf-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "7df12d15c10c3c5a84d9fb4ba0e27659f6a2bdee4f27f8b17126da15d5ddd3f2"
2022-08-14 16:30:13 +03:00
dependencies = [
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
"system-deps",
]
[[package]]
name = "gdk-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "d76354f97a913e55b984759a997b693aa7dc71068c9e98bcce51aa167a0a5c5a"
2022-08-14 16:30:13 +03:00
dependencies = [
"cairo-sys-rs",
"gdk-pixbuf-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
"pango-sys",
"pkg-config",
"system-deps",
]
[[package]]
name = "generic-array"
version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2022-11-02 01:56:47 +03:00
version = "0.2.8"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
2022-08-14 16:30:13 +03:00
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
"libc",
"wasi 0.11.0+wasi-snapshot-preview1",
]
[[package]]
name = "gimli"
version = "0.26.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22030e2c5a68ec659fde1e949a745124b48e6fa8b045b7ed5bd1fe4ccc5c4e5d"
2022-08-14 16:30:13 +03:00
[[package]]
name = "gio"
2022-11-02 01:56:47 +03:00
version = "0.16.2"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "33c1debf8d0315d69be0153aa76249db3c858ef69b7778ad3cc669e6d370c485"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"futures-channel",
"futures-core",
"futures-io",
2022-11-02 01:56:47 +03:00
"futures-util",
2022-08-14 16:30:13 +03:00
"gio-sys",
"glib",
"libc",
"once_cell",
2022-11-02 01:56:47 +03:00
"pin-project-lite",
"smallvec",
2022-08-14 16:30:13 +03:00
"thiserror",
]
[[package]]
name = "gio-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "6da1bba9d3f2ab13a6e9932c40f240dc99ebc9f0bdc35cfb130d1a3df36f374c"
2022-08-14 16:30:13 +03:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
"system-deps",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "glib"
2022-11-02 01:56:47 +03:00
version = "0.16.2"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "d5abffa711471e015eb93d65d6ea20e7e9f6f7951fc0a1042280439319b2de06"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"futures-channel",
"futures-core",
"futures-executor",
"futures-task",
2022-11-02 01:56:47 +03:00
"futures-util",
"gio-sys",
2022-08-14 16:30:13 +03:00
"glib-macros",
"glib-sys",
"gobject-sys",
"libc",
"once_cell",
"smallvec",
"thiserror",
]
[[package]]
name = "glib-macros"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "e195c1311fa6b04d7b896ea39385f6bd60ef5d25bf74a7c11c8c3f94f6c1a572"
2022-08-14 16:30:13 +03:00
dependencies = [
"anyhow",
"heck",
"proc-macro-crate",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "glib-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "b33357bb421a77bd849f6a0bfcaf3b4b256a2577802971bb5dd522d530f27021"
2022-08-14 16:30:13 +03:00
dependencies = [
"libc",
"system-deps",
]
[[package]]
name = "gobject-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "63ca11a57400f3d4fda594e002844be47900c9fb8b29e2155c6e37a1f24e51b3"
2022-08-14 16:30:13 +03:00
dependencies = [
"glib-sys",
"libc",
"system-deps",
]
[[package]]
name = "gtk"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "200d06a383a5ce5fa5611fa37f5ab34286289ede05d41c1f21aa8a2e1975c0ba"
2022-08-14 16:30:13 +03:00
dependencies = [
"atk",
"bitflags",
"cairo-rs",
"field-offset",
"futures-channel",
"gdk",
"gdk-pixbuf",
"gio",
"glib",
"gtk-sys",
"gtk3-macros",
"libc",
"once_cell",
"pango",
"pkg-config",
]
[[package]]
name = "gtk-layer-shell"
2022-11-02 01:56:47 +03:00
version = "0.5.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "9f0ef12cc0d52f9226cbfc83f766a52fc667002ed15ddd1c37a388abe7d03f8c"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"gdk",
"glib",
"glib-sys",
"gtk",
"gtk-layer-shell-sys",
"libc",
]
[[package]]
name = "gtk-layer-shell-sys"
2022-11-02 01:56:47 +03:00
version = "0.5.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "7095dbaf56028d8a238e8b8f3039a537587cb7a6efbdba2b539375fe5689295d"
2022-08-14 16:30:13 +03:00
dependencies = [
"gdk-sys",
"glib-sys",
"gtk-sys",
"libc",
"system-deps",
]
[[package]]
name = "gtk-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "89b5f8946685d5fe44497007786600c2f368ff6b1e61a16251c89f72a97520a3"
2022-08-14 16:30:13 +03:00
dependencies = [
"atk-sys",
"cairo-sys-rs",
"gdk-pixbuf-sys",
"gdk-sys",
"gio-sys",
"glib-sys",
"gobject-sys",
"libc",
"pango-sys",
"system-deps",
]
[[package]]
name = "gtk3-macros"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "8cfd6557b1018b773e43c8de9d0d13581d6b36190d0501916cbec4731db5ccff"
2022-08-14 16:30:13 +03:00
dependencies = [
"anyhow",
"proc-macro-crate",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "heck"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
[[package]]
name = "hermit-abi"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
dependencies = [
"libc",
]
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2022-10-15 01:53:13 +03:00
[[package]]
name = "iana-time-zone"
2022-11-02 01:56:47 +03:00
version = "0.1.53"
2022-10-15 01:53:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
2022-10-15 01:53:13 +03:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"winapi",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
2022-10-15 01:53:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
2022-10-15 01:53:13 +03:00
dependencies = [
"cxx",
"cxx-build",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "ident_case"
version = "1.0.1"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2022-08-14 16:30:13 +03:00
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2022-08-14 16:30:13 +03:00
[[package]]
name = "indexmap"
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e"
dependencies = [
"autocfg",
"hashbrown",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "inotify"
version = "0.9.6"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"inotify-sys",
"libc",
]
[[package]]
name = "inotify-sys"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
dependencies = [
"libc",
]
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "ironbar"
2022-10-15 20:26:51 +03:00
version = "0.6.0"
2022-08-14 16:30:13 +03:00
dependencies = [
"async_once",
2022-08-14 16:30:13 +03:00
"chrono",
"color-eyre",
"derive_builder",
2022-08-14 16:30:13 +03:00
"dirs",
"futures-util",
"glib",
"gtk",
"gtk-layer-shell",
"lazy_static",
"libcorn",
2022-08-14 16:30:13 +03:00
"mpd_client",
"notify",
"regex",
"serde",
"serde_json",
"serde_yaml",
"smithay-client-toolkit",
2022-08-14 16:30:13 +03:00
"stray",
"strip-ansi-escapes",
"swayipc-async",
2022-08-14 16:30:13 +03:00
"sysinfo",
"tokio",
"toml",
"tracing",
"tracing-appender",
"tracing-error",
"tracing-subscriber",
2022-08-14 16:30:13 +03:00
"walkdir",
"wayland-client",
"wayland-protocols",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "itoa"
2022-10-15 01:53:13 +03:00
version = "1.0.4"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
[[package]]
name = "js-sys"
version = "0.3.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
dependencies = [
"wasm-bindgen",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "kqueue"
version = "1.0.7"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c8fc60ba15bf51257aa9807a48a61013db043fcf3a78cb0d916e8e396dcad98"
2022-08-14 16:30:13 +03:00
dependencies = [
"kqueue-sys",
"libc",
]
[[package]]
name = "kqueue-sys"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8367585489f01bc55dd27404dcf56b95e6da061a256a666ab23be9ba96a2e587"
dependencies = [
"bitflags",
"libc",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-11-02 01:56:47 +03:00
version = "0.2.137"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
2022-08-14 16:30:13 +03:00
[[package]]
name = "libcorn"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0cc0f2cad23e81a2f48e4b0142a9f278bc7369a98b04cd7cc190ede637085da"
dependencies = [
"cfg-if",
"pest",
"pest_derive",
"serde",
"toml",
]
[[package]]
name = "libloading"
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
dependencies = [
"cfg-if",
"winapi",
]
2022-10-15 01:53:13 +03:00
[[package]]
name = "link-cplusplus"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9272ab7b96c9046fbc5bc56c06c117cb639fe2d509df0c421cad82d2915cf369"
dependencies = [
"cc",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "lock_api"
2022-10-15 01:53:13 +03:00
version = "0.4.9"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
2022-08-14 16:30:13 +03:00
dependencies = [
"autocfg",
"scopeguard",
]
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "memchr"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
[[package]]
name = "memmap2"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95af15f345b17af2efc8ead6080fb8bc376f8cec1b35277b935637595fe77498"
dependencies = [
"libc",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
2022-10-15 01:53:13 +03:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "96590ba8f175222643a85693f33d26e9c8a015f599c216509b1a6894af675d34"
dependencies = [
"adler",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "mio"
2022-11-02 01:56:47 +03:00
version = "0.8.5"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
2022-08-14 16:30:13 +03:00
dependencies = [
"libc",
"log",
"wasi 0.11.0+wasi-snapshot-preview1",
"windows-sys",
]
[[package]]
name = "mpd_client"
version = "1.0.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ddb4e7f7f0323823dcadfb17cb8b4d25d7ebcfee20779a814091d5b6dec95"
2022-08-14 16:30:13 +03:00
dependencies = [
"bytes",
"mpd_protocol",
"tokio",
"tracing",
]
[[package]]
name = "mpd_protocol"
version = "1.0.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "afcc158275b88361fed416b6efe013286b8fe0c8929bbd569504e5992f638693"
2022-08-14 16:30:13 +03:00
dependencies = [
"ahash",
2022-08-14 16:30:13 +03:00
"bytes",
"nom",
"tokio",
"tracing",
]
[[package]]
name = "nix"
version = "0.23.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f866317acbd3a240710c63f065ffb1e4fd466259045ccb504130b7f668f35c6"
dependencies = [
"bitflags",
"cc",
"cfg-if",
2022-08-14 16:30:13 +03:00
"libc",
"memoffset",
]
[[package]]
name = "nix"
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "195cdbc1741b8134346d515b3a56a1c94b0912758009cfd53f99ea0f57b065fc"
dependencies = [
"bitflags",
"cfg-if",
"libc",
"memoffset",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "nom"
version = "7.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "notify"
version = "5.0.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed2c66da08abae1c024c01d635253e402341b4060a12e99b31c7594063bf490a"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
"filetime",
"inotify",
"kqueue",
2022-08-14 16:30:13 +03:00
"libc",
"mio",
2022-08-14 16:30:13 +03:00
"walkdir",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "ntapi"
2022-10-15 01:53:13 +03:00
version = "0.4.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "bc51db7b362b205941f71232e56c625156eb9a929f8cf74a428fd5bc094a4afc"
2022-08-14 16:30:13 +03:00
dependencies = [
"winapi",
2022-08-14 16:30:13 +03:00
]
2022-10-15 01:53:13 +03:00
[[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-08-14 16:30:13 +03:00
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
version = "1.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "num_threads"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
dependencies = [
"libc",
]
[[package]]
name = "object"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53"
dependencies = [
"memchr",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "once_cell"
2022-11-02 01:56:47 +03:00
version = "1.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
2022-08-14 16:30:13 +03:00
[[package]]
name = "ordered-stream"
version = "0.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "44630c059eacfd6e08bdaa51b1db2ce33119caa4ddc1235e923109aa5f25ccb1"
dependencies = [
"futures-core",
"pin-project-lite",
]
2022-10-15 01:53:13 +03:00
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
2022-08-14 16:30:13 +03:00
[[package]]
name = "owo-colors"
2022-10-15 01:53:13 +03:00
version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
2022-08-14 16:30:13 +03:00
[[package]]
name = "pango"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "7208c60f224cf6e44c551df5ee2ef38f9da0fd29d7c5a0402000b8ab0520e798"
2022-08-14 16:30:13 +03:00
dependencies = [
"bitflags",
2022-11-02 01:56:47 +03:00
"gio",
2022-08-14 16:30:13 +03:00
"glib",
"libc",
"once_cell",
"pango-sys",
]
[[package]]
name = "pango-sys"
2022-11-02 01:56:47 +03:00
version = "0.16.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "922441c228366ed98d3534b87bc7c987c50564094c3abbc3513717786419252d"
2022-08-14 16:30:13 +03:00
dependencies = [
"glib-sys",
"gobject-sys",
"libc",
"system-deps",
]
[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-11-02 01:56:47 +03:00
version = "0.9.4"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
2022-08-14 16:30:13 +03:00
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
"libc",
"redox_syscall",
"smallvec",
"windows-sys",
]
[[package]]
name = "pest"
2022-10-15 01:53:13 +03:00
version = "2.4.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "dbc7bc69c062e492337d74d59b120c274fd3d261b6bf6d3207d499b4b379c41a"
2022-08-14 16:30:13 +03:00
dependencies = [
"thiserror",
"ucd-trie",
]
[[package]]
name = "pest_derive"
2022-10-15 01:53:13 +03:00
version = "2.4.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "60b75706b9642ebcb34dab3bc7750f811609a0eb1dd8b88c2d15bf628c1c65b2"
2022-08-14 16:30:13 +03:00
dependencies = [
"pest",
"pest_generator",
]
[[package]]
name = "pest_generator"
2022-10-15 01:53:13 +03:00
version = "2.4.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "f4f9272122f5979a6511a749af9db9bfc810393f63119970d7085fed1c4ea0db"
2022-08-14 16:30:13 +03:00
dependencies = [
"pest",
"pest_meta",
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "pest_meta"
2022-10-15 01:53:13 +03:00
version = "2.4.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "4c8717927f9b79515e565a64fe46c38b8cd0427e64c40680b14a7365ab09ac8d"
2022-08-14 16:30:13 +03:00
dependencies = [
"once_cell",
"pest",
2022-10-15 01:53:13 +03:00
"sha1 0.10.5",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
2022-11-02 01:56:47 +03:00
version = "0.3.26"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
2022-08-14 16:30:13 +03:00
[[package]]
name = "polling"
2022-11-02 01:56:47 +03:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "ab4609a838d88b73d8238967b60dd115cc08d38e2bbaf51ee1e4b695f89122e2"
dependencies = [
"autocfg",
"cfg-if",
"libc",
"log",
"wepoll-ffi",
"winapi",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "ppv-lite86"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
[[package]]
name = "proc-macro-crate"
2022-10-15 01:53:13 +03:00
version = "1.2.1"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
2022-08-14 16:30:13 +03:00
dependencies = [
2022-10-15 01:53:13 +03:00
"once_cell",
2022-08-14 16:30:13 +03:00
"thiserror",
"toml",
]
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
2022-08-14 16:30:13 +03:00
"version_check",
]
[[package]]
name = "proc-macro2"
2022-10-16 02:56:47 +03:00
version = "1.0.47"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-16 02:56:47 +03:00
checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
2022-08-14 16:30:13 +03:00
dependencies = [
"unicode-ident",
]
[[package]]
name = "quote"
2022-10-15 01:53:13 +03:00
version = "1.0.21"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
2022-08-14 16:30:13 +03:00
]
[[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"
2022-10-15 01:53:13 +03:00
version = "0.6.4"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2022-08-14 16:30:13 +03:00
dependencies = [
"getrandom",
]
[[package]]
name = "rayon"
version = "1.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
dependencies = [
"crossbeam-channel",
2022-08-14 16:30:13 +03:00
"crossbeam-deque",
"crossbeam-utils",
2022-08-14 16:30:13 +03:00
"num_cpus",
]
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
"getrandom",
"redox_syscall",
"thiserror",
]
[[package]]
name = "regex"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "regex-syntax"
version = "0.6.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "rustc-demangle"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ef03e0a2b150c7a90d01faf6254c9c48a41e95fb2a8c2ac1c6f0d2b9aefc342"
2022-08-14 16:30:13 +03:00
[[package]]
name = "rustc_version"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0dfe2087c51c460008730de8b57e6a320782fbfb312e1f4d520e6c6fae155ee"
dependencies = [
"semver",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "ryu"
2022-10-15 01:53:13 +03:00
version = "1.0.11"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
2022-08-14 16:30:13 +03:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
2022-10-15 01:53:13 +03:00
[[package]]
name = "scratch"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8132065adcfd6e02db789d9285a0deb2f3fcb04002865ab67d5fb103533898"
2022-08-14 16:30:13 +03:00
[[package]]
name = "semver"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f301af10236f6df4160f7c3f04eec6dbc70ace82d23326abad5edee88801c6b6"
dependencies = [
"semver-parser",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "semver-parser"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0bef5b7f9e0df16536d3961cfb6e84331c065b4066afb39768d0e319411f7"
dependencies = [
"pest",
]
[[package]]
name = "serde"
2022-11-02 01:56:47 +03:00
version = "1.0.147"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
2022-08-14 16:30:13 +03:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2022-11-02 01:56:47 +03:00
version = "1.0.147"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "serde_json"
2022-11-02 01:56:47 +03:00
version = "1.0.87"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "6ce777b7b150d76b9cf60d28b55f5847135a003f7d7350c6be7a773508ce7d45"
2022-08-14 16:30:13 +03:00
dependencies = [
"itoa",
"ryu",
"serde",
]
[[package]]
name = "serde_repr"
2022-10-15 01:53:13 +03:00
version = "0.1.9"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "serde_yaml"
2022-11-02 01:56:47 +03:00
version = "0.9.14"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "6d232d893b10de3eb7258ff01974d6ee20663d8e833263c99409d4b13a0209da"
2022-08-14 16:30:13 +03:00
dependencies = [
"indexmap",
"itoa",
"ryu",
"serde",
"unsafe-libyaml",
]
[[package]]
2022-10-15 01:53:13 +03:00
name = "sha1"
version = "0.6.1"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
2022-08-14 16:30:13 +03:00
dependencies = [
2022-10-15 01:53:13 +03:00
"sha1_smol",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "sha1"
2022-10-15 01:53:13 +03:00
version = "0.10.5"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
2022-08-14 16:30:13 +03:00
dependencies = [
2022-10-15 01:53:13 +03:00
"cfg-if",
"cpufeatures",
"digest",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "sha1_smol"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
[[package]]
name = "sharded-slab"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "slab"
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
dependencies = [
"autocfg",
]
[[package]]
name = "slotmap"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1e08e261d0e8f5c43123b7adf3e4ca1690d655377ac93a03b2c9d3e98de1342"
dependencies = [
"version_check",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "smallvec"
2022-10-15 01:53:13 +03:00
version = "1.10.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
2022-08-14 16:30:13 +03:00
[[package]]
name = "smithay-client-toolkit"
version = "0.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f307c47d32d2715eb2e0ece5589057820e0e5e70d07c247d1063e844e107f454"
dependencies = [
"bitflags",
"calloop",
"dlib",
"lazy_static",
"log",
"memmap2",
"nix 0.24.2",
"pkg-config",
"wayland-client",
"wayland-cursor",
"wayland-protocols",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "socket2"
2022-10-15 01:53:13 +03:00
version = "0.4.7"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
2022-08-14 16:30:13 +03:00
dependencies = [
"libc",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "stray"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e467969fcbf600ebb8d302aa6f2ee6cdf65d2a4c642844632bbdbcaf9c9e2b3e"
2022-08-14 16:30:13 +03:00
dependencies = [
"anyhow",
"byteorder",
"chrono",
"log",
2022-08-14 16:30:13 +03:00
"serde",
"thiserror",
2022-08-14 16:30:13 +03:00
"tokio",
"tokio-stream",
"tracing",
2022-08-14 16:30:13 +03:00
"zbus",
]
[[package]]
name = "strip-ansi-escapes"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8"
dependencies = [
"vte",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
[[package]]
name = "swayipc-async"
version = "2.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "812eaecd6f9e658587570dffe2768d7b58410cbcaad6579dd44414a890594f74"
dependencies = [
"async-io",
"async-pidfd",
"futures-lite",
"serde",
"serde_json",
"swayipc-types",
]
[[package]]
name = "swayipc-types"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a558cee16f6eeb791722bbf060607cc53f7f9a47fe80055eca81bceebd34928e"
2022-08-14 16:30:13 +03:00
dependencies = [
"serde",
"serde_json",
"thiserror",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "syn"
2022-11-02 01:56:47 +03:00
version = "1.0.103"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "a864042229133ada95abf3b54fdc62ef5ccabe9515b64717bcb9a1919e59445d"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
"quote",
2022-08-14 16:30:13 +03:00
"unicode-ident",
]
[[package]]
name = "sysinfo"
2022-11-02 01:56:47 +03:00
version = "0.26.7"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "c375d5fd899e32847b8566e10598d6e9f1d9b55ec6de3cdf9e7da4bdc51371bc"
2022-08-14 16:30:13 +03:00
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
"core-foundation-sys",
"libc",
"ntapi",
"once_cell",
"rayon",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "system-deps"
2022-11-02 01:56:47 +03:00
version = "6.0.3"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "2955b1fe31e1fa2fbd1976b71cc69a606d7d4da16f6de3333d0c92d51419aeff"
2022-08-14 16:30:13 +03:00
dependencies = [
"cfg-expr",
"heck",
"pkg-config",
"toml",
"version-compare",
]
[[package]]
name = "tempfile"
version = "3.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
"fastrand",
"libc",
"redox_syscall",
"remove_dir_all",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "termcolor"
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
2022-10-15 01:53:13 +03:00
version = "1.0.37"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
2022-08-14 16:30:13 +03:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-10-15 01:53:13 +03:00
version = "1.0.37"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "thread_local"
version = "1.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180"
dependencies = [
"once_cell",
]
[[package]]
name = "time"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
dependencies = [
"libc",
"wasi 0.10.0+wasi-snapshot-preview1",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "time"
2022-11-02 01:56:47 +03:00
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "0fab5c8b9980850e06d92ddbe3ab839c062c801f3927c0fb8abd6fc8e918fbca"
dependencies = [
"itoa",
"libc",
"num_threads",
2022-11-02 01:56:47 +03:00
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
[[package]]
name = "time-macros"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "65bb801831d812c562ae7d2bfb531f26e66e4e1f6b17307ba4149c5064710e5b"
dependencies = [
"time-core",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "tokio"
version = "1.21.2"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9e03c497dc955702ba729190dc4aac6f2a0ce97f913e5b1b5912fc5039d9099"
2022-08-14 16:30:13 +03:00
dependencies = [
"autocfg",
"bytes",
"libc",
"memchr",
"mio",
2022-08-14 16:30:13 +03:00
"num_cpus",
"pin-project-lite",
"socket2",
"tokio-macros",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "tokio-macros"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "tokio-stream"
2022-10-15 01:53:13 +03:00
version = "0.1.11"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "d660770404473ccd7bc9f8b28494a811bc18542b915c0855c51e8f419d5223ce"
2022-08-14 16:30:13 +03:00
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "toml"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
dependencies = [
"serde",
]
[[package]]
name = "tracing"
2022-10-15 01:53:13 +03:00
version = "0.1.37"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2022-08-14 16:30:13 +03:00
dependencies = [
"cfg-if",
2022-08-14 16:30:13 +03:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-appender"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09d48f71a791638519505cefafe162606f706c25592e4bde4d97600c0195312e"
dependencies = [
"crossbeam-channel",
2022-11-02 01:56:47 +03:00
"time 0.3.16",
"tracing-subscriber",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "tracing-attributes"
2022-10-15 01:53:13 +03:00
version = "0.1.23"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "tracing-core"
2022-10-15 01:53:13 +03:00
version = "0.1.30"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
2022-08-14 16:30:13 +03:00
dependencies = [
"once_cell",
"valuable",
]
[[package]]
name = "tracing-error"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d686ec1c0f384b1277f097b2f279a2ecc11afe8c133c1aabf036a27cb4cd206e"
dependencies = [
"tracing",
"tracing-subscriber",
]
[[package]]
name = "tracing-log"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
dependencies = [
"lazy_static",
"log",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2022-10-15 01:53:13 +03:00
version = "0.3.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70"
dependencies = [
"matchers",
2022-10-15 01:53:13 +03:00
"nu-ansi-term",
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "typenum"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
[[package]]
name = "ucd-trie"
2022-10-15 01:53:13 +03:00
version = "0.1.5"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
2022-08-14 16:30:13 +03:00
[[package]]
name = "uds_windows"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce65604324d3cce9b966701489fbd0cf318cb1f7bd9dd07ac9a4ee6fb791930d"
dependencies = [
"tempfile",
"winapi",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "unicode-ident"
2022-10-15 01:53:13 +03:00
version = "1.0.5"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
[[package]]
name = "unicode-width"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
2022-08-14 16:30:13 +03:00
[[package]]
name = "unsafe-libyaml"
2022-10-15 01:53:13 +03:00
version = "0.2.4"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "c1e5fa573d8ac5f1a856f8d7be41d390ee973daf97c806b2c1a465e4e1406e68"
2022-08-14 16:30:13 +03:00
[[package]]
name = "utf8parse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372"
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2022-08-14 16:30:13 +03:00
[[package]]
name = "version-compare"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe88247b92c1df6b6de80ddc290f3976dbdf2f5f5d3fd049a9fb598c6dd5ca73"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "vte"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983"
dependencies = [
"arrayvec",
"utf8parse",
"vte_generate_state_changes",
]
[[package]]
name = "vte_generate_state_changes"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff"
dependencies = [
"proc-macro2",
"quote",
]
2022-08-14 16:30:13 +03:00
[[package]]
name = "waker-fn"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5b2c62b4012a3e1eca5a7e077d13b3bf498c4073e33ccd58626607748ceeca"
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi",
2022-08-14 16:30:13 +03:00
"winapi-util",
]
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2022-10-15 01:53:13 +03:00
[[package]]
name = "wasm-bindgen"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.83"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
[[package]]
name = "wayland-client"
version = "0.29.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f3b068c05a039c9f755f881dc50f01732214f5685e379829759088967c46715"
dependencies = [
"bitflags",
"downcast-rs",
"libc",
"nix 0.24.2",
"wayland-commons",
"wayland-scanner",
"wayland-sys",
]
[[package]]
name = "wayland-commons"
version = "0.29.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8691f134d584a33a6606d9d717b95c4fa20065605f798a3f350d78dced02a902"
dependencies = [
"nix 0.24.2",
"once_cell",
"smallvec",
"wayland-sys",
]
[[package]]
name = "wayland-cursor"
version = "0.29.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6865c6b66f13d6257bef1cd40cbfe8ef2f150fb8ebbdb1e8e873455931377661"
dependencies = [
"nix 0.24.2",
"wayland-client",
"xcursor",
]
[[package]]
name = "wayland-protocols"
version = "0.29.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b950621f9354b322ee817a23474e479b34be96c2e909c14f7bc0100e9a970bc6"
dependencies = [
"bitflags",
"wayland-client",
"wayland-commons",
"wayland-scanner",
]
[[package]]
name = "wayland-scanner"
version = "0.29.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f4303d8fa22ab852f789e75a967f0a2cdc430a607751c0499bada3e451cbd53"
dependencies = [
"proc-macro2",
"quote",
"xml-rs",
]
[[package]]
name = "wayland-sys"
version = "0.29.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be12ce1a3c39ec7dba25594b97b42cb3195d54953ddb9d3d95a7c3902bc6e9d4"
dependencies = [
"pkg-config",
]
[[package]]
name = "wepoll-ffi"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d743fdedc5c64377b5fc2bc036b01c7fd642205a0d96356034ae3404d49eb7fb"
dependencies = [
"cc",
]
2022-08-14 16:30:13 +03:00
[[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-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
2022-08-14 16:30:13 +03:00
]
[[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"
2022-11-02 01:56:47 +03:00
version = "0.42.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
2022-08-14 16:30:13 +03:00
dependencies = [
2022-11-02 01:56:47 +03:00
"windows_aarch64_gnullvm",
2022-08-14 16:30:13 +03:00
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
2022-11-02 01:56:47 +03:00
"windows_x86_64_gnullvm",
2022-08-14 16:30:13 +03:00
"windows_x86_64_msvc",
]
2022-11-02 01:56:47 +03:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
2022-08-14 16:30:13 +03:00
[[package]]
name = "windows_aarch64_msvc"
2022-11-02 01:56:47 +03:00
version = "0.42.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
2022-08-14 16:30:13 +03:00
[[package]]
name = "windows_i686_gnu"
2022-11-02 01:56:47 +03:00
version = "0.42.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
2022-08-14 16:30:13 +03:00
[[package]]
name = "windows_i686_msvc"
2022-11-02 01:56:47 +03:00
version = "0.42.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
2022-08-14 16:30:13 +03:00
[[package]]
name = "windows_x86_64_gnu"
2022-11-02 01:56:47 +03:00
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.42.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
2022-08-14 16:30:13 +03:00
[[package]]
name = "windows_x86_64_msvc"
2022-11-02 01:56:47 +03:00
version = "0.42.0"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-11-02 01:56:47 +03:00
checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
2022-08-14 16:30:13 +03:00
[[package]]
name = "xcursor"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "463705a63313cd4301184381c5e8042f0a7e9b4bb63653f216311d4ae74690b7"
dependencies = [
"nom",
]
[[package]]
name = "xml-rs"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
2022-08-14 16:30:13 +03:00
[[package]]
name = "zbus"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d8f1a037b2c4a67d9654dc7bdfa8ff2e80555bbefdd3c1833c1d1b27c963a6b"
dependencies = [
"async-broadcast",
"async-channel",
"async-executor",
"async-lock",
"async-recursion",
"async-task",
"async-trait",
"byteorder",
"derivative",
"dirs",
"enumflags2",
"event-listener",
"futures-core",
"futures-sink",
"futures-util",
"hex",
"lazy_static",
"nix 0.23.1",
2022-08-14 16:30:13 +03:00
"once_cell",
"ordered-stream",
"rand",
"serde",
"serde_repr",
2022-10-15 01:53:13 +03:00
"sha1 0.6.1",
2022-08-14 16:30:13 +03:00
"static_assertions",
"tokio",
"tracing",
"uds_windows",
"winapi",
2022-08-14 16:30:13 +03:00
"zbus_macros",
"zbus_names",
"zvariant",
]
[[package]]
name = "zbus_macros"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f8fb5186d1c87ae88cf234974c240671238b4a679158ad3b94ec465237349a6"
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
2022-08-14 16:30:13 +03:00
"regex",
"syn",
2022-08-14 16:30:13 +03:00
]
[[package]]
name = "zbus_names"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "41a408fd8a352695690f53906dc7fd036be924ec51ea5e05666ff42685ed0af5"
dependencies = [
"serde",
"static_assertions",
"zvariant",
]
[[package]]
name = "zvariant"
2022-10-15 01:53:13 +03:00
version = "3.7.1"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "b794fb7f59af4105697b0449ba31731ee5dbb3e773a17dbdf3d36206ea1b1644"
2022-08-14 16:30:13 +03:00
dependencies = [
"byteorder",
"enumflags2",
"libc",
"serde",
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2022-10-15 01:53:13 +03:00
version = "3.7.1"
2022-08-14 16:30:13 +03:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-10-15 01:53:13 +03:00
checksum = "dd58d4b6c8e26d3dd2149c8c40c6613ef6451b9885ff1296d1ac86c388351a54"
2022-08-14 16:30:13 +03:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
"syn",
2022-08-14 16:30:13 +03:00
]