{"id":20199781,"url":"https://github.com/milenkovicm/testcontainers-redpanda-rs","last_synced_at":"2025-10-28T16:10:50.912Z","repository":{"id":87656815,"uuid":"504594968","full_name":"milenkovicm/testcontainers-redpanda-rs","owner":"milenkovicm","description":"Rust Redpanda Testcontainer ","archived":false,"fork":false,"pushed_at":"2025-02-26T22:45:39.000Z","size":66,"stargazers_count":6,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T09:52:54.117Z","etag":null,"topics":["docker","kafka","redpanda","rust","testcontainer","testcontainers","testcontainers-rust"],"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/milenkovicm.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":"2022-06-17T16:01:08.000Z","updated_at":"2025-02-26T22:45:23.000Z","dependencies_parsed_at":"2023-11-19T10:32:12.202Z","dependency_job_id":"2fd7280c-1c5e-4a1b-b9cf-0291b812ecdd","html_url":"https://github.com/milenkovicm/testcontainers-redpanda-rs","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milenkovicm%2Ftestcontainers-redpanda-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milenkovicm%2Ftestcontainers-redpanda-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milenkovicm%2Ftestcontainers-redpanda-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/milenkovicm%2Ftestcontainers-redpanda-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/milenkovicm","download_url":"https://codeload.github.com/milenkovicm/testcontainers-redpanda-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248148213,"owners_count":21055547,"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":["docker","kafka","redpanda","rust","testcontainer","testcontainers","testcontainers-rust"],"created_at":"2024-11-14T04:38:50.266Z","updated_at":"2025-10-28T16:10:50.903Z","avatar_url":"https://github.com/milenkovicm.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Unofficial Rust Test Container For Redpanda\n\n[![github action](https://github.com/milenkovicm/testcontainers-redpanda-rs/actions/workflows/basic.yml/badge.svg)](https://github.com/milenkovicm/testcontainers-redpanda-rs/actions/workflows/basic.yml)\n[![Crates.io](https://img.shields.io/crates/v/testcontainers-redpanda-rs)](https://crates.io/crates/testcontainers-redpanda-rs)\n[![Crates.io](https://img.shields.io/crates/d/testcontainers-redpanda-rs)](https://crates.io/crates/testcontainers-redpanda-rs)\n\nUnofficial testcontainer for [Redpanda](https://redpanda.com). Redpanda is a simple, powerful, and cost-efficient streaming data platform that is compatible with Kafka APIs but much less complex, faster and more affordable.\n\nAdd dependency:\n\n```toml\ntestcontainers-redpanda-rs = { version = \"0.12\" }\n```\n\nCreate and run redpanda container:\n\n```rust, no_run\nuse testcontainers_redpanda_rs::*;\n\n#[tokio::main]\nasync fn main() {\n    let container = Redpanda::default();\n\n    let server_node = container.start().await.unwrap();\n    let bootstrap_servers = format!(\"localhost:{}\", server_node.get_host_port_ipv4(REDPANDA_PORT).await.unwrap());\n    // if topic has only one partition this part is optional\n    // it will be automatically created when client connects\n    server_node.exec(Redpanda::cmd_create_topic(\"test_topic\", 3)).await.unwrap();\n\n    println!(\"Redpanda server: {}\", bootstrap_servers);\n}\n```\n\nExplicit dependency on `testcontainers` is not needed.\n\nNote about version compatibility:\n\n- `0.12.x` supports `testcontainers` `0.25`\n- `0.11.x` supports `testcontainers` `0.24`\n- `0.10.x` supports `testcontainers` `0.23`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmilenkovicm%2Ftestcontainers-redpanda-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmilenkovicm%2Ftestcontainers-redpanda-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmilenkovicm%2Ftestcontainers-redpanda-rs/lists"}