Rust bindings for the River 0.4.x Wayland compositor's window management protocols
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at dc00a3a04b84df565a8358834ca2e068710f08b0 193 lines 5.1 kB view raw
1# This file is automatically @generated by Cargo. 2# It is not intended for manual editing. 3version = 4 4 5[[package]] 6name = "bitflags" 7version = "2.10.0" 8source = "registry+https://github.com/rust-lang/crates.io-index" 9checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 10 11[[package]] 12name = "cc" 13version = "1.2.51" 14source = "registry+https://github.com/rust-lang/crates.io-index" 15checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203" 16dependencies = [ 17 "find-msvc-tools", 18 "shlex", 19] 20 21[[package]] 22name = "downcast-rs" 23version = "1.2.1" 24source = "registry+https://github.com/rust-lang/crates.io-index" 25checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2" 26 27[[package]] 28name = "errno" 29version = "0.3.14" 30source = "registry+https://github.com/rust-lang/crates.io-index" 31checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb" 32dependencies = [ 33 "libc", 34 "windows-sys", 35] 36 37[[package]] 38name = "find-msvc-tools" 39version = "0.1.6" 40source = "registry+https://github.com/rust-lang/crates.io-index" 41checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff" 42 43[[package]] 44name = "libc" 45version = "0.2.178" 46source = "registry+https://github.com/rust-lang/crates.io-index" 47checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091" 48 49[[package]] 50name = "linux-raw-sys" 51version = "0.11.0" 52source = "registry+https://github.com/rust-lang/crates.io-index" 53checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039" 54 55[[package]] 56name = "memchr" 57version = "2.7.6" 58source = "registry+https://github.com/rust-lang/crates.io-index" 59checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273" 60 61[[package]] 62name = "pkg-config" 63version = "0.3.32" 64source = "registry+https://github.com/rust-lang/crates.io-index" 65checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" 66 67[[package]] 68name = "proc-macro2" 69version = "1.0.104" 70source = "registry+https://github.com/rust-lang/crates.io-index" 71checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0" 72dependencies = [ 73 "unicode-ident", 74] 75 76[[package]] 77name = "quick-xml" 78version = "0.38.4" 79source = "registry+https://github.com/rust-lang/crates.io-index" 80checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" 81dependencies = [ 82 "memchr", 83] 84 85[[package]] 86name = "quote" 87version = "1.0.42" 88source = "registry+https://github.com/rust-lang/crates.io-index" 89checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f" 90dependencies = [ 91 "proc-macro2", 92] 93 94[[package]] 95name = "river-rs" 96version = "0.2.0" 97dependencies = [ 98 "bitflags", 99 "wayland-backend", 100 "wayland-client", 101 "wayland-scanner", 102] 103 104[[package]] 105name = "rustix" 106version = "1.1.3" 107source = "registry+https://github.com/rust-lang/crates.io-index" 108checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34" 109dependencies = [ 110 "bitflags", 111 "errno", 112 "libc", 113 "linux-raw-sys", 114 "windows-sys", 115] 116 117[[package]] 118name = "shlex" 119version = "1.3.0" 120source = "registry+https://github.com/rust-lang/crates.io-index" 121checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" 122 123[[package]] 124name = "smallvec" 125version = "1.15.1" 126source = "registry+https://github.com/rust-lang/crates.io-index" 127checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" 128 129[[package]] 130name = "unicode-ident" 131version = "1.0.22" 132source = "registry+https://github.com/rust-lang/crates.io-index" 133checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" 134 135[[package]] 136name = "wayland-backend" 137version = "0.3.12" 138source = "registry+https://github.com/rust-lang/crates.io-index" 139checksum = "fee64194ccd96bf648f42a65a7e589547096dfa702f7cadef84347b66ad164f9" 140dependencies = [ 141 "cc", 142 "downcast-rs", 143 "rustix", 144 "smallvec", 145 "wayland-sys", 146] 147 148[[package]] 149name = "wayland-client" 150version = "0.31.12" 151source = "registry+https://github.com/rust-lang/crates.io-index" 152checksum = "b8e6faa537fbb6c186cb9f1d41f2f811a4120d1b57ec61f50da451a0c5122bec" 153dependencies = [ 154 "bitflags", 155 "rustix", 156 "wayland-backend", 157 "wayland-scanner", 158] 159 160[[package]] 161name = "wayland-scanner" 162version = "0.31.8" 163source = "registry+https://github.com/rust-lang/crates.io-index" 164checksum = "5423e94b6a63e68e439803a3e153a9252d5ead12fd853334e2ad33997e3889e3" 165dependencies = [ 166 "proc-macro2", 167 "quick-xml", 168 "quote", 169] 170 171[[package]] 172name = "wayland-sys" 173version = "0.31.8" 174source = "registry+https://github.com/rust-lang/crates.io-index" 175checksum = "1e6dbfc3ac5ef974c92a2235805cc0114033018ae1290a72e474aa8b28cbbdfd" 176dependencies = [ 177 "pkg-config", 178] 179 180[[package]] 181name = "windows-link" 182version = "0.2.1" 183source = "registry+https://github.com/rust-lang/crates.io-index" 184checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" 185 186[[package]] 187name = "windows-sys" 188version = "0.61.2" 189source = "registry+https://github.com/rust-lang/crates.io-index" 190checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" 191dependencies = [ 192 "windows-link", 193]