{"id":49593732,"url":"https://github.com/jmillikin/rust-fuse","last_synced_at":"2026-05-04T02:43:25.529Z","repository":{"id":78440561,"uuid":"151861629","full_name":"jmillikin/rust-fuse","owner":"jmillikin","description":"A FUSE server implementation for Rust.","archived":false,"fork":false,"pushed_at":"2025-03-20T06:45:56.000Z","size":3593,"stargazers_count":44,"open_issues_count":6,"forks_count":8,"subscribers_count":6,"default_branch":"trunk","last_synced_at":"2026-05-04T02:43:21.327Z","etag":null,"topics":["fuse","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jmillikin.png","metadata":{"files":{"readme":"README.asciidoc","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-10-06T16:56:36.000Z","updated_at":"2025-12-20T14:39:19.000Z","dependencies_parsed_at":"2023-05-23T01:15:29.575Z","dependency_job_id":null,"html_url":"https://github.com/jmillikin/rust-fuse","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jmillikin/rust-fuse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmillikin%2Frust-fuse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmillikin%2Frust-fuse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmillikin%2Frust-fuse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmillikin%2Frust-fuse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jmillikin","download_url":"https://codeload.github.com/jmillikin/rust-fuse/tar.gz/refs/heads/trunk","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jmillikin%2Frust-fuse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32592720,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-03T22:12:39.696Z","status":"online","status_checked_at":"2026-05-04T02:00:06.625Z","response_time":58,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fuse","rust"],"created_at":"2026-05-04T02:43:24.093Z","updated_at":"2026-05-04T02:43:25.521Z","avatar_url":"https://github.com/jmillikin.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"= rust-fuse\n:url-fuse: https://en.wikipedia.org/wiki/Filesystem_in_Userspace\n:url-docs: https://jmillikin.github.io/rust-fuse/\n\nimage:https://img.shields.io/badge/License-Apache%202.0-blue.svg[link=\"http://www.apache.org/licenses/LICENSE-2.0\"]\nimage:https://img.shields.io/badge/docs-github.io-green.svg[link={url-docs}]\n\nThe `fuse` crate is an implementation of the {url-fuse}[FUSE] protocol, which\nallows filesystems and character devices to be backed by a userspace process.\nIt currently provides enough coverage to implement basic FUSE and CUSE servers.\n\n== Stability\n\nThis is a pre-v0.1 library. Many of FUSE's more advanced capabilities do not\nwork yet, and test coverage is incomplete. Please file issues if there is\nfunctionality you'd like to see implemented.\n\n[%header, cols=\"2,5\"]\n|===\n|Feature\n|Tracking issue\n\n|FreeBSD support\n|image:https://img.shields.io/github/issues/detail/state/jmillikin/rust-fuse/5[link=\"https://github.com/jmillikin/rust-fuse/issues/5\"]\n\n|High-level API\n|image:https://img.shields.io/github/issues/detail/state/jmillikin/rust-fuse/10[link=\"https://github.com/jmillikin/rust-fuse/issues/10\"]\n\n|Interrupts\n|image:https://img.shields.io/github/issues/detail/state/jmillikin/rust-fuse/5[link=\"https://github.com/jmillikin/rust-fuse/issues/5\"]\n\n|macOS support\n|Not planned due to lack of open-source kernel drivers.\n\n|Unprivileged mounts\n|image:https://img.shields.io/github/issues/detail/state/jmillikin/rust-fuse/6[link=\"https://github.com/jmillikin/rust-fuse/issues/6\"]\n|===\n\n\n## Contributing\n\nI am happy to accept contributions in the form of bug reports, pull requests,\nor emailed patches.\n\n== Usage\n\nAdd a dependency in `Cargo.toml`:\n\n[source,toml]\n----\n[dependencies]\nfuse = { git = \"https://github.com/jmillikin/rust-fuse\" }\n----\n\nImplement the `FuseHandlers` trait for your filesystem:\n\n[source,rust]\n----\nextern crate fuse;\nuse fuse::server;\nuse fuse::server::fuse_rpc;\n\nstruct HelloFS {}\nimpl\u003cS: server::io::FuseSocket\u003e fuse_rpc::Handlers\u003cS\u003e for HelloFS {\n    // your filesystem handlers here\n}\n----\n\nUse `fuse-libc` (requires `libc`) or `fuse-linux` (requires a supported\ntarget architecture) to build and run your filesystem server:\n\n[source,rust]\n----\nfn mount(target: \u0026OsStr) -\u003e fuse_libc::FuseServerSocket {\n\tlet mount_options = fuse::os::linux::MountOptions::new();\n\tfuse_libc::os::linux::mount(\u0026target_cstr, mount_options).unwrap()\n}\n\nfn main() {\n\tlet handlers = HelloWorldFS {};\n\tlet mount_target = std::env::args_os().nth(1).unwrap();\n\tlet dev_fuse = mount(\u0026mount_target);\n\tlet conn = server::FuseServer::new().connect(dev_fuse).unwrap();\n\tfuse_rpc::serve(\u0026conn, \u0026handlers);\n}\n----\n\nPlease see {url-docs}[the documentation] for advanced options.\n\n=== Feature `std`\n\nIt is possible to run a minimal single-threaded FUSE server in a `no_std`\nbinary.\n\n[source,toml]\n----\n[dependencies.fuse]\ndefault-features = false\n----\n\nNote that some functionality is not available in `no_std` mode. Please see\n{url-docs}[the documentation] for details on which parts of the API depend\non `std`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmillikin%2Frust-fuse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjmillikin%2Frust-fuse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjmillikin%2Frust-fuse/lists"}