{"id":15788155,"url":"https://github.com/joellefkowitz/trees","last_synced_at":"2026-04-24T12:33:32.225Z","repository":{"id":237749363,"uuid":"795169012","full_name":"JoelLefkowitz/trees","owner":"JoelLefkowitz","description":"Extensible tree data structure.","archived":false,"fork":false,"pushed_at":"2025-02-23T18:38:58.000Z","size":91,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-06T03:41:01.964Z","etag":null,"topics":["degrees","graph","node","tree"],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JoelLefkowitz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2024-05-02T18:03:29.000Z","updated_at":"2025-02-23T18:39:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"eb42d388-aaae-40ab-8d1a-917a8f3987ed","html_url":"https://github.com/JoelLefkowitz/trees","commit_stats":null,"previous_names":["joellefkowitz/trees"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/JoelLefkowitz/trees","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Ftrees","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Ftrees/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Ftrees/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Ftrees/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JoelLefkowitz","download_url":"https://codeload.github.com/JoelLefkowitz/trees/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JoelLefkowitz%2Ftrees/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32224103,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["degrees","graph","node","tree"],"created_at":"2024-10-04T21:41:14.560Z","updated_at":"2026-04-24T12:33:32.187Z","avatar_url":"https://github.com/JoelLefkowitz.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Trees\n\nExtensible tree data structure.\n\n![Review](https://img.shields.io/github/actions/workflow/status/JoelLefkowitz/trees/review.yaml)\n![Quality](https://img.shields.io/codacy/grade/_)\n\n## Installing\n\n```bash\nconan search trees\n```\n\nYou can also download the [sources](https://download-directory.github.io?url=https://github.com/JoelLefkowitz/trees/tree/master/src).\n\n## Documentation\n\nDocumentation and more detailed examples are hosted on [Github Pages](https://joellefkowitz.github.io/trees).\n\n## Tooling\n\n### Dependencies\n\nTo install dependencies:\n\n```bash\nyarn install\npip install .[all]\nconan install .\n```\n\n### Tests\n\nTo run tests:\n\n```bash\nscons test\n```\n\n### Documentation\n\nTo generate the documentation locally:\n\n```bash\nscons docs\n```\n\n### Linters\n\nTo run linters:\n\n```bash\nscons lint\n```\n\n### Formatters\n\nTo run formatters:\n\n```bash\nscons format\n```\n\n### Publishing\n\nThe [ConanCenter](https://conan.io/center) doesn't yet allow users to publish packages independently. Package recipes are submitted to the [conan-center-index](https://github.com/conan-io/conan-center-index). A copy of this recipe is kept in this repository in the `publish` folder. This allows us to test that the recipe is compatible with new versions and makes it easier to submit updates to the conan-center-index.\n\nTo test the recipe can build the latest published tag:\n\n```bash\nconan create publish/all/conanfile.py --version $(yq -r \".versions | keys | .[0]\" publish/config.yml)\n```\n\nThis will fetch the sources and create a locally cached version of the package. This version can also be published to a local remote for testing:\n\n```bash\nconan upload \u003cpackage\u003e/\u003cversion\u003e -r \u003cremote\u003e\n```\n\n### Toolchains\n\nScripts are defined in the `scripts` folder and can be invoked with `toolchains`:\n\nTo generate header guards:\n\n```bash\nnpx toolchains guards\n```\n\n## Contributing\n\nPlease read this repository's [Code of Conduct](CODE_OF_CONDUCT.md) which outlines our collaboration standards and the [Changelog](CHANGELOG.md) for details on breaking changes that have been made.\n\nThis repository adheres to semantic versioning standards. For more information on semantic versioning visit [SemVer](https://semver.org).\n\nBump2version is used to version and tag changes. For example:\n\n```bash\nbump2version patch\n```\n\n### Contributors\n\n- [Joel Lefkowitz](https://github.com/joellefkowitz) - Initial work\n\n## Remarks\n\nLots of love to the open source community!\n\n\u003cdiv align='center'\u003e\n    \u003cimg width=200 height=200 src='https://media.giphy.com/media/osAcIGTSyeovPq6Xph/giphy.gif' alt='Be kind to your mind' /\u003e\n    \u003cimg width=200 height=200 src='https://media.giphy.com/media/KEAAbQ5clGWJwuJuZB/giphy.gif' alt='Love each other' /\u003e\n    \u003cimg width=200 height=200 src='https://media.giphy.com/media/WRWykrFkxJA6JJuTvc/giphy.gif' alt=\"It's ok to have a bad day\" /\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoellefkowitz%2Ftrees","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoellefkowitz%2Ftrees","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoellefkowitz%2Ftrees/lists"}