{"id":19218379,"url":"https://github.com/libninjacom/bump-rs","last_synced_at":"2026-05-14T12:33:14.240Z","repository":{"id":60460117,"uuid":"543331971","full_name":"libninjacom/bump-rs","owner":"libninjacom","description":"Bump.sh client, generated from the OpenAPI spec","archived":false,"fork":false,"pushed_at":"2022-10-06T21:56:19.000Z","size":21,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-08T20:35:57.365Z","etag":null,"topics":["bump","openapi","rust"],"latest_commit_sha":null,"homepage":"https://docs.rs/bump-api/","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/libninjacom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-09-29T21:50:35.000Z","updated_at":"2022-09-29T22:17:17.000Z","dependencies_parsed_at":"2022-09-29T22:50:13.276Z","dependency_job_id":null,"html_url":"https://github.com/libninjacom/bump-rs","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/libninjacom/bump-rs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fbump-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fbump-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fbump-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fbump-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/libninjacom","download_url":"https://codeload.github.com/libninjacom/bump-rs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/libninjacom%2Fbump-rs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33025030,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-14T02:00:06.663Z","response_time":57,"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":["bump","openapi","rust"],"created_at":"2024-11-09T14:26:27.841Z","updated_at":"2026-05-14T12:33:14.214Z","avatar_url":"https://github.com/libninjacom.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv id=\"top\"\u003e\u003c/div\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/libninjacom/bump-rs/graphs/contributors\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/contributors/libninjacom/bump-rs.svg?style=flat-square\" alt=\"GitHub Contributors\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/libninjacom/bump-rs/stargazers\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/stars/libninjacom/bump-rs.svg?style=flat-square\" alt=\"Stars\" /\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://github.com/libninjacom/bump-rs/actions\"\u003e\n        \u003cimg src=\"https://img.shields.io/github/workflow/status/libninjacom/bump-rs/test?style=flat-square\" alt=\"Build Status\" /\u003e\n    \u003c/a\u003e\n    \n\u003ca href=\"https://crates.io/crates/bump-api\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/d/bump-api?style=flat-square\" alt=\"Downloads\" /\u003e\n\u003c/a\u003e\n\u003ca href=\"https://crates.io/crates/bump-api\"\u003e\n    \u003cimg src=\"https://img.shields.io/crates/v/bump-api?style=flat-square\" alt=\"Crates.io\" /\u003e\n\u003c/a\u003e\n\n\u003c/p\u003e\n\n[Bump](https://bump.sh) client, generated from the OpenAPI spec.\n\n# Usage\n\n```rust\nuse bump_api::BumpClient;\nuse bump_api::model::*;\n#[tokio::main]\nasync fn main() {\n    let client = BumpClient::from_env();\n    let response = client\n        .post_diffs()\n        .url(\"your url\")\n        .previous_url(\"your previous url\")\n        .previous_definition(\"your previous definition\")\n        .previous_references(\n            vec![\n                Reference { location : Some(\"your location\".to_owned()), content :\n                Some(\"your content\".to_owned()) }\n            ],\n        )\n        .definition(\"your definition\")\n        .references(\n            vec![\n                Reference { location : Some(\"your location\".to_owned()), content :\n                Some(\"your content\".to_owned()) }\n            ],\n        )\n        .expires_at(\"your expires at\")\n        .send()\n        .await\n        .unwrap();\n    println!(\"{:#?}\", response);\n}\n\n```\n\nThis example loads configuration from environment variables, specifically:\n\n* `BUMP_BASE_URL`\n\n* `BUMP_AUTHORIZATION_TOKEN`\n\n* `BUMP_BASIC_TOKEN`\n\n\n\n# Installation\n\nAdd this to your Cargo.toml:\n\n```toml\n[dependencies]\nbump-api = \"0.1.0\"\n```\n\n\n# Documentation\n\n* [Client Library Documentation](https://docs.rs/bump-api)\n\n\nYou can see working examples of every API call in the `examples/` directory.\n\n# Contributing\n\nContributions are welcome!\n\n*Library created with [Libninja](https://www.libninja.com).*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibninjacom%2Fbump-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibninjacom%2Fbump-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibninjacom%2Fbump-rs/lists"}