caching fs to use over immutable network filesystems
https://github.com/moparisthebest/cache-fs
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
313 lines
7.7 KiB
313 lines
7.7 KiB
# This file is automatically @generated by Cargo. |
|
# It is not intended for manual editing. |
|
version = 3 |
|
|
|
[[package]] |
|
name = "aho-corasick" |
|
version = "0.7.18" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" |
|
dependencies = [ |
|
"memchr", |
|
] |
|
|
|
[[package]] |
|
name = "atty" |
|
version = "0.2.14" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" |
|
dependencies = [ |
|
"hermit-abi", |
|
"libc", |
|
"winapi", |
|
] |
|
|
|
[[package]] |
|
name = "bincode" |
|
version = "1.3.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad" |
|
dependencies = [ |
|
"serde", |
|
] |
|
|
|
[[package]] |
|
name = "byteorder" |
|
version = "1.4.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" |
|
|
|
[[package]] |
|
name = "cache-fs" |
|
version = "0.1.0" |
|
dependencies = [ |
|
"bincode", |
|
"env_logger", |
|
"fuser", |
|
"libc", |
|
"log", |
|
"serde", |
|
] |
|
|
|
[[package]] |
|
name = "cfg-if" |
|
version = "1.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
|
|
|
[[package]] |
|
name = "env_logger" |
|
version = "0.6.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "aafcde04e90a5226a6443b7aabdb016ba2f8307c847d524724bd9b346dd1a2d3" |
|
dependencies = [ |
|
"atty", |
|
"humantime", |
|
"log", |
|
"regex", |
|
"termcolor", |
|
] |
|
|
|
[[package]] |
|
name = "fuser" |
|
version = "0.11.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "aef8400a4ea1d18a8302e2952f5137a9a21ab257825ccc7d67db4a8018b89022" |
|
dependencies = [ |
|
"libc", |
|
"log", |
|
"memchr", |
|
"page_size", |
|
"pkg-config", |
|
"smallvec", |
|
"users", |
|
"zerocopy", |
|
] |
|
|
|
[[package]] |
|
name = "hermit-abi" |
|
version = "0.1.19" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" |
|
dependencies = [ |
|
"libc", |
|
] |
|
|
|
[[package]] |
|
name = "humantime" |
|
version = "1.3.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" |
|
dependencies = [ |
|
"quick-error", |
|
] |
|
|
|
[[package]] |
|
name = "libc" |
|
version = "0.2.126" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836" |
|
|
|
[[package]] |
|
name = "log" |
|
version = "0.4.17" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" |
|
dependencies = [ |
|
"cfg-if", |
|
] |
|
|
|
[[package]] |
|
name = "memchr" |
|
version = "2.5.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" |
|
|
|
[[package]] |
|
name = "page_size" |
|
version = "0.4.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "eebde548fbbf1ea81a99b128872779c437752fb99f217c45245e1a61dcd9edcd" |
|
dependencies = [ |
|
"libc", |
|
"winapi", |
|
] |
|
|
|
[[package]] |
|
name = "pkg-config" |
|
version = "0.3.25" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae" |
|
|
|
[[package]] |
|
name = "proc-macro2" |
|
version = "1.0.43" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab" |
|
dependencies = [ |
|
"unicode-ident", |
|
] |
|
|
|
[[package]] |
|
name = "quick-error" |
|
version = "1.2.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" |
|
|
|
[[package]] |
|
name = "quote" |
|
version = "1.0.21" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179" |
|
dependencies = [ |
|
"proc-macro2", |
|
] |
|
|
|
[[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-syntax" |
|
version = "0.6.27" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244" |
|
|
|
[[package]] |
|
name = "serde" |
|
version = "1.0.142" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e590c437916fb6b221e1d00df6e3294f3fccd70ca7e92541c475d6ed6ef5fee2" |
|
dependencies = [ |
|
"serde_derive", |
|
] |
|
|
|
[[package]] |
|
name = "serde_derive" |
|
version = "1.0.142" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "34b5b8d809babe02f538c2cfec6f2c1ed10804c0e5a6a041a049a4f5588ccc2e" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "smallvec" |
|
version = "1.9.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1" |
|
|
|
[[package]] |
|
name = "syn" |
|
version = "1.0.99" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"unicode-ident", |
|
] |
|
|
|
[[package]] |
|
name = "synstructure" |
|
version = "0.12.6" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"unicode-xid", |
|
] |
|
|
|
[[package]] |
|
name = "termcolor" |
|
version = "1.1.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755" |
|
dependencies = [ |
|
"winapi-util", |
|
] |
|
|
|
[[package]] |
|
name = "unicode-ident" |
|
version = "1.0.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf" |
|
|
|
[[package]] |
|
name = "unicode-xid" |
|
version = "0.2.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "957e51f3646910546462e67d5f7599b9e4fb8acdd304b087a6494730f9eebf04" |
|
|
|
[[package]] |
|
name = "users" |
|
version = "0.11.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "24cc0f6d6f267b73e5a2cadf007ba8f9bc39c6a6f9666f8cf25ea809a153b032" |
|
dependencies = [ |
|
"libc", |
|
"log", |
|
] |
|
|
|
[[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", |
|
] |
|
|
|
[[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 = "zerocopy" |
|
version = "0.6.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "332f188cc1bcf1fe1064b8c58d150f497e697f49774aa846f2dc949d9a25f236" |
|
dependencies = [ |
|
"byteorder", |
|
"zerocopy-derive", |
|
] |
|
|
|
[[package]] |
|
name = "zerocopy-derive" |
|
version = "0.3.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a0fbc82b82efe24da867ee52e015e58178684bd9dd64c34e66bdf21da2582a9f" |
|
dependencies = [ |
|
"proc-macro2", |
|
"syn", |
|
"synstructure", |
|
]
|
|
|