{"id":29673701,"url":"https://github.com/believemanasseh/rusticore","last_synced_at":"2025-07-22T22:07:27.143Z","repository":{"id":303947593,"uuid":"1017143341","full_name":"believemanasseh/rusticore","owner":"believemanasseh","description":"A minimal multithreaded custom web server in Rust","archived":false,"fork":false,"pushed_at":"2025-07-20T02:47:46.000Z","size":58,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-20T04:45:10.663Z","etag":null,"topics":["concurrency","http","http-server","multithreading","web-server"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/believemanasseh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2025-07-10T05:09:43.000Z","updated_at":"2025-07-20T02:47:49.000Z","dependencies_parsed_at":"2025-07-10T17:13:53.351Z","dependency_job_id":"bd724ca2-b35d-400f-953c-b2f76063674e","html_url":"https://github.com/believemanasseh/rusticore","commit_stats":null,"previous_names":["believemanasseh/rusticore"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/believemanasseh/rusticore","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/believemanasseh%2Frusticore","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/believemanasseh%2Frusticore/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/believemanasseh%2Frusticore/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/believemanasseh%2Frusticore/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/believemanasseh","download_url":"https://codeload.github.com/believemanasseh/rusticore/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/believemanasseh%2Frusticore/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266580706,"owners_count":23951270,"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","status":"online","status_checked_at":"2025-07-22T02:00:09.085Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"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":["concurrency","http","http-server","multithreading","web-server"],"created_at":"2025-07-22T22:07:25.733Z","updated_at":"2025-07-22T22:07:27.134Z","avatar_url":"https://github.com/believemanasseh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Rusticore\n\nA minimal, customisable and multithreaded web server written in Rust.\n\n## Features\n\n- Simple API for starting and managing the server\n- Configurable logging with [log4rs](https://crates.io/crates/log4rs)\n- Supports both file and console logging\n- Easily extensible for custom logic and routing\n\n## Installation\n\n### From Source\n\nClone the repository and build with Cargo:\n\n```sh\ngit clone https://github.com/believemanasseh/rusticore.git\ncd rusticore\ncargo build --release\n```\n\nThe compiled binary will be in `target/release/rusticore`.\n\n### From crates.io\n\nAdd to your `Cargo.toml`:\n\n```toml\n[dependencies]\nrusticore = \"0.1.0\"\n```\n\nThen run:\n\n```sh\ncargo build --release\n```\n\n## Usage\n\n### As a Binary\n\nAfter building, run the server:\n\n```sh\n./target/release/rusticore\n```\n\n### As a Library\n\nImport and use in your Rust project:\n\n```rust\nuse rusticore::Server;\nuse rusticore::Route;\n\nfn main() {\n    let mut server = Server::new(\"localhost\", 9000, false, None);\n    let route = Route::new(\"GET\", \"/hello\", |req, res| {\n        res.send(\"Hello, world!\");\n    });\n    server.add_route(route);\n    server.start();\n}\n```\n\n## Testing\n\nTo run tests, use:\n\n```sh\n# Unit tests\ncargo test --lib\n\n# Integration tests\ncargo test --test test_*\n```\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbelievemanasseh%2Frusticore","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbelievemanasseh%2Frusticore","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbelievemanasseh%2Frusticore/lists"}