{"id":21442469,"url":"https://github.com/cryptex-github/deadpool-amqprs","last_synced_at":"2025-07-14T17:33:05.193Z","repository":{"id":65820801,"uuid":"600658147","full_name":"Cryptex-github/deadpool-amqprs","owner":"Cryptex-github","description":"Dead simple async pool for amqprs","archived":false,"fork":false,"pushed_at":"2023-11-10T06:38:07.000Z","size":7,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-09-14T22:30:43.606Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://crates.io/crates/deadpool-amqprs","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/Cryptex-github.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}},"created_at":"2023-02-12T06:58:32.000Z","updated_at":"2023-11-08T14:47:07.000Z","dependencies_parsed_at":"2024-10-22T02:59:43.364Z","dependency_job_id":null,"html_url":"https://github.com/Cryptex-github/deadpool-amqprs","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"9a1e3472049ae365a2b3b8b69d142d51810484bb"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cryptex-github%2Fdeadpool-amqprs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cryptex-github%2Fdeadpool-amqprs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cryptex-github%2Fdeadpool-amqprs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cryptex-github%2Fdeadpool-amqprs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cryptex-github","download_url":"https://codeload.github.com/Cryptex-github/deadpool-amqprs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225990453,"owners_count":17556153,"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":"2024-11-23T01:54:25.178Z","updated_at":"2024-11-23T01:54:25.720Z","avatar_url":"https://github.com/Cryptex-github.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# deadpool-amqprs\n\n## Deadpool for amqprs\n\nDeadpool is a dead simple async pool for connections and objects of any type.\n\nThis crate implements a [`deadpool`](https://crates.io/crates/deadpool) manager for [`amqprs`](https://crates.io/crates/amqprs).\n\n## Versions\n\n* v0.2.x - amqprs 0.9.x\n* v0.3.x - amqprs 0.10.x\n\n## Example\n\n```rs\nuse deadpool_amqprs::Config;\nuse amqprs::{callbacks::{DefaultChannelCallback, DefaultConnectionCallback}, connection::OpenConnectionArguments};\n\n#[tokio::main]\nasync fn main() {\n    let config = Config::new_with_con_args(OpenConnectionArguments::default());\n    let pool = config.create_pool();\n    \n    let con = pool.get().await.unwrap();\n    con.register_callback(DefaultConnectionCallback).await.unwrap();\n\n    let channel = con.open_channel().await.unwrap();\n    channel.register_callback(DefaultChannelCallback).await.unwrap();\n\n    // Do stuff with `channel`.\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptex-github%2Fdeadpool-amqprs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcryptex-github%2Fdeadpool-amqprs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptex-github%2Fdeadpool-amqprs/lists"}