{"id":29419868,"url":"https://github.com/bytecodealliance/system-interface","last_synced_at":"2025-07-12T01:13:12.209Z","repository":{"id":40794414,"uuid":"297810694","full_name":"bytecodealliance/system-interface","owner":"bytecodealliance","description":"Extensions to the Rust standard library","archived":false,"fork":false,"pushed_at":"2024-12-04T02:09:51.000Z","size":205,"stargazers_count":46,"open_issues_count":0,"forks_count":14,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-07-12T00:44:55.794Z","etag":null,"topics":["rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bytecodealliance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-23T00:49:09.000Z","updated_at":"2025-04-24T21:41:23.000Z","dependencies_parsed_at":"2024-04-02T11:16:53.683Z","dependency_job_id":null,"html_url":"https://github.com/bytecodealliance/system-interface","commit_stats":{"total_commits":225,"total_committers":5,"mean_commits":45.0,"dds":0.03111111111111109,"last_synced_commit":"15fa3d1c279b7c2876605b0d328f19e8a4a05f4b"},"previous_names":[],"tags_count":54,"template":false,"template_full_name":null,"purl":"pkg:github/bytecodealliance/system-interface","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytecodealliance%2Fsystem-interface","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytecodealliance%2Fsystem-interface/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytecodealliance%2Fsystem-interface/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytecodealliance%2Fsystem-interface/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bytecodealliance","download_url":"https://codeload.github.com/bytecodealliance/system-interface/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bytecodealliance%2Fsystem-interface/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264922908,"owners_count":23683705,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["rust"],"created_at":"2025-07-12T01:13:11.327Z","updated_at":"2025-07-12T01:13:12.176Z","avatar_url":"https://github.com/bytecodealliance.png","language":"Rust","readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003e\u003ccode\u003esystem-interface\u003c/code\u003e\u003c/h1\u003e\n\n  \u003cp\u003e\n    \u003cstrong\u003eExtensions to the Rust standard library\u003c/strong\u003e\n  \u003c/p\u003e\n\n  \u003cstrong\u003eA \u003ca href=\"https://bytecodealliance.org/\"\u003eBytecode Alliance\u003c/a\u003e project\u003c/strong\u003e\n\n  \u003cp\u003e\n    \u003ca href=\"https://github.com/bytecodealliance/system-interface/actions?query=workflow%3ACI\"\u003e\u003cimg src=\"https://github.com/bytecodealliance/system-interface/workflows/CI/badge.svg\" alt=\"Github Actions CI Status\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://bytecodealliance.zulipchat.com/#narrow/stream/217126-wasmtime\"\u003e\u003cimg src=\"https://img.shields.io/badge/zulip-join_chat-brightgreen.svg\" alt=\"zulip chat\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://crates.io/crates/system-interface\"\u003e\u003cimg src=\"https://img.shields.io/crates/v/system-interface.svg\" alt=\"crates.io page\" /\u003e\u003c/a\u003e\n    \u003ca href=\"https://docs.rs/system-interface\"\u003e\u003cimg src=\"https://docs.rs/system-interface/badge.svg\" alt=\"docs.rs docs\" /\u003e\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/div\u003e\n\n`system-interface` adds extensions to the Rust standard library, seeking to\nstay within the style of [`std`], while exposing additional functionality:\n\n  - [`fs::FileIoExt`] - Extra support for working with files, including\n    all the features of [`std::io::Read`], [`std::io::Write`],\n    [`std::io::Seek`], and [`std::os::unix::fs::FileExt`], but with both\n    POSIX-ish and Windows support, and with additional features, including\n    `read` and `write` with all combinations of `_vectored`, `_at`, and\n    `_exact`/`_all`. If you've ever wanted something like\n    [`read_exact_vectored_at`], [`write_all_vectored_at`], or any other\n    combination, or even [`read_to_end_at`] or [`read_to_string_at`],\n    they're all here, *and* they work on Windows too!\n  - [`io::IsTerminal`] - Test whether a given I/O handle refers to a terminal\n    (aka a tty).\n  - [`io::ReadReady`] - Query the number of bytes ready to be read immediately\n    from an I/O handle.\n  - [`io::Peek`] - Read from an I/O handle without consuming the data.\n\nEverything in this crate is portable across popular POSIX-ish platforms and\nWindows.\n\nMany of `system-interface`'s features correspond to features in [WASI], and are\ndesigned to work with [`cap-std`], however it's not specific to WASI and can be\nused with regular [`std`] too. To separate concerns, all sandboxing and\ncapability-oriented APIs are left to `cap-std`, so this crate's features are\nusable independently.\n\nSupport for async-std and socket2 is temporarily disabled until those crates\ncontain the needed implementations of the I/O safety traits.\n\n[`std`]: https://doc.rust-lang.org/std/\n[`cap-std`]: https://crates.io/crates/cap-std\n[WASI]: https://github.com/WebAssembly/WASI/\n[`fs::FileIoExt`]: https://docs.rs/system-interface/latest/system_interface/fs/trait.FileIoExt.html\n[`io::IsTerminal`]: https://docs.rs/system-interface/latest/system_interface/io/trait.IsTerminal.html\n[`io::ReadReady`]: https://docs.rs/system-interface/latest/system_interface/io/trait.ReadReady.html\n[`io::Peek`]: https://docs.rs/system-interface/latest/system_interface/io/trait.Peek.html\n[`std::io::Read`]: https://doc.rust-lang.org/std/io/trait.Read.html\n[`std::io::Write`]: https://doc.rust-lang.org/std/io/trait.Write.html\n[`std::io::Seek`]: https://doc.rust-lang.org/std/io/trait.Seek.html\n[`std::os::unix::fs::FileExt`]: https://doc.rust-lang.org/std/os/unix/fs/trait.FileExt.html\n[`read_exact_vectored_at`]: https://docs.rs/system-interface/latest/system_interface/fs/trait.FileIoExt.html#method.read_exact_vectored_at\n[`write_all_vectored_at`]: https://docs.rs/system-interface/latest/system_interface/fs/trait.FileIoExt.html#method.write_all_vectored_at\n[`read_to_end_at`]: https://docs.rs/system-interface/latest/system_interface/fs/trait.FileIoExt.html#method.read_to_end_at\n[`read_to_string_at`]: https://docs.rs/system-interface/latest/system_interface/fs/trait.FileIoExt.html#method.read_to_string_at\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbytecodealliance%2Fsystem-interface","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbytecodealliance%2Fsystem-interface","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbytecodealliance%2Fsystem-interface/lists"}