{"id":33941448,"url":"https://github.com/amiquip/amiquip","last_synced_at":"2026-03-11T03:04:04.326Z","repository":{"id":34411909,"uuid":"176401661","full_name":"amiquip/amiquip","owner":"amiquip","description":"Pure Rust RabbitMQ client","archived":false,"fork":false,"pushed_at":"2023-08-29T00:10:36.000Z","size":322,"stargazers_count":177,"open_issues_count":12,"forks_count":23,"subscribers_count":7,"default_branch":"main","last_synced_at":"2026-01-11T11:42:12.994Z","etag":null,"topics":["amqp","amqp0-9-1","rabbitmq","rabbitmq-client","rust"],"latest_commit_sha":null,"homepage":"","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/amiquip.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.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,"governance":null}},"created_at":"2019-03-19T01:51:00.000Z","updated_at":"2025-05-17T23:17:11.000Z","dependencies_parsed_at":"2023-01-15T06:56:25.086Z","dependency_job_id":"c5bc057c-a3d3-43c6-b7ac-28883fb9e8e8","html_url":"https://github.com/amiquip/amiquip","commit_stats":null,"previous_names":["jgallagher/amiquip"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/amiquip/amiquip","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amiquip%2Famiquip","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amiquip%2Famiquip/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amiquip%2Famiquip/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amiquip%2Famiquip/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/amiquip","download_url":"https://codeload.github.com/amiquip/amiquip/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/amiquip%2Famiquip/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30368641,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T21:41:54.280Z","status":"online","status_checked_at":"2026-03-11T02:00:07.027Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["amqp","amqp0-9-1","rabbitmq","rabbitmq-client","rust"],"created_at":"2025-12-12T16:23:11.759Z","updated_at":"2026-03-11T03:04:04.308Z","avatar_url":"https://github.com/amiquip.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# amiquip\n\n[![dependency status](https://deps.rs/repo/github/jgallagher/amiquip/status.svg)](https://deps.rs/repo/github/jgallagher/amiquip)\n[![Latest Version](https://img.shields.io/crates/v/amiquip.svg)](https://crates.io/crates/amiquip)\n[![Docs](https://docs.rs/amiquip/badge.svg)](https://docs.rs/amiquip)\n\namiquip is a RabbitMQ client written in pure Rust.\n\n# Usage\n\nAdd this to your `Cargo.toml`:\n\n```toml\n[dependencies]\namiquip = \"0.4\"\n```\n\nFor usage, see the [documentation](https://docs.rs/amiquip/) and\n[examples](https://github.com/jgallagher/amiquip/tree/master/examples).\n\n## Minimum Support Rust Version\n\nThe minimum supported Rust version for amiquip 0.4.2 is currently Rust 1.46.0,\nbut that may change with a patch release (and could change with a patch release\nto a dependency without our knowledge).\n\n## TLS Support\n\nBy default, amiquip enables TLS support via the\n[native-tls](https://crates.io/crates/native-tls) crate. You can disable\nsupport for TLS by turning off default features:\n\n```toml\n[dependencies]\namiquip = { version = \"0.4\", default-features = false }\n```\n\nIf you disable TLS support, the methods `Connection::open`,\n`Connection::open_tuned`, and `Connection::open_tls_stream` will no longer be\navailable, as all three only allow secure connections. The methods\n`Connection::insecure_open`, `Connection::insecure_open_tuned`, and\n`Connection::insecure_open_stream` will still be available; these methods\nsupport unencrypted connections.\n\n## Integration Tests\n\namiquip contains integration tests that require a RabbitMQ server. To run these,\nset the `AMIQUIP_TEST_URL` environment variable to an `amqp://` or `amqps://` URL\nbefore running `cargo test`. For example, if you have a RabbitMQ instance running\nwith the default guest account on your development machine:\n\n```\nbash$ AMIQUIP_TEST_URL=amqp://guest:guest@localhost cargo test\n```\n\nIf the `AMIQUIP_TEST_URL` environment variable is not set, all integration tests\nwill be skipped (and silently pass). If you run with `--nocapture`, you will see\na warning printed on the first such skipped test:\n\n```\nbash$ cargo test -- nocapture\n...\ntest integration_tests::exchange::test_declare ... AMIQUIP_TEST_URL not defined - skipping integration tests\n...\n```\n\n# License\n\nThis project is licensed under either of\n\n * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or\n   http://www.apache.org/licenses/LICENSE-2.0)\n * MIT license ([LICENSE-MIT](LICENSE-MIT) or\n   http://opensource.org/licenses/MIT)\n\nat your option.\n\n### Contribution\n\nUnless you explicitly state otherwise, any contribution intentionally submitted\nfor inclusion in amiquip by you, as defined in the Apache-2.0 license, shall be\ndual licensed as above, without any additional terms or conditions.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famiquip%2Famiquip","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Famiquip%2Famiquip","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Famiquip%2Famiquip/lists"}