{"id":24797475,"url":"https://github.com/dylanlott/orderflow","last_synced_at":"2025-03-24T21:19:53.242Z","repository":{"id":207244454,"uuid":"718775094","full_name":"dylanlott/orderflow","owner":"dylanlott","description":"an order matching and filling engine in rust","archived":false,"fork":false,"pushed_at":"2024-12-10T19:35:06.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-30T01:29:42.997Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dylanlott.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2023-11-14T19:20:30.000Z","updated_at":"2024-12-10T19:32:49.000Z","dependencies_parsed_at":"2025-01-30T01:38:34.243Z","dependency_job_id":null,"html_url":"https://github.com/dylanlott/orderflow","commit_stats":null,"previous_names":["dylanlott/orderflow"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Forderflow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Forderflow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Forderflow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dylanlott%2Forderflow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dylanlott","download_url":"https://codeload.github.com/dylanlott/orderflow/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245352093,"owners_count":20601093,"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":[],"created_at":"2025-01-30T01:28:26.728Z","updated_at":"2025-03-24T21:19:53.216Z","avatar_url":"https://github.com/dylanlott.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ch3 align=\"center\"\u003eorderflow\u003c/h3\u003e\n\n  \u003cp align=\"center\"\u003e\n    an experimental order matching and filling engine in Rust\n    \u003cbr/\u003e\n    \u003cbr/\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n![Contributors](https://img.shields.io/github/contributors/dylanlott/orderflow?color=dark-green) ![Issues](https://img.shields.io/github/issues/dylanlott/orderflow)\n\n## Table Of Contents\n\n- [Table Of Contents](#table-of-contents)\n- [About The Project](#about-the-project)\n- [Built With](#built-with)\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n  - [Installation](#installation)\n- [Usage](#usage)\n- [Testing](#testing)\n- [Roadmap](#roadmap)\n- [Contributing](#contributing)\n  - [Creating A Pull Request](#creating-a-pull-request)\n- [Authors](#authors)\n\n## About The Project\n\nThis is a simple order matching and filling engine in Rust as an experiment in how Rust handles ownership and lifetimes in a complex and asynchronous process.\n\n## Built With\n\nBuilt with [Rust](https://www.rust-lang.org/) 🦀\n\n## Getting Started\n\n### Prerequisites\n\n- Rust\n- Cargo\n\n### Installation\n\n1. Clone the repo\n\n2. Run the tests\n\n```sh\ncargo test\n```\n\n3. Run the application\n\n```sh\ncargo run\n```\n\n4. Build the binary\n\n```sh\ncargo build\n```\n\n## Usage\n\nDon't use this in production, please. For experimentation only.\n\n## Testing\n\nTo test the API, `cargo run` and then, in another terminal, fire off these curl commands to test post and get requests of the server.\n\n- Create an order `POST /orders`\n\n```sh\ncurl -X POST http://127.0.0.1:8080/orders -H \"Content-Type: application/json\" -d '{\"is_buy\": true, \"price\": 100, \"quantity\": 10, \"priority\": 1, \"owner_id\": 123}'\n```\n\n- GET a list of the open orders `GET /orders`\n\n```sh\n# TODO\n```\n\n## Roadmap\n\nSee the [open issues](https://github.com/dylanlott/orderflow/issues) for a list of proposed features (and known issues).\n\n## Contributing\n\nContributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are **greatly appreciated**.\n\n- If you have suggestions for adding or removing projects, feel free to [open an issue](https://github.com/dylanlott/orderflow/issues/new) to discuss it, or directly create a pull request after you edit the *README.md* file with necessary changes.\n- Please make sure you check your spelling and grammar.\n- Create individual PR for each suggestion.\n- Please also read through the [Code Of Conduct](https://github.com/dylanlott/orderflow/blob/main/CODE_OF_CONDUCT.md) before posting your first idea as well.\n\n### Creating A Pull Request\n\n1. Fork the Project\n2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the Branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## Authors\n\n- **d7t** - **- [d7t](https://github.com/dylanlott/) -**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylanlott%2Forderflow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdylanlott%2Forderflow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdylanlott%2Forderflow/lists"}