{"id":13828808,"url":"https://github.com/finchers-rs/finchers","last_synced_at":"2025-07-09T06:33:05.521Z","repository":{"id":57629483,"uuid":"100597922","full_name":"finchers-rs/finchers","owner":"finchers-rs","description":"A combinator library for building asynchronous HTTP services","archived":true,"fork":false,"pushed_at":"2019-03-29T13:40:48.000Z","size":3130,"stargazers_count":57,"open_issues_count":15,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-11-11T18:52:31.488Z","etag":null,"topics":["combinators","finch","hyper"],"latest_commit_sha":null,"homepage":"https://finchers-rs.github.io/finchers","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/finchers-rs.png","metadata":{"files":{"readme":"README.md","changelog":"changelog/0.12.x.md","contributing":null,"funding":null,"license":"LICENSE-APACHE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-08-17T11:49:40.000Z","updated_at":"2024-02-02T16:07:23.000Z","dependencies_parsed_at":"2022-09-26T20:11:03.500Z","dependency_job_id":null,"html_url":"https://github.com/finchers-rs/finchers","commit_stats":null,"previous_names":[],"tags_count":30,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/finchers-rs%2Ffinchers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/finchers-rs%2Ffinchers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/finchers-rs%2Ffinchers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/finchers-rs%2Ffinchers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/finchers-rs","download_url":"https://codeload.github.com/finchers-rs/finchers/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225492420,"owners_count":17482869,"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":["combinators","finch","hyper"],"created_at":"2024-08-04T09:03:10.932Z","updated_at":"2024-11-20T08:31:07.975Z","avatar_url":"https://github.com/finchers-rs.png","language":"Rust","readme":"# `finchers`\n\n[![Crates.io][crates-io-badge]][crates-io]\n[![Crates.io (Downloads)][downloads-badge]][crates-io]\n[![Docs.rs][docs-rs-badge]][docs-rs]\n[![Master doc][master-doc-badge]][master-doc]\n[![Rustc Version][rustc-version-badge]][rustc-version]\n[![dependency status][dependencies-badge]][dependencies]\n[![Gitter][gitter-badge]][gitter]\n\n`finchers` is a combinator library for building asynchronous HTTP services.\n\nThe concept and design was highly inspired by [`finch`].\n\n# Features\n\n* Asynchronous handling powerd by futures and Tokio\n* Building an HTTP service by *combining* the primitive components\n* Type-safe routing without (unstable) procedural macros\n\n# Usage\n\nAdd this item to `Cargo.toml` in your project:\n\n```toml\n[dependencies]\nfinchers = \"0.14.0-dev\"\n```\n\n# Example\n\n```rust,no_run\nuse finchers::{\n    prelude::*,\n    endpoint::syntax::path,\n};\n\nfn main() -\u003e izanami::Result\u003c()\u003e {\n    let endpoint = path!(@get \"/greeting/\u003cString\u003e\")\n        .map(|name: String| {\n            format!(\"Hello, {}!\\n\", name)\n        });\n\n    izanami::Server::build()\n        .start(endpoint.into_service())\n}\n```\n\n# Resources\n\n* [API documentation (docs.rs)][docs-rs]\n* [API documentation (master)][master-doc]\n* [Examples][examples]\n* [Gitter chat][gitter]\n\n# Contributed Features\n\n* [`finchers-juniper`] - GraphQL integration support, based on [`juniper`]\n* [`finchers-tungstenite`] - WebSocket support, based on [`tungstenite`]\n* [`finchers-session`]: Session support\n* [`finchers-template`]: Template engine support\n\n# Status\n\n| Travis CI | Codecov |\n|:---------:|:-------:|\n| [![Travis CI][travis-badge]][travis] | [![Codecov][codecov-badge]][codecov] |\n\n# License\nThis project is licensed under either of\n\n* MIT license, ([LICENSE-MIT](./LICENSE-MIT) or http://opensource.org/licenses/MIT)\n* Apache License, Version 2.0 ([LICENSE-APACHE](./LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)\n\nat your option.\n\n\u003c!-- links --\u003e\n\n[crates-io]: https://crates.io/crates/finchers\n[docs-rs]: https://docs.rs/finchers\n[master-doc]: https://finchers-rs.github.io/finchers\n[examples]: https://github.com/finchers-rs/examples\n[user-guide]: https://finchers-rs.github.io/finchers/guide/index.html\n[gitter]: https://gitter.im/finchers-rs/finchers\n[travis]: https://travis-ci.org/finchers-rs/finchers\n[circleci]: https://circleci.com/gh/finchers-rs/finchers/tree/master\n[codecov]: https://codecov.io/gh/finchers-rs/finchers\n[dependencies]: https://deps.rs/crate/finchers/0.13.5\n[rustc-version]: https://rust-lang.org\n\n[crates-io-badge]: https://img.shields.io/crates/v/finchers.svg\n[downloads-badge]: https://img.shields.io/crates/d/finchers.svg\n[docs-rs-badge]: https://docs.rs/finchers/badge.svg\n[master-doc-badge]: https://img.shields.io/badge/docs-master-blue.svg\n[gitter-badge]: https://badges.gitter.im/finchers-rs/finchers.svg\n[travis-badge]: https://travis-ci.org/finchers-rs/finchers.svg?branch=master\n[circleci-badge]: https://circleci.com/gh/finchers-rs/finchers/tree/master.svg?style=svg\n[codecov-badge]: https://codecov.io/gh/finchers-rs/finchers/branch/master/graph/badge.svg\n[dependencies-badge]: https://deps.rs/crate/finchers/0.13.5/status.svg\n[rustc-version-badge]: https://img.shields.io/badge/rustc-1.29+-yellow.svg\n\n[`finchers-juniper`]: https://github.com/finchers-rs/finchers-juniper\n[`finchers-tungstenite`]: https://github.com/finchers-rs/finchers-tungstenite\n[`finchers-session`]: https://github.com/finchers-rs/finchers-session\n[`finchers-template`]: https://github.com/finchers-rs/finchers-template\n\n[`finch`]: https://github.com/finagle/finch\n[`juniper`]: https://github.com/graphql-rust/juniper.git\n[`tungstenite`]: https://github.com/snapview/tungstenite-rs\n","funding_links":[],"categories":["Rust"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffinchers-rs%2Ffinchers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffinchers-rs%2Ffinchers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffinchers-rs%2Ffinchers/lists"}