{"id":15160815,"url":"https://github.com/gilzoide/unity-native-collections-stream","last_synced_at":"2026-02-19T14:31:34.981Z","repository":{"id":230417204,"uuid":"779324095","full_name":"gilzoide/unity-native-collections-stream","owner":"gilzoide","description":"Stream, TextReader and TextWriter implementations backed by Unity Native Collections","archived":false,"fork":false,"pushed_at":"2024-03-30T14:41:59.000Z","size":14,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-20T10:57:57.526Z","etag":null,"topics":["collections","stream","streaming","textreader","textwriter","unity","unity2d","unity3d","upm","upm-package"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gilzoide.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"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},"funding":{"github":["gilzoide"],"patreon":null,"open_collective":null,"ko_fi":"gilzoide","tidelift":null,"community_bridge":null,"liberapay":"gilzoide","issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2024-03-29T15:11:38.000Z","updated_at":"2024-11-28T06:55:46.000Z","dependencies_parsed_at":"2024-03-29T16:28:53.560Z","dependency_job_id":"2b4ebdf4-ecce-46c9-b457-d2fe844aad3a","html_url":"https://github.com/gilzoide/unity-native-collections-stream","commit_stats":{"total_commits":16,"total_committers":1,"mean_commits":16.0,"dds":0.0,"last_synced_commit":"cae4cfd9b91502cf54979188b222a31f6d13ddba"},"previous_names":["gilzoide/unity-native-collections-stream"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/gilzoide/unity-native-collections-stream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-native-collections-stream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-native-collections-stream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-native-collections-stream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-native-collections-stream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gilzoide","download_url":"https://codeload.github.com/gilzoide/unity-native-collections-stream/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilzoide%2Funity-native-collections-stream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29618248,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T13:04:20.082Z","status":"ssl_error","status_checked_at":"2026-02-19T13:03:33.775Z","response_time":117,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["collections","stream","streaming","textreader","textwriter","unity","unity2d","unity3d","upm","upm-package"],"created_at":"2024-09-26T23:24:05.788Z","updated_at":"2026-02-19T14:31:34.965Z","avatar_url":"https://github.com/gilzoide.png","language":"C#","funding_links":["https://github.com/sponsors/gilzoide","https://ko-fi.com/gilzoide","https://liberapay.com/gilzoide"],"categories":[],"sub_categories":[],"readme":"# Native Collections Stream\n[![openupm](https://img.shields.io/npm/v/com.gilzoide.native-collections-stream?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.gilzoide.native-collections-stream/)\n\n`Stream`, `TextReader` and `TextWriter` implementations backed by Unity Native Collections.\n\n\n## Feature\n- `Stream` implementations:\n  + [NativeListStream](Runtime/NativeListStream.cs): stream backed by a `NativeList\u003cbyte\u003e`\n  + [UnsafeListStream](Runtime/NativeListStream.cs): read-only stream backed by a `UnsafeList\u003cbyte\u003e`\n  + [FixedList32BytesStream](Runtime/NativeListStream.cs): read-only stream backed by a `FixedList32Bytes\u003cbyte\u003e`\n  + [FixedList64BytesStream](Runtime/NativeListStream.cs): read-only stream backed by a `FixedList64Bytes\u003cbyte\u003e`\n  + [FixedList128BytesStream](Runtime/NativeListStream.cs): read-only stream backed by a `FixedList128Bytes\u003cbyte\u003e`\n  + [FixedList512BytesStream](Runtime/NativeListStream.cs): read-only stream backed by a `FixedList512Bytes\u003cbyte\u003e`\n  + [FixedList4096BytesStream](Runtime/NativeListStream.cs): read-only stream backed by a `FixedList4096Bytes\u003cbyte\u003e`\n  + [NativeTextStream](Runtime/NativeTextStream.cs): stream backed by a `NativeText`\n  + [UnsafeTextStream](Runtime/NativeTextStream.cs): read-only stream backed by a `UnsafeText`\n  + [FixedString32BytesStream](Runtime/NativeTextStream.cs): read-only stream backed by a `FixedString32Bytes`\n  + [FixedString64BytesStream](Runtime/NativeTextStream.cs): read-only stream backed by a `FixedString64Bytes`\n  + [FixedString128BytesStream](Runtime/NativeTextStream.cs): read-only stream backed by a `FixedString128Bytes`\n  + [FixedString512BytesStream](Runtime/NativeTextStream.cs): read-only stream backed by a `FixedString512Bytes`\n  + [FixedString4096BytesStream](Runtime/NativeTextStream.cs): read-only stream backed by a `FixedString4096Bytes`\n- `TextReader` implementations:\n  + [NativeTextReader](Runtime/NativeTextReader.cs): text reader backed by a `NativeText`\n  + [UnsafeTextReader](Runtime/NativeTextReader.cs): text reader backed by a `UnsafeText`\n  + [FixedString32BytesReader](Runtime/NativeTextReader.cs): text reader backed by a `FixedString32Bytes`\n  + [FixedString64BytesReader](Runtime/NativeTextReader.cs): text reader backed by a `FixedString64Bytes`\n  + [FixedString128BytesReader](Runtime/NativeTextReader.cs): text reader backed by a `FixedString128Bytes`\n  + [FixedString512BytesReader](Runtime/NativeTextReader.cs): text reader backed by a `FixedString512Bytes`\n  + [FixedString4096BytesReader](Runtime/NativeTextReader.cs): text reader backed by a `FixedString4096Bytes`\n  + [FixedString4096BytesReader](Runtime/NativeTextReader.cs): text reader backed by a `FixedString4096Bytes`\n- `TextWriter` implementations:\n  + [NativeTextWriter](Runtime/NativeTextWriter.cs): text writer backed by a `NativeText`\n\n\n## How to install\nEither:\n- Use the [openupm registry](https://openupm.com/) and install this package using the [openupm-cli](https://github.com/openupm/openupm-cli):\n  ```\n  openupm add com.gilzoide.native-collections-stream\n  ```\n- Install using the [Unity Package Manager](https://docs.unity3d.com/Manual/upm-ui-giturl.html) with the following URL:\n  ```\n  https://github.com/gilzoide/unity-native-collections-stream.git#1.0.0-preview1\n  ```\n- Clone this repository or download a snapshot of it directly inside your project's `Assets` or `Packages` folder.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilzoide%2Funity-native-collections-stream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgilzoide%2Funity-native-collections-stream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilzoide%2Funity-native-collections-stream/lists"}