Source: golang-github-hanwen-go-fuse Section: devel Priority: optional Maintainer: Debian Go Packaging Team Uploaders: Julian Gilbey , Michael Stapelberg Build-Depends: debhelper (>= 11), dh-golang, golang-any, golang-golang-x-sys-dev Standards-Version: 4.2.1 Homepage: https://github.com/hanwen/go-fuse Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-hanwen-go-fuse Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-hanwen-go-fuse.git XS-Go-Import-Path: github.com/hanwen/go-fuse Package: golang-github-hanwen-go-fuse-dev Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends}, golang-any, golang-golang-x-sys-dev Description: Native Go bindings for the FUSE kernel module This package offers native Go bindings for FUSE, and has several features: . * High speed: as fast as libfuse using the gc compiler for single threaded loads. . * Supports in-process mounting of different FileSystems onto subdirectories of the FUSE mount. . * Supports 3 interfaces for writing filesystems: - PathFileSystem: define filesystems in terms path names. - NodeFileSystem: define filesystems in terms of inodes. - RawFileSystem: define filesystems in terms of FUSE's raw wire protocol. . * Both NodeFileSystem and PathFileSystem support manipulation of true hardlinks. . The package also includes two fleshed out examples, zipfs and unionfs.